summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Enum.php
blob: 6a4bdaea4efb72ecc6df27ea2da8d03af982e9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

namespace SMW;

/**
 * @license GNU GPL v2+
 * @since 3.0
 *
 * @author mwjames
 */
class Enum {

	/**
	 * Option that allows to suspend the page purge
	 */
	const OPT_SUSPEND_PURGE = 'smw.opt.suspend.purge';

	/**
	 * Indicates to purge an associated parser cache
	 */
	const PURGE_ASSOC_PARSERCACHE = 'smw.purge.assoc.parsercache';

	/**
	 * Indicates whether to proceed with the cache warming or not
	 */
	const SUSPEND_CACHE_WARMUP = 'smw.suspend.cache.warmup';

}