mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-15 12:00:44 +00:00
65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php
|
|
|
|
class CategoryTreeCategoryPage extends CategoryPage {
|
|
function closeShowCategory() {
|
|
global $wgOut, $wgRequest;
|
|
$from = $wgRequest->getVal( 'from' );
|
|
$until = $wgRequest->getVal( 'until' );
|
|
|
|
$viewer = new CategoryTreeCategoryViewer( $this->mTitle, $from, $until );
|
|
$wgOut->addHTML( $viewer->getHTML() );
|
|
}
|
|
}
|
|
|
|
class CategoryTreeCategoryViewer extends CategoryViewer {
|
|
var $child_cats;
|
|
|
|
function getCategoryTree() {
|
|
global $wgOut, $wgCategoryTreeCategoryPageOptions, $wgCategoryTreeForceHeaders;
|
|
|
|
if ( ! isset($this->categorytree) ) {
|
|
if ( !$wgCategoryTreeForceHeaders ) CategoryTree::setHeaders( $wgOut );
|
|
|
|
$this->categorytree = new CategoryTree( $wgCategoryTreeCategoryPageOptions );
|
|
}
|
|
|
|
return $this->categorytree;
|
|
}
|
|
|
|
/**
|
|
* Add a subcategory to the internal lists
|
|
*/
|
|
function addSubcategoryObject( $cat, $sortkey, $pageLength ) {
|
|
global $wgContLang, $wgOut, $wgRequest;
|
|
|
|
$title = $cat->getTitle();
|
|
|
|
if ( $wgRequest->getCheck( 'notree' ) ) {
|
|
return parent::addSubcategoryObject( $cat, $sortkey, $pageLength );
|
|
}
|
|
|
|
/*if ( ! $GLOBALS['wgCategoryTreeUnifiedView'] ) {
|
|
$this->child_cats[] = $cat;
|
|
return parent::addSubcategory( $cat, $sortkey, $pageLength );
|
|
}*/
|
|
|
|
$tree = $this->getCategoryTree();
|
|
|
|
$this->children[] = $tree->renderNodeInfo( $title, $cat );
|
|
|
|
$this->children_start_char[] = $this->getSubcategorySortChar( $title, $sortkey );
|
|
}
|
|
|
|
function clearCategoryState() {
|
|
$this->child_cats = array();
|
|
parent::clearCategoryState();
|
|
}
|
|
|
|
function finaliseCategoryState() {
|
|
if( $this->flip ) {
|
|
$this->child_cats = array_reverse( $this->child_cats );
|
|
}
|
|
parent::finaliseCategoryState();
|
|
}
|
|
}
|