mediawiki-extensions-Catego.../CategoryPageSubclass.php

145 lines
4 KiB
PHP
Raw Normal View History

<?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;
2008-02-04 09:22:12 +00:00
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;
2008-02-04 09:22:12 +00:00
$title = $cat->getTitle();
if ( $wgRequest->getCheck( 'notree' ) ) {
return parent::addSubcategoryObject( $cat, $sortkey, $pageLength );
}
2008-02-04 09:22:12 +00:00
/*if ( ! $GLOBALS['wgCategoryTreeUnifiedView'] ) {
$this->child_cats[] = $cat;
return parent::addSubcategory( $cat, $sortkey, $pageLength );
}*/
2008-02-04 09:22:12 +00:00
$tree = $this->getCategoryTree();
2008-02-04 09:22:12 +00:00
$this->children[] = $tree->renderNodeInfo( $title, $cat );
$this->children_start_char[] = $this->getSubcategorySortChar( $title, $sortkey );
}
2008-02-04 09:22:12 +00:00
/*
# this is a pain to keep this consistent, and no one should be using wgCategoryTreeUnifiedView = false anyway.
function getSubcategorySection() {
global $wgOut, $wgRequest, $wgCookiePrefix;
if ( $wgRequest->getCheck( 'notree' ) ) {
return parent::getSubcategorySection();
}
2008-02-04 09:22:12 +00:00
if ( $GLOBALS['wgCategoryTreeUnifiedView'] ) {
return parent::getSubcategorySection();
}
2008-02-04 09:22:12 +00:00
if( count( $this->children ) == 0 ) {
return '';
}
2008-02-04 09:22:12 +00:00
$r = '<h2>' . wfMsg( 'subcategories' ) . "</h2>\n" .
wfMsgExt( 'subcategorycount', array( 'parse' ), count( $this->children) );
# Use a cookie to save the user's last selection, so that AJAX doesn't
# keep coming back to haunt them.
#
2008-02-04 09:22:12 +00:00
# FIXME: This doesn't work very well with IMS handling in
# OutputPage::checkLastModified, because when the cookie changes, the
# category pages are not, at present, invalidated.
$cookieName = $wgCookiePrefix.'ShowSubcatAs';
$cookieVal = @$_COOKIE[$cookieName];
2006-09-01 17:33:14 +00:00
$reqShowAs = $wgRequest->getVal( 'showas' );
if ( $reqShowAs == 'list' ) {
$showAs = 'list';
2006-09-01 17:33:14 +00:00
} elseif ( $reqShowAs == 'tree' ) {
$showAs = 'tree';
} elseif ( $cookieVal == 'list' || $cookieVal == 'tree' ) {
$showAs = $cookieVal;
} else {
$showAs = 'tree';
}
2006-09-01 17:33:14 +00:00
if ( !is_null( $reqShowAs ) ) {
global $wgCookieExpiration, $wgCookiePath, $wgCookieDomain, $wgCookieSecure;
$exp = time() + $wgCookieExpiration;
2006-09-01 17:33:14 +00:00
setcookie( $cookieName, $showAs, $exp, $wgCookiePath, $wgCookieDomain, $wgCookieSecure );
}
2008-02-04 09:22:12 +00:00
if ( $showAs == 'tree' && count( $this->children ) > $this->limit ) {
2008-02-04 09:22:12 +00:00
# Tree doesn't page properly
$showAs = 'list';
$r .= self::msg( 'too-many-subcats' );
} else {
$sk = $this->getSkin();
$r .= '<p>' .
$this->makeShowAsLink( 'tree', $showAs ) .
' | ' .
$this->makeShowAsLink( 'list', $showAs ) .
'</p>';
}
2008-02-04 09:22:12 +00:00
if ( $showAs == 'list' ) {
$r .= $this->formatList( $this->children, $this->children_start_char );
} else {
$ct = $this->getCategoryTree();
foreach ( $this->child_cats as $cat ) {
$r .= $ct->renderNodeInfo( $cat->getTitle(), $cat );
}
}
return $r;
}
2008-02-04 09:22:12 +00:00
function makeShowAsLink( $targetValue, $currentValue ) {
$msg = htmlspecialchars( CategoryTree::msg( "show-$targetValue" ) );
if ( $targetValue == $currentValue ) {
return "<strong>$msg</strong>";
} else {
return $this->getSkin()->makeKnownLinkObj( $this->title, $msg, "showas=$targetValue" );
}
} */
function clearCategoryState() {
$this->child_cats = array();
parent::clearCategoryState();
}
2008-02-04 09:22:12 +00:00
function finaliseCategoryState() {
if( $this->flip ) {
$this->child_cats = array_reverse( $this->child_cats );
}
parent::finaliseCategoryState();
}
}