mediawiki-extensions-Catego.../CategoryPageSubclass.php
2009-02-09 19:28:03 +00:00

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();
}
}