mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-30 11:06:55 +00:00
8e51ea4e3a
Change-Id: I308523aa764594798d72974fb79e19aef6c3f342
23 lines
372 B
PHP
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;
|
|
|
|
}
|