MediaWiki REL1_31
CategoryViewer.php
Go to the documentation of this file.
1<?php
23
26 public $limit;
27
29 public $from;
30
32 public $until;
33
35 public $articles;
36
39
41 public $children;
42
45
48
51
54
56 public $nextPage;
57
59 protected $prevPage;
60
62 public $flip;
63
65 public $title;
66
68 public $collation;
69
71 public $gallery;
72
74 private $cat;
75
77 private $query;
78
89 $until = [], $query = []
90 ) {
91 $this->title = $title;
92 $this->setContext( $context );
93 $this->getOutput()->addModuleStyles( [
94 'mediawiki.action.view.categoryPage.styles'
95 ] );
96 $this->from = $from;
97 $this->until = $until;
98 $this->limit = $context->getConfig()->get( 'CategoryPagingLimit' );
99 $this->cat = Category::newFromTitle( $title );
100 $this->query = $query;
101 $this->collation = Collation::singleton();
102 unset( $this->query['title'] );
103 }
104
110 public function getHTML() {
111 $this->showGallery = $this->getConfig()->get( 'CategoryMagicGallery' )
112 && !$this->getOutput()->mNoGallery;
113
114 $this->clearCategoryState();
115 $this->doCategoryQuery();
116 $this->finaliseCategoryState();
117
118 $r = $this->getSubcategorySection() .
119 $this->getPagesSection() .
120 $this->getImageSection();
121
122 if ( $r == '' ) {
123 // If there is no category content to display, only
124 // show the top part of the navigation links.
125 // @todo FIXME: Cannot be completely suppressed because it
126 // is unknown if 'until' or 'from' makes this
127 // give 0 results.
128 $r = $r . $this->getCategoryTop();
129 } else {
130 $r = $this->getCategoryTop() .
131 $r .
132 $this->getCategoryBottom();
133 }
134
135 // Give a proper message if category is empty
136 if ( $r == '' ) {
137 $r = $this->msg( 'category-empty' )->parseAsBlock();
138 }
139
140 $lang = $this->getLanguage();
141 $attribs = [
142 'class' => 'mw-category-generated',
143 'lang' => $lang->getHtmlCode(),
144 'dir' => $lang->getDir()
145 ];
146 # put a div around the headings which are in the user language
147 $r = Html::openElement( 'div', $attribs ) . $r . '</div>';
148
149 return $r;
150 }
151
153 $this->articles = [];
154 $this->articles_start_char = [];
155 $this->children = [];
156 $this->children_start_char = [];
157 if ( $this->showGallery ) {
158 // Note that null for mode is taken to mean use default.
159 $mode = $this->getRequest()->getVal( 'gallerymode', null );
160 try {
161 $this->gallery = ImageGalleryBase::factory( $mode, $this->getContext() );
162 } catch ( Exception $e ) {
163 // User specified something invalid, fallback to default.
164 $this->gallery = ImageGalleryBase::factory( false, $this->getContext() );
165 }
166
167 $this->gallery->setHideBadImages();
168 } else {
169 $this->imgsNoGallery = [];
170 $this->imgsNoGallery_start_char = [];
171 }
172 }
173
180 function addSubcategoryObject( Category $cat, $sortkey, $pageLength ) {
181 // Subcategory; strip the 'Category' namespace from the link text.
182 $title = $cat->getTitle();
183
184 $this->children[] = $this->generateLink(
185 'subcat',
186 $title,
188 htmlspecialchars( $title->getText() )
189 );
190
191 $this->children_start_char[] =
192 $this->getSubcategorySortChar( $cat->getTitle(), $sortkey );
193 }
194
195 function generateLink( $type, Title $title, $isRedirect, $html = null ) {
196 $link = null;
197 Hooks::run( 'CategoryViewer::generateLink', [ $type, $title, $html, &$link ] );
198 if ( $link === null ) {
199 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
200 if ( $html !== null ) {
201 $html = new HtmlArmor( $html );
202 }
203 $link = $linkRenderer->makeLink( $title, $html );
204 }
205 if ( $isRedirect ) {
206 $link = '<span class="redirect-in-category">' . $link . '</span>';
207 }
208
209 return $link;
210 }
211
223 function getSubcategorySortChar( $title, $sortkey ) {
225
226 if ( $title->getPrefixedText() == $sortkey ) {
227 $word = $title->getDBkey();
228 } else {
229 $word = $sortkey;
230 }
231
232 $firstChar = $this->collation->getFirstLetter( $word );
233
234 return $wgContLang->convert( $firstChar );
235 }
236
244 function addImage( Title $title, $sortkey, $pageLength, $isRedirect = false ) {
246 if ( $this->showGallery ) {
247 $flip = $this->flip['file'];
248 if ( $flip ) {
249 $this->gallery->insert( $title );
250 } else {
251 $this->gallery->add( $title );
252 }
253 } else {
254 $this->imgsNoGallery[] = $this->generateLink( 'image', $title, $isRedirect );
255
256 $this->imgsNoGallery_start_char[] = $wgContLang->convert(
257 $this->collation->getFirstLetter( $sortkey ) );
258 }
259 }
260
268 function addPage( $title, $sortkey, $pageLength, $isRedirect = false ) {
270
271 $this->articles[] = $this->generateLink( 'page', $title, $isRedirect );
272
273 $this->articles_start_char[] = $wgContLang->convert(
274 $this->collation->getFirstLetter( $sortkey ) );
275 }
276
278 if ( $this->flip['subcat'] ) {
279 $this->children = array_reverse( $this->children );
280 $this->children_start_char = array_reverse( $this->children_start_char );
281 }
282 if ( $this->flip['page'] ) {
283 $this->articles = array_reverse( $this->articles );
284 $this->articles_start_char = array_reverse( $this->articles_start_char );
285 }
286 if ( !$this->showGallery && $this->flip['file'] ) {
287 $this->imgsNoGallery = array_reverse( $this->imgsNoGallery );
288 $this->imgsNoGallery_start_char = array_reverse( $this->imgsNoGallery_start_char );
289 }
290 }
291
292 function doCategoryQuery() {
293 $dbr = wfGetDB( DB_REPLICA, 'category' );
294
295 $this->nextPage = [
296 'page' => null,
297 'subcat' => null,
298 'file' => null,
299 ];
300 $this->prevPage = [
301 'page' => null,
302 'subcat' => null,
303 'file' => null,
304 ];
305
306 $this->flip = [ 'page' => false, 'subcat' => false, 'file' => false ];
307
308 foreach ( [ 'page', 'subcat', 'file' ] as $type ) {
309 # Get the sortkeys for start/end, if applicable. Note that if
310 # the collation in the database differs from the one
311 # set in $wgCategoryCollation, pagination might go totally haywire.
312 $extraConds = [ 'cl_type' => $type ];
313 if ( isset( $this->from[$type] ) && $this->from[$type] !== null ) {
314 $extraConds[] = 'cl_sortkey >= '
315 . $dbr->addQuotes( $this->collation->getSortKey( $this->from[$type] ) );
316 } elseif ( isset( $this->until[$type] ) && $this->until[$type] !== null ) {
317 $extraConds[] = 'cl_sortkey < '
318 . $dbr->addQuotes( $this->collation->getSortKey( $this->until[$type] ) );
319 $this->flip[$type] = true;
320 }
321
322 $res = $dbr->select(
323 [ 'page', 'categorylinks', 'category' ],
324 array_merge(
325 LinkCache::getSelectFields(),
326 [
327 'page_namespace',
328 'page_title',
329 'cl_sortkey',
330 'cat_id',
331 'cat_title',
332 'cat_subcats',
333 'cat_pages',
334 'cat_files',
335 'cl_sortkey_prefix',
336 'cl_collation'
337 ]
338 ),
339 array_merge( [ 'cl_to' => $this->title->getDBkey() ], $extraConds ),
340 __METHOD__,
341 [
342 'USE INDEX' => [ 'categorylinks' => 'cl_sortkey' ],
343 'LIMIT' => $this->limit + 1,
344 'ORDER BY' => $this->flip[$type] ? 'cl_sortkey DESC' : 'cl_sortkey',
345 ],
346 [
347 'categorylinks' => [ 'INNER JOIN', 'cl_from = page_id' ],
348 'category' => [ 'LEFT JOIN', [
349 'cat_title = page_title',
350 'page_namespace' => NS_CATEGORY
351 ] ]
352 ]
353 );
354
355 Hooks::run( 'CategoryViewer::doCategoryQuery', [ $type, $res ] );
356 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
357
358 $count = 0;
359 foreach ( $res as $row ) {
360 $title = Title::newFromRow( $row );
361 $linkCache->addGoodLinkObjFromRow( $title, $row );
362
363 if ( $row->cl_collation === '' ) {
364 // Hack to make sure that while updating from 1.16 schema
365 // and db is inconsistent, that the sky doesn't fall.
366 // See r83544. Could perhaps be removed in a couple decades...
367 $humanSortkey = $row->cl_sortkey;
368 } else {
369 $humanSortkey = $title->getCategorySortkey( $row->cl_sortkey_prefix );
370 }
371
372 if ( ++$count > $this->limit ) {
373 # We've reached the one extra which shows that there
374 # are additional pages to be had. Stop here...
375 $this->nextPage[$type] = $humanSortkey;
376 break;
377 }
378 if ( $count == $this->limit ) {
379 $this->prevPage[$type] = $humanSortkey;
380 }
381
382 if ( $title->getNamespace() == NS_CATEGORY ) {
383 $cat = Category::newFromRow( $row, $title );
384 $this->addSubcategoryObject( $cat, $humanSortkey, $row->page_len );
385 } elseif ( $title->getNamespace() == NS_FILE ) {
386 $this->addImage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
387 } else {
388 $this->addPage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
389 }
390 }
391 }
392 }
393
397 function getCategoryTop() {
398 $r = $this->getCategoryBottom();
399 return $r === ''
400 ? $r
401 : "<br style=\"clear:both;\"/>\n" . $r;
402 }
403
408 # Don't show subcategories section if there are none.
409 $r = '';
410 $rescnt = count( $this->children );
411 $dbcnt = $this->cat->getSubcatCount();
412 // This function should be called even if the result isn't used, it has side-effects
413 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'subcat' );
414
415 if ( $rescnt > 0 ) {
416 # Showing subcategories
417 $r .= "<div id=\"mw-subcategories\">\n";
418 $r .= '<h2>' . $this->msg( 'subcategories' )->parse() . "</h2>\n";
419 $r .= $countmsg;
420 $r .= $this->getSectionPagingLinks( 'subcat' );
421 $r .= $this->formatList( $this->children, $this->children_start_char );
422 $r .= $this->getSectionPagingLinks( 'subcat' );
423 $r .= "\n</div>";
424 }
425 return $r;
426 }
427
431 function getPagesSection() {
432 $ti = wfEscapeWikiText( $this->title->getText() );
433 # Don't show articles section if there are none.
434 $r = '';
435
436 # @todo FIXME: Here and in the other two sections: we don't need to bother
437 # with this rigmarole if the entire category contents fit on one page
438 # and have already been retrieved. We can just use $rescnt in that
439 # case and save a query and some logic.
440 $dbcnt = $this->cat->getPageCount() - $this->cat->getSubcatCount()
441 - $this->cat->getFileCount();
442 $rescnt = count( $this->articles );
443 // This function should be called even if the result isn't used, it has side-effects
444 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'article' );
445
446 if ( $rescnt > 0 ) {
447 $r = "<div id=\"mw-pages\">\n";
448 $r .= '<h2>' . $this->msg( 'category_header', $ti )->parse() . "</h2>\n";
449 $r .= $countmsg;
450 $r .= $this->getSectionPagingLinks( 'page' );
451 $r .= $this->formatList( $this->articles, $this->articles_start_char );
452 $r .= $this->getSectionPagingLinks( 'page' );
453 $r .= "\n</div>";
454 }
455 return $r;
456 }
457
461 function getImageSection() {
462 $r = '';
463 $rescnt = $this->showGallery ? $this->gallery->count() : count( $this->imgsNoGallery );
464 $dbcnt = $this->cat->getFileCount();
465 // This function should be called even if the result isn't used, it has side-effects
466 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'file' );
467
468 if ( $rescnt > 0 ) {
469 $r .= "<div id=\"mw-category-media\">\n";
470 $r .= '<h2>' .
471 $this->msg(
472 'category-media-header',
473 wfEscapeWikiText( $this->title->getText() )
474 )->text() .
475 "</h2>\n";
476 $r .= $countmsg;
477 $r .= $this->getSectionPagingLinks( 'file' );
478 if ( $this->showGallery ) {
479 $r .= $this->gallery->toHTML();
480 } else {
481 $r .= $this->formatList( $this->imgsNoGallery, $this->imgsNoGallery_start_char );
482 }
483 $r .= $this->getSectionPagingLinks( 'file' );
484 $r .= "\n</div>";
485 }
486 return $r;
487 }
488
496 private function getSectionPagingLinks( $type ) {
497 if ( isset( $this->until[$type] ) && $this->until[$type] !== null ) {
498 // The new value for the until parameter should be pointing to the first
499 // result displayed on the page which is the second last result retrieved
500 // from the database.The next link should have a from parameter pointing
501 // to the until parameter of the current page.
502 if ( $this->nextPage[$type] !== null ) {
503 return $this->pagingLinks( $this->prevPage[$type], $this->until[$type], $type );
504 } else {
505 // If the nextPage variable is null, it means that we have reached the first page
506 // and therefore the previous link should be disabled.
507 return $this->pagingLinks( null, $this->until[$type], $type );
508 }
509 } elseif ( $this->nextPage[$type] !== null
510 || ( isset( $this->from[$type] ) && $this->from[$type] !== null )
511 ) {
512 return $this->pagingLinks( $this->from[$type], $this->nextPage[$type], $type );
513 } else {
514 return '';
515 }
516 }
517
521 function getCategoryBottom() {
522 return '';
523 }
524
535 function formatList( $articles, $articles_start_char, $cutoff = 6 ) {
536 $list = '';
537 if ( count( $articles ) > $cutoff ) {
539 } elseif ( count( $articles ) > 0 ) {
540 // for short lists of articles in categories.
542 }
543
544 $pageLang = $this->title->getPageLanguage();
545 $attribs = [ 'lang' => $pageLang->getHtmlCode(), 'dir' => $pageLang->getDir(),
546 'class' => 'mw-content-' . $pageLang->getDir() ];
547 $list = Html::rawElement( 'div', $attribs, $list );
548
549 return $list;
550 }
551
567 $columns = array_combine( $articles, $articles_start_char );
568
569 $ret = Html::openElement( 'div', [ 'class' => 'mw-category' ] );
570
571 $colContents = [];
572
573 # Kind of like array_flip() here, but we keep duplicates in an
574 # array instead of dropping them.
575 foreach ( $columns as $article => $char ) {
576 if ( !isset( $colContents[$char] ) ) {
577 $colContents[$char] = [];
578 }
579 $colContents[$char][] = $article;
580 }
581
582 foreach ( $colContents as $char => $articles ) {
583 # Change space to non-breaking space to keep headers aligned
584 $h3char = $char === ' ' ? '&#160;' : htmlspecialchars( $char );
585
586 $ret .= '<div class="mw-category-group"><h3>' . $h3char;
587 $ret .= "</h3>\n";
588
589 $ret .= '<ul><li>';
590 $ret .= implode( "</li>\n<li>", $articles );
591 $ret .= '</li></ul></div>';
592
593 }
594
595 $ret .= Html::closeElement( 'div' );
596 return $ret;
597 }
598
608 $r = '<h3>' . htmlspecialchars( $articles_start_char[0] ) . "</h3>\n";
609 $r .= '<ul><li>' . $articles[0] . '</li>';
610 $articleCount = count( $articles );
611 for ( $index = 1; $index < $articleCount; $index++ ) {
612 if ( $articles_start_char[$index] != $articles_start_char[$index - 1] ) {
613 $r .= "</ul><h3>" . htmlspecialchars( $articles_start_char[$index] ) . "</h3>\n<ul>";
614 }
615
616 $r .= "<li>{$articles[$index]}</li>";
617 }
618 $r .= '</ul>';
619 return $r;
620 }
621
631 private function pagingLinks( $first, $last, $type = '' ) {
632 $prevLink = $this->msg( 'prev-page' )->escaped();
633
634 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
635 if ( $first != '' ) {
636 $prevQuery = $this->query;
637 $prevQuery["{$type}until"] = $first;
638 unset( $prevQuery["{$type}from"] );
639 $prevLink = $linkRenderer->makeKnownLink(
640 $this->addFragmentToTitle( $this->title, $type ),
641 new HtmlArmor( $prevLink ),
642 [],
643 $prevQuery
644 );
645 }
646
647 $nextLink = $this->msg( 'next-page' )->escaped();
648
649 if ( $last != '' ) {
650 $lastQuery = $this->query;
651 $lastQuery["{$type}from"] = $last;
652 unset( $lastQuery["{$type}until"] );
653 $nextLink = $linkRenderer->makeKnownLink(
654 $this->addFragmentToTitle( $this->title, $type ),
655 new HtmlArmor( $nextLink ),
656 [],
657 $lastQuery
658 );
659 }
660
661 return $this->msg( 'categoryviewer-pagedlinks' )->rawParams( $prevLink, $nextLink )->escaped();
662 }
663
673 private function addFragmentToTitle( $title, $section ) {
674 switch ( $section ) {
675 case 'page':
676 $fragment = 'mw-pages';
677 break;
678 case 'subcat':
679 $fragment = 'mw-subcategories';
680 break;
681 case 'file':
682 $fragment = 'mw-category-media';
683 break;
684 default:
685 throw new MWException( __METHOD__ .
686 " Invalid section $section." );
687 }
688
689 return Title::makeTitle( $title->getNamespace(),
690 $title->getDBkey(), $fragment );
691 }
692
703 private function getCountMessage( $rescnt, $dbcnt, $type ) {
704 // There are three cases:
705 // 1) The category table figure seems sane. It might be wrong, but
706 // we can't do anything about it if we don't recalculate it on ev-
707 // ery category view.
708 // 2) The category table figure isn't sane, like it's smaller than the
709 // number of actual results, *but* the number of results is less
710 // than $this->limit and there's no offset. In this case we still
711 // know the right figure.
712 // 3) We have no idea.
713
714 // Check if there's a "from" or "until" for anything
715
716 // This is a little ugly, but we seem to use different names
717 // for the paging types then for the messages.
718 if ( $type === 'article' ) {
719 $pagingType = 'page';
720 } else {
721 $pagingType = $type;
722 }
723
724 $fromOrUntil = false;
725 if ( ( isset( $this->from[$pagingType] ) && $this->from[$pagingType] !== null ) ||
726 ( isset( $this->until[$pagingType] ) && $this->until[$pagingType] !== null )
727 ) {
728 $fromOrUntil = true;
729 }
730
731 if ( $dbcnt == $rescnt ||
732 ( ( $rescnt == $this->limit || $fromOrUntil ) && $dbcnt > $rescnt )
733 ) {
734 // Case 1: seems sane.
735 $totalcnt = $dbcnt;
736 } elseif ( $rescnt < $this->limit && !$fromOrUntil ) {
737 // Case 2: not sane, but salvageable. Use the number of results.
738 // Since there are fewer than 200, we can also take this opportunity
739 // to refresh the incorrect category table entry -- which should be
740 // quick due to the small number of entries.
741 $totalcnt = $rescnt;
742 DeferredUpdates::addCallableUpdate( [ $this->cat, 'refreshCounts' ] );
743 } else {
744 // Case 3: hopeless. Don't give a total count at all.
745 // Messages: category-subcat-count-limited, category-article-count-limited,
746 // category-file-count-limited
747 return $this->msg( "category-$type-count-limited" )->numParams( $rescnt )->parseAsBlock();
748 }
749 // Messages: category-subcat-count, category-article-count, category-file-count
750 return $this->msg( "category-$type-count" )->numParams( $rescnt, $totalcnt )->parseAsBlock();
751 }
752}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable from
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
getCountMessage( $rescnt, $dbcnt, $type)
What to do if the category table conflicts with the number of results returned? This function says wh...
pagingLinks( $first, $last, $type='')
Create paging links, as a helper method to getSectionPagingLinks().
Collation $collation
getSectionPagingLinks( $type)
Get the paging links for a section (subcats/pages/files), to go at the top and bottom of the output.
Category $cat
Category object for this page.
__construct( $title, IContextSource $context, $from=[], $until=[], $query=[])
addPage( $title, $sortkey, $pageLength, $isRedirect=false)
Add a miscellaneous page.
ImageGalleryBase $gallery
addSubcategoryObject(Category $cat, $sortkey, $pageLength)
Add a subcategory to the internal lists, using a Category object.
formatList( $articles, $articles_start_char, $cutoff=6)
Format a list of articles chunked by letter, either as a bullet list or a columnar format,...
addImage(Title $title, $sortkey, $pageLength, $isRedirect=false)
Add a page in the image namespace.
static columnList( $articles, $articles_start_char)
Format a list of articles chunked by letter in a three-column list, ordered vertically.
getSubcategorySortChar( $title, $sortkey)
Get the character to be used for sorting subcategories.
getHTML()
Format the category data list.
addFragmentToTitle( $title, $section)
Takes a title, and adds the fragment identifier that corresponds to the correct segment of the catego...
array $imgsNoGallery_start_char
generateLink( $type, Title $title, $isRedirect, $html=null)
array $query
The original query array, to be used in generating paging links.
static shortList( $articles, $articles_start_char)
Format a list of articles chunked by letter in a bullet list.
Category objects are immutable, strictly speaking.
Definition Category.php:31
static singleton()
Definition Collation.php:34
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
IContextSource $context
getContext()
Get the base IContextSource object.
setContext(IContextSource $context)
Marks HTML that shouldn't be escaped.
Definition HtmlArmor.php:28
static factory( $mode=false, IContextSource $context=null)
Get a new image gallery.
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Represents a title within MediaWiki.
Definition Title.php:39
getNamespace()
Get the namespace index, i.e.
Definition Title.php:970
getDBkey()
Get the main part with underscores.
Definition Title.php:947
getText()
Get the text form (spaces not underscores) of the main part.
Definition Title.php:929
isRedirect( $flags=0)
Is this an article that is a redirect page? Uses link cache, adding it if necessary.
Definition Title.php:3462
getPrefixedText()
Get the prefixed title with spaces.
Definition Title.php:1625
getCategorySortkey( $prefix='')
Returns the raw sort key to be used for categories, with the specified prefix.
Definition Title.php:4916
$res
Definition database.txt:21
For a write query
Definition database.txt:26
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const NS_FILE
Definition Defines.php:80
const NS_CATEGORY
Definition Defines.php:88
the array() calling protocol came about after MediaWiki 1.4rc1.
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
Definition hooks.txt:77
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2005
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:2013
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:3021
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:2014
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition hooks.txt:2056
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
Definition hooks.txt:3022
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187
returning false will NOT prevent logging $e
Definition hooks.txt:2176
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface for objects which can provide a MediaWiki context on request.
getConfig()
Get the site configuration.
title
$last
const DB_REPLICA
Definition defines.php:25
if(!isset( $args[0])) $lang