mediawiki-extensions-Catego.../CategoryTreeMode.php
Fomafix 8989d4428b Fix whitespaces
Change-Id: I592138cb4643ef5031cbe341bbbe5d9e78562d4c
2017-04-18 01:42:24 +00:00

23 lines
372 B
PHP

<?php
/**
* Constants for use with the mode, defining what should be shown in the tree.
*
* @file
* @ingroup Extensions
* @author Daniel Kinzler, brightbyte.de
* @copyright © 2006 Daniel Kinzler
* @license GNU General Public Licence 2.0 or later
*/
class CategoryTreeMode {
const CATEGORIES = 0;
const PAGES = 10;
const ALL = 20;
const PARENTS = 100;
}