MediaWiki  1.33.0
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 
47  public $showGallery;
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 = $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 
152  function clearCategoryState() {
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,
187  $title->isRedirect(),
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 ) {
224  if ( $title->getPrefixedText() == $sortkey ) {
225  $word = $title->getDBkey();
226  } else {
227  $word = $sortkey;
228  }
229 
230  $firstChar = $this->collation->getFirstLetter( $word );
231 
232  return MediaWikiServices::getInstance()->getContentLanguage()->convert( $firstChar );
233  }
234 
242  function addImage( Title $title, $sortkey, $pageLength, $isRedirect = false ) {
243  if ( $this->showGallery ) {
244  $flip = $this->flip['file'];
245  if ( $flip ) {
246  $this->gallery->insert( $title );
247  } else {
248  $this->gallery->add( $title );
249  }
250  } else {
251  $this->imgsNoGallery[] = $this->generateLink( 'image', $title, $isRedirect );
252 
253  $this->imgsNoGallery_start_char[] = MediaWikiServices::getInstance()->
254  getContentLanguage()->convert( $this->collation->getFirstLetter( $sortkey ) );
255  }
256  }
257 
265  function addPage( $title, $sortkey, $pageLength, $isRedirect = false ) {
266  $this->articles[] = $this->generateLink( 'page', $title, $isRedirect );
267 
268  $this->articles_start_char[] = MediaWikiServices::getInstance()->
269  getContentLanguage()->convert( $this->collation->getFirstLetter( $sortkey ) );
270  }
271 
273  if ( $this->flip['subcat'] ) {
274  $this->children = array_reverse( $this->children );
275  $this->children_start_char = array_reverse( $this->children_start_char );
276  }
277  if ( $this->flip['page'] ) {
278  $this->articles = array_reverse( $this->articles );
279  $this->articles_start_char = array_reverse( $this->articles_start_char );
280  }
281  if ( !$this->showGallery && $this->flip['file'] ) {
282  $this->imgsNoGallery = array_reverse( $this->imgsNoGallery );
283  $this->imgsNoGallery_start_char = array_reverse( $this->imgsNoGallery_start_char );
284  }
285  }
286 
287  function doCategoryQuery() {
288  $dbr = wfGetDB( DB_REPLICA, 'category' );
289 
290  $this->nextPage = [
291  'page' => null,
292  'subcat' => null,
293  'file' => null,
294  ];
295  $this->prevPage = [
296  'page' => null,
297  'subcat' => null,
298  'file' => null,
299  ];
300 
301  $this->flip = [ 'page' => false, 'subcat' => false, 'file' => false ];
302 
303  foreach ( [ 'page', 'subcat', 'file' ] as $type ) {
304  # Get the sortkeys for start/end, if applicable. Note that if
305  # the collation in the database differs from the one
306  # set in $wgCategoryCollation, pagination might go totally haywire.
307  $extraConds = [ 'cl_type' => $type ];
308  if ( isset( $this->from[$type] ) && $this->from[$type] !== null ) {
309  $extraConds[] = 'cl_sortkey >= '
310  . $dbr->addQuotes( $this->collation->getSortKey( $this->from[$type] ) );
311  } elseif ( isset( $this->until[$type] ) && $this->until[$type] !== null ) {
312  $extraConds[] = 'cl_sortkey < '
313  . $dbr->addQuotes( $this->collation->getSortKey( $this->until[$type] ) );
314  $this->flip[$type] = true;
315  }
316 
317  $res = $dbr->select(
318  [ 'page', 'categorylinks', 'category' ],
319  array_merge(
321  [
322  'page_namespace',
323  'page_title',
324  'cl_sortkey',
325  'cat_id',
326  'cat_title',
327  'cat_subcats',
328  'cat_pages',
329  'cat_files',
330  'cl_sortkey_prefix',
331  'cl_collation'
332  ]
333  ),
334  array_merge( [ 'cl_to' => $this->title->getDBkey() ], $extraConds ),
335  __METHOD__,
336  [
337  'USE INDEX' => [ 'categorylinks' => 'cl_sortkey' ],
338  'LIMIT' => $this->limit + 1,
339  'ORDER BY' => $this->flip[$type] ? 'cl_sortkey DESC' : 'cl_sortkey',
340  ],
341  [
342  'categorylinks' => [ 'JOIN', 'cl_from = page_id' ],
343  'category' => [ 'LEFT JOIN', [
344  'cat_title = page_title',
345  'page_namespace' => NS_CATEGORY
346  ] ]
347  ]
348  );
349 
350  Hooks::run( 'CategoryViewer::doCategoryQuery', [ $type, $res ] );
351  $linkCache = MediaWikiServices::getInstance()->getLinkCache();
352 
353  $count = 0;
354  foreach ( $res as $row ) {
355  $title = Title::newFromRow( $row );
356  $linkCache->addGoodLinkObjFromRow( $title, $row );
357 
358  if ( $row->cl_collation === '' ) {
359  // Hack to make sure that while updating from 1.16 schema
360  // and db is inconsistent, that the sky doesn't fall.
361  // See r83544. Could perhaps be removed in a couple decades...
362  $humanSortkey = $row->cl_sortkey;
363  } else {
364  $humanSortkey = $title->getCategorySortkey( $row->cl_sortkey_prefix );
365  }
366 
367  if ( ++$count > $this->limit ) {
368  # We've reached the one extra which shows that there
369  # are additional pages to be had. Stop here...
370  $this->nextPage[$type] = $humanSortkey;
371  break;
372  }
373  if ( $count == $this->limit ) {
374  $this->prevPage[$type] = $humanSortkey;
375  }
376 
377  if ( $title->getNamespace() == NS_CATEGORY ) {
378  $cat = Category::newFromRow( $row, $title );
379  $this->addSubcategoryObject( $cat, $humanSortkey, $row->page_len );
380  } elseif ( $title->getNamespace() == NS_FILE ) {
381  $this->addImage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
382  } else {
383  $this->addPage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
384  }
385  }
386  }
387  }
388 
392  function getCategoryTop() {
393  $r = $this->getCategoryBottom();
394  return $r === ''
395  ? $r
396  : "<br style=\"clear:both;\"/>\n" . $r;
397  }
398 
403  # Don't show subcategories section if there are none.
404  $r = '';
405  $rescnt = count( $this->children );
406  $dbcnt = $this->cat->getSubcatCount();
407  // This function should be called even if the result isn't used, it has side-effects
408  $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'subcat' );
409 
410  if ( $rescnt > 0 ) {
411  # Showing subcategories
412  $r .= "<div id=\"mw-subcategories\">\n";
413  $r .= '<h2>' . $this->msg( 'subcategories' )->parse() . "</h2>\n";
414  $r .= $countmsg;
415  $r .= $this->getSectionPagingLinks( 'subcat' );
416  $r .= $this->formatList( $this->children, $this->children_start_char );
417  $r .= $this->getSectionPagingLinks( 'subcat' );
418  $r .= "\n</div>";
419  }
420  return $r;
421  }
422 
426  function getPagesSection() {
427  $name = $this->getOutput()->getUnprefixedDisplayTitle();
428  # Don't show articles section if there are none.
429  $r = '';
430 
431  # @todo FIXME: Here and in the other two sections: we don't need to bother
432  # with this rigmarole if the entire category contents fit on one page
433  # and have already been retrieved. We can just use $rescnt in that
434  # case and save a query and some logic.
435  $dbcnt = $this->cat->getPageCount() - $this->cat->getSubcatCount()
436  - $this->cat->getFileCount();
437  $rescnt = count( $this->articles );
438  // This function should be called even if the result isn't used, it has side-effects
439  $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'article' );
440 
441  if ( $rescnt > 0 ) {
442  $r = "<div id=\"mw-pages\">\n";
443  $r .= '<h2>' . $this->msg( 'category_header' )->rawParams( $name )->parse() . "</h2>\n";
444  $r .= $countmsg;
445  $r .= $this->getSectionPagingLinks( 'page' );
446  $r .= $this->formatList( $this->articles, $this->articles_start_char );
447  $r .= $this->getSectionPagingLinks( 'page' );
448  $r .= "\n</div>";
449  }
450  return $r;
451  }
452 
456  function getImageSection() {
457  $name = $this->getOutput()->getUnprefixedDisplayTitle();
458  $r = '';
459  $rescnt = $this->showGallery ? $this->gallery->count() : count( $this->imgsNoGallery );
460  $dbcnt = $this->cat->getFileCount();
461  // This function should be called even if the result isn't used, it has side-effects
462  $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'file' );
463 
464  if ( $rescnt > 0 ) {
465  $r .= "<div id=\"mw-category-media\">\n";
466  $r .= '<h2>' .
467  $this->msg( 'category-media-header' )->rawParams( $name )->parse() .
468  "</h2>\n";
469  $r .= $countmsg;
470  $r .= $this->getSectionPagingLinks( 'file' );
471  if ( $this->showGallery ) {
472  $r .= $this->gallery->toHTML();
473  } else {
474  $r .= $this->formatList( $this->imgsNoGallery, $this->imgsNoGallery_start_char );
475  }
476  $r .= $this->getSectionPagingLinks( 'file' );
477  $r .= "\n</div>";
478  }
479  return $r;
480  }
481 
489  private function getSectionPagingLinks( $type ) {
490  if ( isset( $this->until[$type] ) && $this->until[$type] !== null ) {
491  // The new value for the until parameter should be pointing to the first
492  // result displayed on the page which is the second last result retrieved
493  // from the database.The next link should have a from parameter pointing
494  // to the until parameter of the current page.
495  if ( $this->nextPage[$type] !== null ) {
496  return $this->pagingLinks( $this->prevPage[$type], $this->until[$type], $type );
497  } else {
498  // If the nextPage variable is null, it means that we have reached the first page
499  // and therefore the previous link should be disabled.
500  return $this->pagingLinks( null, $this->until[$type], $type );
501  }
502  } elseif ( $this->nextPage[$type] !== null
503  || ( isset( $this->from[$type] ) && $this->from[$type] !== null )
504  ) {
505  return $this->pagingLinks( $this->from[$type], $this->nextPage[$type], $type );
506  } else {
507  return '';
508  }
509  }
510 
514  function getCategoryBottom() {
515  return '';
516  }
517 
528  function formatList( $articles, $articles_start_char, $cutoff = 6 ) {
529  $list = '';
530  if ( count( $articles ) > $cutoff ) {
532  } elseif ( count( $articles ) > 0 ) {
533  // for short lists of articles in categories.
535  }
536 
537  $pageLang = $this->title->getPageLanguage();
538  $attribs = [ 'lang' => $pageLang->getHtmlCode(), 'dir' => $pageLang->getDir(),
539  'class' => 'mw-content-' . $pageLang->getDir() ];
540  $list = Html::rawElement( 'div', $attribs, $list );
541 
542  return $list;
543  }
544 
560  $columns = array_combine( $articles, $articles_start_char );
561 
562  $ret = Html::openElement( 'div', [ 'class' => 'mw-category' ] );
563 
564  $colContents = [];
565 
566  # Kind of like array_flip() here, but we keep duplicates in an
567  # array instead of dropping them.
568  foreach ( $columns as $article => $char ) {
569  if ( !isset( $colContents[$char] ) ) {
570  $colContents[$char] = [];
571  }
572  $colContents[$char][] = $article;
573  }
574 
575  foreach ( $colContents as $char => $articles ) {
576  # Change space to non-breaking space to keep headers aligned
577  $h3char = $char === ' ' ? "\u{00A0}" : htmlspecialchars( $char );
578 
579  $ret .= '<div class="mw-category-group"><h3>' . $h3char;
580  $ret .= "</h3>\n";
581 
582  $ret .= '<ul><li>';
583  $ret .= implode( "</li>\n<li>", $articles );
584  $ret .= '</li></ul></div>';
585 
586  }
587 
588  $ret .= Html::closeElement( 'div' );
589  return $ret;
590  }
591 
601  $r = '<h3>' . htmlspecialchars( $articles_start_char[0] ) . "</h3>\n";
602  $r .= '<ul><li>' . $articles[0] . '</li>';
603  $articleCount = count( $articles );
604  for ( $index = 1; $index < $articleCount; $index++ ) {
605  if ( $articles_start_char[$index] != $articles_start_char[$index - 1] ) {
606  $r .= "</ul><h3>" . htmlspecialchars( $articles_start_char[$index] ) . "</h3>\n<ul>";
607  }
608 
609  $r .= "<li>{$articles[$index]}</li>";
610  }
611  $r .= '</ul>';
612  return $r;
613  }
614 
624  private function pagingLinks( $first, $last, $type = '' ) {
625  $prevLink = $this->msg( 'prev-page' )->escaped();
626 
627  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
628  if ( $first != '' ) {
629  $prevQuery = $this->query;
630  $prevQuery["{$type}until"] = $first;
631  unset( $prevQuery["{$type}from"] );
632  $prevLink = $linkRenderer->makeKnownLink(
633  $this->addFragmentToTitle( $this->title, $type ),
634  new HtmlArmor( $prevLink ),
635  [],
636  $prevQuery
637  );
638  }
639 
640  $nextLink = $this->msg( 'next-page' )->escaped();
641 
642  if ( $last != '' ) {
643  $lastQuery = $this->query;
644  $lastQuery["{$type}from"] = $last;
645  unset( $lastQuery["{$type}until"] );
646  $nextLink = $linkRenderer->makeKnownLink(
647  $this->addFragmentToTitle( $this->title, $type ),
648  new HtmlArmor( $nextLink ),
649  [],
650  $lastQuery
651  );
652  }
653 
654  return $this->msg( 'categoryviewer-pagedlinks' )->rawParams( $prevLink, $nextLink )->escaped();
655  }
656 
666  private function addFragmentToTitle( $title, $section ) {
667  switch ( $section ) {
668  case 'page':
669  $fragment = 'mw-pages';
670  break;
671  case 'subcat':
672  $fragment = 'mw-subcategories';
673  break;
674  case 'file':
675  $fragment = 'mw-category-media';
676  break;
677  default:
678  throw new MWException( __METHOD__ .
679  " Invalid section $section." );
680  }
681 
683  $title->getDBkey(), $fragment );
684  }
685 
696  private function getCountMessage( $rescnt, $dbcnt, $type ) {
697  // There are three cases:
698  // 1) The category table figure seems sane. It might be wrong, but
699  // we can't do anything about it if we don't recalculate it on ev-
700  // ery category view.
701  // 2) The category table figure isn't sane, like it's smaller than the
702  // number of actual results, *but* the number of results is less
703  // than $this->limit and there's no offset. In this case we still
704  // know the right figure.
705  // 3) We have no idea.
706 
707  // Check if there's a "from" or "until" for anything
708 
709  // This is a little ugly, but we seem to use different names
710  // for the paging types then for the messages.
711  if ( $type === 'article' ) {
712  $pagingType = 'page';
713  } else {
714  $pagingType = $type;
715  }
716 
717  $fromOrUntil = false;
718  if ( ( isset( $this->from[$pagingType] ) && $this->from[$pagingType] !== null ) ||
719  ( isset( $this->until[$pagingType] ) && $this->until[$pagingType] !== null )
720  ) {
721  $fromOrUntil = true;
722  }
723 
724  if ( $dbcnt == $rescnt ||
725  ( ( $rescnt == $this->limit || $fromOrUntil ) && $dbcnt > $rescnt )
726  ) {
727  // Case 1: seems sane.
728  $totalcnt = $dbcnt;
729  } elseif ( $rescnt < $this->limit && !$fromOrUntil ) {
730  // Case 2: not sane, but salvageable. Use the number of results.
731  $totalcnt = $rescnt;
732  } else {
733  // Case 3: hopeless. Don't give a total count at all.
734  // Messages: category-subcat-count-limited, category-article-count-limited,
735  // category-file-count-limited
736  return $this->msg( "category-$type-count-limited" )->numParams( $rescnt )->parseAsBlock();
737  }
738  // Messages: category-subcat-count, category-article-count, category-file-count
739  return $this->msg( "category-$type-count" )->numParams( $rescnt, $totalcnt )->parseAsBlock();
740  }
741 }
CategoryViewer\$children
array $children
Definition: CategoryViewer.php:41
CategoryViewer\$query
array $query
The original query array, to be used in generating paging links.
Definition: CategoryViewer.php:77
Category\getTitle
getTitle()
Definition: Category.php:251
ContextSource\$context
IContextSource $context
Definition: ContextSource.php:33
ContextSource\getConfig
getConfig()
Definition: ContextSource.php:63
CategoryViewer\shortList
static shortList( $articles, $articles_start_char)
Format a list of articles chunked by letter in a bullet list.
Definition: CategoryViewer.php:600
$article
return true to allow those checks to and false if checking is done remove or add to the links of a group of changes in EnhancedChangesList Hook subscribers can return false to omit this line from recentchanges use this to change the tables headers change it to an object instance and return false override the list derivative used the name of the old file & $article
Definition: hooks.txt:1476
CategoryViewer\$gallery
ImageGalleryBase $gallery
Definition: CategoryViewer.php:71
ContextSource\getContext
getContext()
Get the base IContextSource object.
Definition: ContextSource.php:40
HtmlArmor
Marks HTML that shouldn't be escaped.
Definition: HtmlArmor.php:28
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
query
For a write query
Definition: database.txt:26
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
captcha-old.count
count
Definition: captcha-old.py:249
ImageGalleryBase
Image gallery.
Definition: ImageGalleryBase.php:32
ContextSource\msg
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: ContextSource.php:168
CategoryViewer\addFragmentToTitle
addFragmentToTitle( $title, $section)
Takes a title, and adds the fragment identifier that corresponds to the correct segment of the catego...
Definition: CategoryViewer.php:666
Category
Category objects are immutable, strictly speaking.
Definition: Category.php:31
CategoryViewer\columnList
static columnList( $articles, $articles_start_char)
Format a list of articles chunked by letter in a three-column list, ordered vertically.
Definition: CategoryViewer.php:559
CategoryViewer\getCountMessage
getCountMessage( $rescnt, $dbcnt, $type)
What to do if the category table conflicts with the number of results returned? This function says wh...
Definition: CategoryViewer.php:696
Title\getPrefixedText
getPrefixedText()
Get the prefixed title with spaces.
Definition: Title.php:1660
NS_FILE
const NS_FILE
Definition: Defines.php:70
CategoryViewer\getImageSection
getImageSection()
Definition: CategoryViewer.php:456
CategoryViewer\getPagesSection
getPagesSection()
Definition: CategoryViewer.php:426
CategoryViewer\getSubcategorySortChar
getSubcategorySortChar( $title, $sortkey)
Get the character to be used for sorting subcategories.
Definition: CategoryViewer.php:223
$linkRenderer
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:1985
CategoryViewer\$articles
string[] $articles
Definition: CategoryViewer.php:35
$res
$res
Definition: database.txt:21
ContextSource\getRequest
getRequest()
Definition: ContextSource.php:71
$last
$last
Definition: profileinfo.php:416
CategoryViewer\$imgsNoGallery_start_char
array $imgsNoGallery_start_char
Definition: CategoryViewer.php:50
CategoryViewer\clearCategoryState
clearCategoryState()
Definition: CategoryViewer.php:152
LinkCache\getSelectFields
static getSelectFields()
Fields that LinkCache needs to select.
Definition: LinkCache.php:206
Collation
Definition: Collation.php:29
CategoryViewer\__construct
__construct( $title, IContextSource $context, $from=[], $until=[], $query=[])
Definition: CategoryViewer.php:88
CategoryViewer\formatList
formatList( $articles, $articles_start_char, $cutoff=6)
Format a list of articles chunked by letter, either as a bullet list or a columnar format,...
Definition: CategoryViewer.php:528
php
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:35
CategoryViewer\finaliseCategoryState
finaliseCategoryState()
Definition: CategoryViewer.php:272
CategoryViewer\doCategoryQuery
doCategoryQuery()
Definition: CategoryViewer.php:287
$dbr
$dbr
Definition: testCompression.php:50
ContextSource\getLanguage
getLanguage()
Definition: ContextSource.php:128
Collation\singleton
static singleton()
Definition: Collation.php:36
CategoryViewer\$cat
Category $cat
Category object for this page.
Definition: CategoryViewer.php:74
CategoryViewer\getSectionPagingLinks
getSectionPagingLinks( $type)
Get the paging links for a section (subcats/pages/files), to go at the top and bottom of the output.
Definition: CategoryViewer.php:489
Title\getDBkey
getDBkey()
Get the main part with underscores.
Definition: Title.php:970
$html
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:1985
MWException
MediaWiki exception.
Definition: MWException.php:26
CategoryViewer\$articles_start_char
array $articles_start_char
Definition: CategoryViewer.php:38
CategoryViewer\$imgsNoGallery
array $imgsNoGallery
Definition: CategoryViewer.php:53
Title\getNamespace
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:994
CategoryViewer\$collation
Collation $collation
Definition: CategoryViewer.php:68
Title\newFromRow
static newFromRow( $row)
Make a Title object from a DB row.
Definition: Title.php:506
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
Title\getCategorySortkey
getCategorySortkey( $prefix='')
Returns the raw sort key to be used for categories, with the specified prefix.
Definition: Title.php:4427
ContextSource\getOutput
getOutput()
Definition: ContextSource.php:112
ContextSource
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
Definition: ContextSource.php:29
CategoryViewer\$flip
array $flip
Definition: CategoryViewer.php:62
$attribs
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:1985
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
NS_CATEGORY
const NS_CATEGORY
Definition: Defines.php:78
CategoryViewer\addSubcategoryObject
addSubcategoryObject(Category $cat, $sortkey, $pageLength)
Add a subcategory to the internal lists, using a Category object.
Definition: CategoryViewer.php:180
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
ContextSource\setContext
setContext(IContextSource $context)
Definition: ContextSource.php:55
CategoryViewer\getCategoryBottom
getCategoryBottom()
Definition: CategoryViewer.php:514
CategoryViewer\$from
array $from
Definition: CategoryViewer.php:29
Category\newFromRow
static newFromRow( $row, $title=null)
Factory function, for constructing a Category object from a result set.
Definition: Category.php:179
CategoryViewer\getHTML
getHTML()
Format the category data list.
Definition: CategoryViewer.php:110
CategoryViewer\$prevPage
array $prevPage
Definition: CategoryViewer.php:59
Category\newFromTitle
static newFromTitle( $title)
Factory function.
Definition: Category.php:146
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2162
CategoryViewer
Definition: CategoryViewer.php:24
CategoryViewer\$title
Title $title
Definition: CategoryViewer.php:65
CategoryViewer\generateLink
generateLink( $type, Title $title, $isRedirect, $html=null)
Definition: CategoryViewer.php:195
title
title
Definition: parserTests.txt:245
$ret
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:1985
IContextSource
Interface for objects which can provide a MediaWiki context on request.
Definition: IContextSource.php:53
Title
Represents a title within MediaWiki.
Definition: Title.php:40
Title\isRedirect
isRedirect( $flags=0)
Is this an article that is a redirect page? Uses link cache, adding it if necessary.
Definition: Title.php:2978
CategoryViewer\pagingLinks
pagingLinks( $first, $last, $type='')
Create paging links, as a helper method to getSectionPagingLinks().
Definition: CategoryViewer.php:624
$section
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:3053
IContextSource\getConfig
getConfig()
Get the site configuration.
as
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
Definition: distributors.txt:9
from
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
Definition: APACHE-LICENSE-2.0.txt:43
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:3053
CategoryViewer\$limit
int $limit
Definition: CategoryViewer.php:26
CategoryViewer\$showGallery
bool $showGallery
Definition: CategoryViewer.php:47
CategoryViewer\getSubcategorySection
getSubcategorySection()
Definition: CategoryViewer.php:402
ImageGalleryBase\factory
static factory( $mode=false, IContextSource $context=null)
Get a new image gallery.
Definition: ImageGalleryBase.php:103
CategoryViewer\addPage
addPage( $title, $sortkey, $pageLength, $isRedirect=false)
Add a miscellaneous page.
Definition: CategoryViewer.php:265
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
CategoryViewer\$nextPage
array $nextPage
Definition: CategoryViewer.php:56
CategoryViewer\$children_start_char
array $children_start_char
Definition: CategoryViewer.php:44
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
CategoryViewer\getCategoryTop
getCategoryTop()
Definition: CategoryViewer.php:392
CategoryViewer\addImage
addImage(Title $title, $sortkey, $pageLength, $isRedirect=false)
Add a page in the image namespace.
Definition: CategoryViewer.php:242
Title\getText
getText()
Get the text form (spaces not underscores) of the main part.
Definition: Title.php:952
$type
$type
Definition: testCompression.php:48
CategoryViewer\$until
array $until
Definition: CategoryViewer.php:32