summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Enum.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Enum.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Enum.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Enum.php b/www/wiki/extensions/SemanticMediaWiki/src/Enum.php
new file mode 100644
index 00000000..6a4bdaea
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Enum.php
@@ -0,0 +1,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';
+
+}