mediawiki-extensions-Catego.../includes/CategoryTreeHidePrefix.php
Kunal Mehta 8e51ea4e3a Move classes into includes/
Change-Id: I308523aa764594798d72974fb79e19aef6c3f342
2018-02-08 22:23:07 -08:00

24 lines
403 B
PHP

<?php
/**
* Constants for use with the hideprefix option,
* defining when the namespace prefix should be hidden.
*
* @file
* @ingroup Extensions
* @author Daniel Kinzler, brightbyte.de
* @copyright © 2006 Daniel Kinzler
* @license GNU General Public Licence 2.0 or later
*/
class CategoryTreeHidePrefix {
const NEVER = 0;
const ALWAYS = 10;
const CATEGORIES = 20;
const AUTO = 30;
}