MediaWiki REL1_33
CategoryTreeCategoryViewer.php
Go to the documentation of this file.
1<?php
23
28
32 private function getCategoryTree() {
34
35 if ( !isset( $this->categorytree ) ) {
38 }
39
40 $this->categorytree = new CategoryTree( $wgCategoryTreeCategoryPageOptions );
41 }
42
44 }
45
52 public function addSubcategoryObject( Category $cat, $sortkey, $pageLength ) {
53 $title = $cat->getTitle();
54
55 if ( $this->getRequest()->getCheck( 'notree' ) ) {
56 parent::addSubcategoryObject( $cat, $sortkey, $pageLength );
57 return;
58 }
59
60 $tree = $this->getCategoryTree();
61
62 $this->children[] = $tree->renderNodeInfo( $title, $cat );
63
64 $this->children_start_char[] = $this->getSubcategorySortChar( $title, $sortkey );
65 }
66
70 public function clearCategoryState() {
71 $this->child_cats = [];
72 parent::clearCategoryState();
73 }
74
78 public function finaliseCategoryState() {
79 if ( $this->flip ) {
80 $this->child_cats = array_reverse( $this->child_cats );
81 }
82 parent::finaliseCategoryState();
83 }
84}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
addSubcategoryObject(Category $cat, $sortkey, $pageLength)
Add a subcategory to the internal lists.
Core functions for the CategoryTree extension, an AJAX based gadget to display the category structure...
static setHeaders(OutputPage $outputPage)
Add ResourceLoader modules to the OutputPage object.
Category $cat
Category object for this page.
getSubcategorySortChar( $title, $sortkey)
Get the character to be used for sorting subcategories.
Category objects are immutable, strictly speaking.
Definition Category.php:31