2016-02-05 06:45:46 +00:00
|
|
|
<?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 {
|
|
|
|
|
2017-04-17 13:11:25 +00:00
|
|
|
const NEVER = 0;
|
2016-02-05 06:45:46 +00:00
|
|
|
|
2017-04-17 13:11:25 +00:00
|
|
|
const ALWAYS = 10;
|
2016-02-05 06:45:46 +00:00
|
|
|
|
2017-04-17 13:11:25 +00:00
|
|
|
const CATEGORIES = 20;
|
2016-02-05 06:45:46 +00:00
|
|
|
|
2017-04-17 13:11:25 +00:00
|
|
|
const AUTO = 30;
|
2016-02-05 06:45:46 +00:00
|
|
|
|
|
|
|
}
|