mediawiki-extensions-Catego.../CategoryTreePage.php

129 lines
4.1 KiB
PHP

<?php
/**
* Special page for the CategoryTree extension, an AJAX based gadget
* to display the category structure of a wiki
*
* @addtogroup Extensions
* @author Daniel Kinzler, brightbyte.de
* @copyright © 2006 Daniel Kinzler
* @license GNU General Public Licence 2.0 or later
*/
if( !defined( 'MEDIAWIKI' ) ) {
echo( "This file is part of an extension to the MediaWiki software and cannot be used standalone.\n" );
die( 1 );
}
class CategoryTreePage extends SpecialPage {
var $target = '';
var $tree = NULL;
/**
* Constructor
*/
function __construct() {
global $wgOut;
SpecialPage::SpecialPage( 'CategoryTree', '', true );
wfLoadExtensionMessages( 'CategoryTree' );
}
function getOption( $name ) {
global $wgCategoryTreeDefaultOptions;
if ( $this->tree ) return $this->tree->getOption( $name );
else return $wgCategoryTreeDefaultOptions[$name];
}
/**
* Main execution function
* @param $par Parameters passed to the page
*/
function execute( $par ) {
global $wgRequest, $wgOut, $wgCategoryTreeDefaultOptions, $wgCategoryTreeSpecialPageOptions;
$this->setHeaders();
if ( $par ) $this->target = $par;
else $this->target = $wgRequest->getVal( 'target', wfMsg( 'rootcategory') );
$this->target = trim( $this->target );
#HACK for undefined root category
if ( $this->target == '<rootcategory>' || $this->target == '&lt;rootcategory&gt;' ) $this->target = NULL;
$options = array();
# grab all known options from the request. Normalization is done by the CategoryTree class
foreach ( $wgCategoryTreeDefaultOptions as $option => $default ) {
if ( isset( $wgCategoryTreeSpecialPageOptions[$option] ) )
$default = $wgCategoryTreeSpecialPageOptions[$option];
$options[$option] = $wgRequest->getVal( $option, $default );
}
$this->tree = new CategoryTree( $options );
$wgOut->addWikiText( wfMsgNoTrans( 'categorytree-header' ) );
$wgOut->addHtml( $this->makeInputForm() );
if( $this->target !== '' && $this->target !== NULL ) {
CategoryTree::setHeaders( $wgOut );
$title = CategoryTree::makeTitle( $this->target );
if ( $title && $title->getArticleID() ) {
$html = Xml::openElement( 'div', array( 'class' => 'CategoryTreeParents' ) );
$html .= wfMsg( 'categorytree-parents' ) . ': ';
$parents = $this->tree->renderParents( $title );
if ( $parents == '' ) {
$html .= wfMsg( 'categorytree-nothing-found' );
} else {
$html .= $parents;
}
$html .= Xml::closeElement( 'div' );
$html .= Xml::openElement( 'div', array( 'class' => 'CategoryTreeResult' ) );
$html .= $this->tree->renderNode( $title, 1 ) .
$html .= Xml::closeElement( 'div' );
$wgOut->addHtml( $html );
}
else {
$wgOut->addHtml( Xml::openElement( 'div', array( 'class' => 'CategoryTreeNotice' ) ) );
$wgOut->addWikiText( wfMsg( 'categorytree-not-found' , $this->target ) );
$wgOut->addHtml( Xml::closeElement( 'div' ) );
}
}
}
/**
* Input form for entering a category
*/
function makeInputForm() {
global $wgScript;
$thisTitle = Title::makeTitle( NS_SPECIAL, $this->getName() );
$mode = $this->getOption('mode');
$form = Xml::openElement( 'form', array( 'name' => 'categorytree', 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-categorytree-form' ) ) .
Xml::openElement( 'fieldset' ) .
Xml::element( 'legend', null, wfMsg( 'categorytree-legend' ) ) .
Xml::hidden( 'title', $thisTitle->getPrefixedDbKey() ) .
Xml::inputLabel( wfMsg( 'categorytree-category' ), 'target', 'target', 20, $this->target ) . ' ' .
Xml::openElement( 'select', array( 'name' => 'mode' ) ) .
Xml::option( wfMsg( 'categorytree-mode-categories' ), 'categories', $mode == CT_MODE_CATEGORIES ? true : false ) .
Xml::option( wfMsg( 'categorytree-mode-pages' ), 'pages', $mode == CT_MODE_PAGES ? true : false ) .
Xml::option( wfMsg( 'categorytree-mode-all' ), 'all', $mode == CT_MODE_ALL ? true : false ) .
Xml::closeElement( 'select' ) . ' ' .
Xml::submitButton( wfMsg( 'categorytree-go' ), array( 'name' => 'dotree' ) ) .
Xml::closeElement( 'fieldset' ) .
Xml::closeElement( 'form' );
return $form;
}
}