MediaWiki 1.41.2
CategoryViewer.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Category;
24
25use Collation;
27use DeprecationHelper;
28use HtmlArmor;
33use LinkCache;
34use MediaWiki\HookContainer\ProtectedHookAccessorTrait;
43use MWException;
45
47 use ProtectedHookAccessorTrait;
48 use DeprecationHelper;
49
51 public $limit;
52
54 public $from;
55
57 public $until;
58
60 public $articles;
61
64
66 public $children;
67
70
73
76
79
81 public $nextPage;
82
84 protected $prevPage;
85
87 public $flip;
88
90 protected $page;
91
93 public $collation;
94
96 public $gallery;
97
99 private $cat;
100
102 private $query;
103
105 private $languageConverter;
106
116 public function __construct( PageIdentity $page, IContextSource $context, array $from = [],
117 array $until = [], array $query = []
118 ) {
119 $this->page = $page;
120
122 'title',
123 '1.37',
124 function (): Title {
125 return Title::newFromPageIdentity( $this->page );
126 },
127 function ( PageIdentity $page ) {
128 $this->page = $page;
129 }
130 );
131
132 $this->setContext( $context );
133 $this->getOutput()->addModuleStyles( [
134 'mediawiki.action.styles',
135 ] );
136 $this->from = $from;
137 $this->until = $until;
138 $this->limit = $context->getConfig()->get( MainConfigNames::CategoryPagingLimit );
139 $this->cat = Category::newFromTitle( $page );
140 $this->query = $query;
141 $this->collation = MediaWikiServices::getInstance()->getCollationFactory()->getCategoryCollation();
142 $this->languageConverter = MediaWikiServices::getInstance()
143 ->getLanguageConverterFactory()->getLanguageConverter();
144 unset( $this->query['title'] );
145 }
146
152 public function getHTML() {
153 $this->showGallery = $this->getConfig()->get( MainConfigNames::CategoryMagicGallery )
154 && !$this->getOutput()->mNoGallery;
155
156 $this->clearCategoryState();
157 $this->doCategoryQuery();
158 $this->finaliseCategoryState();
159
160 $r = $this->getSubcategorySection() .
161 $this->getPagesSection() .
162 $this->getImageSection();
163
164 if ( $r == '' ) {
165 // If there is no category content to display, only
166 // show the top part of the navigation links.
167 // @todo FIXME: Cannot be completely suppressed because it
168 // is unknown if 'until' or 'from' makes this
169 // give 0 results.
170 $r = $this->getCategoryTop();
171 } else {
172 $r = $this->getCategoryTop() .
173 $r .
174 $this->getCategoryBottom();
175 }
176
177 // Give a proper message if category is empty
178 if ( $r == '' ) {
179 $r = $this->msg( 'category-empty' )->parseAsBlock();
180 }
181
182 $lang = $this->getLanguage();
183 $attribs = [
184 'class' => 'mw-category-generated',
185 'lang' => $lang->getHtmlCode(),
186 'dir' => $lang->getDir()
187 ];
188 # put a div around the headings which are in the user language
189 $r = Html::rawElement( 'div', $attribs, $r );
190
191 return $r;
192 }
193
194 protected function clearCategoryState() {
195 $this->articles = [];
196 $this->articles_start_char = [];
197 $this->children = [];
198 $this->children_start_char = [];
199 if ( $this->showGallery ) {
200 // Note that null for mode is taken to mean use default.
201 $mode = $this->getRequest()->getVal( 'gallerymode', null );
202 try {
203 $this->gallery = ImageGalleryBase::factory( $mode, $this->getContext() );
204 } catch ( ImageGalleryClassNotFoundException $e ) {
205 // User specified something invalid, fallback to default.
206 $this->gallery = ImageGalleryBase::factory( false, $this->getContext() );
207 }
208
209 $this->gallery->setHideBadImages();
210 } else {
211 $this->imgsNoGallery = [];
212 $this->imgsNoGallery_start_char = [];
213 }
214 }
215
222 public function addSubcategoryObject( Category $cat, $sortkey, $pageLength ) {
223 $page = $cat->getPage();
224 if ( !$page ) {
225 return;
226 }
227
228 // Subcategory; strip the 'Category' namespace from the link text.
229 $pageRecord = MediaWikiServices::getInstance()->getPageStore()
230 ->getPageByReference( $page );
231 if ( !$pageRecord ) {
232 return;
233 }
234
235 $this->children[] = $this->generateLink(
236 'subcat',
237 $pageRecord,
238 $pageRecord->isRedirect(),
239 htmlspecialchars( str_replace( '_', ' ', $pageRecord->getDBkey() ) )
240 );
241
242 $this->children_start_char[] =
243 $this->getSubcategorySortChar( $page, $sortkey );
244 }
245
257 private function generateLink(
258 string $type, PageReference $page, bool $isRedirect, ?string $html = null
259 ): string {
260 $link = null;
261 $legacyTitle = MediaWikiServices::getInstance()->getTitleFactory()
262 ->newFromPageReference( $page );
263 // @phan-suppress-next-line PhanTypeMismatchArgument Type mismatch on pass-by-ref args
264 $this->getHookRunner()->onCategoryViewer__generateLink( $type, $legacyTitle, $html, $link );
265 if ( $link === null ) {
266 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
267 if ( $html !== null ) {
268 $html = new HtmlArmor( $html );
269 }
270 $link = $linkRenderer->makeLink( $page, $html );
271 }
272 if ( $isRedirect ) {
273 $link = Html::rawElement(
274 'span',
275 [ 'class' => 'redirect-in-category' ],
276 $link
277 );
278 }
279
280 return $link;
281 }
282
294 public function getSubcategorySortChar( PageIdentity $page, string $sortkey ): string {
295 $titleText = MediaWikiServices::getInstance()->getTitleFormatter()
296 ->getPrefixedText( $page );
297 if ( $titleText === $sortkey ) {
298 $word = $page->getDBkey();
299 } else {
300 $word = $sortkey;
301 }
302
303 $firstChar = $this->collation->getFirstLetter( $word );
304
305 return $this->languageConverter->convert( $firstChar );
306 }
307
315 public function addImage(
316 PageReference $page, string $sortkey, int $pageLength, bool $isRedirect = false
317 ): void {
318 $title = MediaWikiServices::getInstance()->getTitleFactory()
319 ->newFromPageReference( $page );
320 if ( $this->showGallery ) {
321 $flip = $this->flip['file'];
322 if ( $flip ) {
323 $this->gallery->insert( $title, '', '', '', [], ImageGalleryBase::LOADING_LAZY );
324 } else {
325 $this->gallery->add( $title, '', '', '', [], ImageGalleryBase::LOADING_LAZY );
326 }
327 } else {
328 $this->imgsNoGallery[] = $this->generateLink( 'image', $page, $isRedirect );
329
330 $this->imgsNoGallery_start_char[] =
331 $this->languageConverter->convert( $this->collation->getFirstLetter( $sortkey ) );
332 }
333 }
334
342 public function addPage(
343 PageReference $page,
344 string $sortkey,
345 int $pageLength,
346 bool $isRedirect = false
347 ): void {
348 $this->articles[] = $this->generateLink( 'page', $page, $isRedirect );
349
350 $this->articles_start_char[] =
351 $this->languageConverter->convert( $this->collation->getFirstLetter( $sortkey ) );
352 }
353
354 protected function finaliseCategoryState() {
355 if ( $this->flip['subcat'] ) {
356 $this->children = array_reverse( $this->children );
357 $this->children_start_char = array_reverse( $this->children_start_char );
358 }
359 if ( $this->flip['page'] ) {
360 $this->articles = array_reverse( $this->articles );
361 $this->articles_start_char = array_reverse( $this->articles_start_char );
362 }
363 if ( !$this->showGallery && $this->flip['file'] ) {
364 $this->imgsNoGallery = array_reverse( $this->imgsNoGallery );
365 $this->imgsNoGallery_start_char = array_reverse( $this->imgsNoGallery_start_char );
366 }
367 }
368
369 protected function doCategoryQuery() {
370 $dbr = wfGetDB( DB_REPLICA, 'category' );
371
372 $this->nextPage = [
373 'page' => null,
374 'subcat' => null,
375 'file' => null,
376 ];
377 $this->prevPage = [
378 'page' => null,
379 'subcat' => null,
380 'file' => null,
381 ];
382
383 $this->flip = [ 'page' => false, 'subcat' => false, 'file' => false ];
384
385 foreach ( [ 'page', 'subcat', 'file' ] as $type ) {
386 # Get the sortkeys for start/end, if applicable. Note that if
387 # the collation in the database differs from the one
388 # set in $wgCategoryCollation, pagination might go totally haywire.
389 $extraConds = [ 'cl_type' => $type ];
390 if ( isset( $this->from[$type] ) ) {
391 $extraConds[] = 'cl_sortkey >= '
392 . $dbr->addQuotes( $this->collation->getSortKey( $this->from[$type] ) );
393 } elseif ( isset( $this->until[$type] ) ) {
394 $extraConds[] = 'cl_sortkey < '
395 . $dbr->addQuotes( $this->collation->getSortKey( $this->until[$type] ) );
396 $this->flip[$type] = true;
397 }
398
399 $queryBuilder = $dbr->newSelectQueryBuilder();
400 $queryBuilder->select( array_merge(
401 LinkCache::getSelectFields(),
402 [
403 'cl_sortkey',
404 'cat_id',
405 'cat_title',
406 'cat_subcats',
407 'cat_pages',
408 'cat_files',
409 'cl_sortkey_prefix',
410 'cl_collation'
411 ]
412 ) )
413 ->from( 'page' )
414 ->where( [ 'cl_to' => $this->page->getDBkey() ] )
415 ->andWhere( $extraConds )
416 ->useIndex( [ 'categorylinks' => 'cl_sortkey' ] );
417
418 if ( $this->flip[$type] ) {
419 $queryBuilder->orderBy( 'cl_sortkey', SelectQueryBuilder::SORT_DESC );
420 } else {
421 $queryBuilder->orderBy( 'cl_sortkey' );
422 }
423
424 $queryBuilder
425 ->join( 'categorylinks', null, [ 'cl_from = page_id' ] )
426 ->leftJoin( 'category', null, [
427 'cat_title = page_title',
428 'page_namespace' => NS_CATEGORY
429 ] )
430 ->limit( $this->limit + 1 )
431 ->caller( __METHOD__ );
432
433 $res = $queryBuilder->fetchResultSet();
434
435 $this->getHookRunner()->onCategoryViewer__doCategoryQuery( $type, $res );
436 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
437
438 $count = 0;
439 foreach ( $res as $row ) {
440 $title = Title::newFromRow( $row );
441 $linkCache->addGoodLinkObjFromRow( $title, $row );
442
443 if ( $row->cl_collation === '' ) {
444 // Hack to make sure that while updating from 1.16 schema
445 // and db is inconsistent, that the sky doesn't fall.
446 // See r83544. Could perhaps be removed in a couple decades...
447 $humanSortkey = $row->cl_sortkey;
448 } else {
449 $humanSortkey = $title->getCategorySortkey( $row->cl_sortkey_prefix );
450 }
451
452 if ( ++$count > $this->limit ) {
453 # We've reached the one extra which shows that there
454 # are additional pages to be had. Stop here...
455 $this->nextPage[$type] = $humanSortkey;
456 break;
457 }
458 if ( $count == $this->limit ) {
459 $this->prevPage[$type] = $humanSortkey;
460 }
461
462 if ( $title->getNamespace() === NS_CATEGORY ) {
463 $cat = Category::newFromRow( $row, $title );
464 $this->addSubcategoryObject( $cat, $humanSortkey, $row->page_len );
465 } elseif ( $title->getNamespace() === NS_FILE ) {
466 $this->addImage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
467 } else {
468 $this->addPage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
469 }
470 }
471 }
472 }
473
477 protected function getCategoryTop() {
478 $r = $this->getCategoryBottom();
479 return $r === ''
480 ? $r
481 : "<br style=\"clear:both;\"/>\n" . $r;
482 }
483
487 protected function getSubcategorySection() {
488 # Don't show subcategories section if there are none.
489 $r = '';
490 $rescnt = count( $this->children );
491 $dbcnt = $this->cat->getSubcatCount();
492 // This function should be called even if the result isn't used, it has side-effects
493 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'subcat' );
494
495 if ( $rescnt > 0 ) {
496 # Showing subcategories
497 $r .= Html::openElement( 'div', [ 'id' => 'mw-subcategories' ] ) . "\n";
498 $r .= Html::rawElement( 'h2', [], $this->msg( 'subcategories' )->parse() ) . "\n";
499 $r .= $countmsg;
500 $r .= $this->getSectionPagingLinks( 'subcat' );
501 $r .= $this->formatList( $this->children, $this->children_start_char );
502 $r .= $this->getSectionPagingLinks( 'subcat' );
503 $r .= "\n" . Html::closeElement( 'div' );
504 }
505 return $r;
506 }
507
511 protected function getPagesSection() {
512 $name = $this->getOutput()->getUnprefixedDisplayTitle();
513 # Don't show articles section if there are none.
514 $r = '';
515
516 # @todo FIXME: Here and in the other two sections: we don't need to bother
517 # with this rigmarole if the entire category contents fit on one page
518 # and have already been retrieved. We can just use $rescnt in that
519 # case and save a query and some logic.
520 $dbcnt = $this->cat->getPageCount( Category::COUNT_CONTENT_PAGES );
521 $rescnt = count( $this->articles );
522 // This function should be called even if the result isn't used, it has side-effects
523 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'article' );
524
525 if ( $rescnt > 0 ) {
526 $r .= Html::openElement( 'div', [ 'id' => 'mw-pages' ] ) . "\n";
527 $r .= Html::rawElement(
528 'h2',
529 [],
530 $this->msg( 'category_header' )->rawParams( $name )->parse()
531 ) . "\n";
532 $r .= $countmsg;
533 $r .= $this->getSectionPagingLinks( 'page' );
534 $r .= $this->formatList( $this->articles, $this->articles_start_char );
535 $r .= $this->getSectionPagingLinks( 'page' );
536 $r .= "\n" . Html::closeElement( 'div' );
537 }
538 return $r;
539 }
540
544 protected function getImageSection() {
545 $name = $this->getOutput()->getUnprefixedDisplayTitle();
546 $r = '';
547 $rescnt = $this->showGallery ?
548 $this->gallery->count() :
549 count( $this->imgsNoGallery ?? [] );
550 $dbcnt = $this->cat->getFileCount();
551 // This function should be called even if the result isn't used, it has side-effects
552 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'file' );
553
554 if ( $rescnt > 0 ) {
555 $r .= Html::openElement( 'div', [ 'id' => 'mw-category-media' ] ) . "\n";
556 $r .= Html::rawElement(
557 'h2',
558 [],
559 $this->msg( 'category-media-header' )->rawParams( $name )->parse()
560 ) . "\n";
561 $r .= $countmsg;
562 $r .= $this->getSectionPagingLinks( 'file' );
563 if ( $this->showGallery ) {
564 $r .= $this->gallery->toHTML();
565 } else {
566 $r .= $this->formatList( $this->imgsNoGallery, $this->imgsNoGallery_start_char );
567 }
568 $r .= $this->getSectionPagingLinks( 'file' );
569 $r .= "\n" . Html::closeElement( 'div' );
570 }
571 return $r;
572 }
573
581 private function getSectionPagingLinks( $type ) {
582 if ( isset( $this->until[$type] ) ) {
583 // The new value for the until parameter should be pointing to the first
584 // result displayed on the page which is the second last result retrieved
585 // from the database.The next link should have a from parameter pointing
586 // to the until parameter of the current page.
587 if ( $this->nextPage[$type] !== null ) {
588 return $this->pagingLinks(
589 $this->prevPage[$type] ?? '',
590 $this->until[$type],
591 $type
592 );
593 }
594
595 // If the nextPage variable is null, it means that we have reached the first page
596 // and therefore the previous link should be disabled.
597 return $this->pagingLinks(
598 '',
599 $this->until[$type],
600 $type
601 );
602 } elseif ( $this->nextPage[$type] !== null || isset( $this->from[$type] ) ) {
603 return $this->pagingLinks(
604 $this->from[$type] ?? '',
605 $this->nextPage[$type],
606 $type
607 );
608 }
609
610 return '';
611 }
612
616 protected function getCategoryBottom() {
617 return '';
618 }
619
630 private function formatList( $articles, $articles_start_char, $cutoff = 6 ) {
631 $list = '';
632 if ( count( $articles ) > $cutoff ) {
633 $list = self::columnList( $articles, $articles_start_char );
634 } elseif ( count( $articles ) > 0 ) {
635 // for short lists of articles in categories.
636 $list = self::shortList( $articles, $articles_start_char );
637 }
638
639 $pageLang = MediaWikiServices::getInstance()->getTitleFactory()
640 ->newFromPageIdentity( $this->page )
641 ->getPageLanguage();
642 $attribs = [ 'lang' => $pageLang->getHtmlCode(), 'dir' => $pageLang->getDir(),
643 'class' => 'mw-content-' . $pageLang->getDir() ];
644 $list = Html::rawElement( 'div', $attribs, $list );
645
646 return $list;
647 }
648
659 public static function columnList(
660 $articles,
661 $articles_start_char,
662 $cssClasses = 'mw-category mw-category-columns'
663 ) {
664 $columns = array_combine( $articles, $articles_start_char );
665
666 $ret = Html::openElement( 'div', [ 'class' => $cssClasses ] );
667
668 $colContents = [];
669
670 # Kind of like array_flip() here, but we keep duplicates in an
671 # array instead of dropping them.
672 foreach ( $columns as $article => $char ) {
673 $colContents[$char][] = $article;
674 }
675
676 foreach ( $colContents as $char => $articles ) {
677 # Change space to non-breaking space to keep headers aligned
678 $h3char = $char === ' ' ? "\u{00A0}" : htmlspecialchars( $char );
679
680 $ret .= Html::openElement( 'div', [ 'class' => 'mw-category-group' ] );
681 $ret .= Html::rawElement( 'h3', [], $h3char ) . "\n";
682 $ret .= Html::openElement( 'ul' );
683 $ret .= implode(
684 "\n",
685 array_map(
686 static function ( $article ) {
687 return Html::rawElement( 'li', [], $article );
688 },
689 $articles
690 )
691 );
692 $ret .= Html::closeElement( 'ul' ) . Html::closeElement( 'div' );
693
694 }
695
696 $ret .= Html::closeElement( 'div' );
697 return $ret;
698 }
699
708 public static function shortList( $articles, $articles_start_char ) {
709 return self::columnList( $articles, $articles_start_char, 'mw-category' );
710 }
711
721 private function pagingLinks( $first, $last, $type = '' ) {
722 $prevLink = $this->msg( 'prev-page' )->escaped();
723
724 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
725 if ( $first != '' ) {
726 $prevQuery = $this->query;
727 $prevQuery["{$type}until"] = $first;
728 unset( $prevQuery["{$type}from"] );
729 $prevLink = $linkRenderer->makeKnownLink(
730 $this->addFragmentToTitle( $this->page, $type ),
731 new HtmlArmor( $prevLink ),
732 [],
733 $prevQuery
734 );
735 }
736
737 $nextLink = $this->msg( 'next-page' )->escaped();
738
739 if ( $last != '' ) {
740 $lastQuery = $this->query;
741 $lastQuery["{$type}from"] = $last;
742 unset( $lastQuery["{$type}until"] );
743 $nextLink = $linkRenderer->makeKnownLink(
744 $this->addFragmentToTitle( $this->page, $type ),
745 new HtmlArmor( $nextLink ),
746 [],
747 $lastQuery
748 );
749 }
750
751 return $this->msg( 'categoryviewer-pagedlinks' )->rawParams( $prevLink, $nextLink )->escaped();
752 }
753
763 private function addFragmentToTitle( PageReference $page, string $section ): LinkTarget {
764 switch ( $section ) {
765 case 'page':
766 $fragment = 'mw-pages';
767 break;
768 case 'subcat':
769 $fragment = 'mw-subcategories';
770 break;
771 case 'file':
772 $fragment = 'mw-category-media';
773 break;
774 default:
775 throw new MWException( __METHOD__ .
776 " Invalid section $section." );
777 }
778
779 return new TitleValue( $page->getNamespace(),
780 $page->getDBkey(), $fragment );
781 }
782
793 private function getCountMessage( $rescnt, $dbcnt, $type ) {
794 // There are three cases:
795 // 1) The category table figure seems good. It might be wrong, but
796 // we can't do anything about it if we don't recalculate it on ev-
797 // ery category view.
798 // 2) The category table figure isn't good, like it's smaller than the
799 // number of actual results, *but* the number of results is less
800 // than $this->limit and there's no offset. In this case we still
801 // know the right figure.
802 // 3) We have no idea.
803
804 // Check if there's a "from" or "until" for anything
805
806 // This is a little ugly, but we seem to use different names
807 // for the paging types then for the messages.
808 if ( $type === 'article' ) {
809 $pagingType = 'page';
810 } else {
811 $pagingType = $type;
812 }
813
814 $fromOrUntil = false;
815 if ( isset( $this->from[$pagingType] ) || isset( $this->until[$pagingType] ) ) {
816 $fromOrUntil = true;
817 }
818
819 if ( $dbcnt == $rescnt ||
820 ( ( $rescnt == $this->limit || $fromOrUntil ) && $dbcnt > $rescnt )
821 ) {
822 // Case 1: seems good.
823 $totalcnt = $dbcnt;
824 } elseif ( $rescnt < $this->limit && !$fromOrUntil ) {
825 // Case 2: not good, but salvageable. Use the number of results.
826 $totalcnt = $rescnt;
827 } else {
828 // Case 3: hopeless. Don't give a total count at all.
829 // Messages: category-subcat-count-limited, category-article-count-limited,
830 // category-file-count-limited
831 return $this->msg( "category-$type-count-limited" )->numParams( $rescnt )->parseAsBlock();
832 }
833 // Messages: category-subcat-count, category-article-count, category-file-count
834 return $this->msg( "category-$type-count" )->numParams( $rescnt, $totalcnt )->parseAsBlock();
835 }
836}
837
841class_alias( CategoryViewer::class, 'CategoryViewer' );
const NS_FILE
Definition Defines.php:70
const NS_CATEGORY
Definition Defines.php:78
deprecatePublicPropertyFallback(string $property, string $version, $getter, $setter=null, $class=null, $component=null)
Mark a removed public property as deprecated and provide fallback getter and setter callables.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
msg( $key,... $params)
Get a Message object with context set Parameters are the same as wfMessage()
getContext()
Get the base IContextSource object.
setContext(IContextSource $context)
Marks HTML that shouldn't be escaped.
Definition HtmlArmor.php:30
static factory( $mode=false, IContextSource $context=null)
Get a new image gallery.
Class for exceptions thrown by ImageGalleryBase::factory().
Cache for article titles (prefixed DB keys) and ids linked from one source.
Definition LinkCache.php:45
MediaWiki exception.
getHTML()
Format the category data list.
static columnList( $articles, $articles_start_char, $cssClasses='mw-category mw-category-columns')
Format a list of articles chunked by letter in a three-column list, ordered vertically.
static shortList( $articles, $articles_start_char)
Format a list of articles chunked by letter in a bullet list.
addImage(PageReference $page, string $sortkey, int $pageLength, bool $isRedirect=false)
Add a page in the image namespace.
getSubcategorySortChar(PageIdentity $page, string $sortkey)
Get the character to be used for sorting subcategories.
addSubcategoryObject(Category $cat, $sortkey, $pageLength)
Add a subcategory to the internal lists, using a Category object.
__construct(PageIdentity $page, IContextSource $context, array $from=[], array $until=[], array $query=[])
addPage(PageReference $page, string $sortkey, int $pageLength, bool $isRedirect=false)
Add a miscellaneous page.
Category objects are immutable, strictly speaking.
Definition Category.php:41
static newFromTitle(PageIdentity $page)
Factory function.
Definition Category.php:176
This class is a collection of static functions that serve two purposes:
Definition Html.php:57
A class containing constants representing the names of configuration variables.
const CategoryPagingLimit
Name constant for the CategoryPagingLimit setting, for use with Config::get()
const CategoryMagicGallery
Name constant for the CategoryMagicGallery setting, for use with Config::get()
Service locator for MediaWiki core services.
static getInstance()
Returns the global default instance of the top level service locator.
Represents the target of a wiki link.
Represents a title within MediaWiki.
Definition Title.php:76
Build SELECT queries with a fluent interface.
Interface for objects which can provide a MediaWiki context on request.
getConfig()
Get the site configuration.
The shared interface for all language converters.
Represents the target of a wiki link.
Interface for objects (potentially) representing an editable wiki page.
Interface for objects (potentially) representing a page that can be viewable and linked to on a wiki.
getNamespace()
Returns the page's namespace number.
getDBkey()
Get the page title in DB key form.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
const DB_REPLICA
Definition defines.php:26