summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandler.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandler.php131
1 files changed, 131 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandler.php b/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandler.php
new file mode 100644
index 00000000..0a8afbc1
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandler.php
@@ -0,0 +1,131 @@
+<?php
+
+namespace SMW\MediaWiki\Specials\Admin;
+
+use SMW\Message;
+use SMW\Store;
+use WebRequest;
+
+/**
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+abstract class TaskHandler {
+
+ /**
+ * Identifies an individual section to where the task is associated with.
+ */
+ const SECTION_SUPPLEMENT = 'section.supplement';
+ const SECTION_SCHEMA = 'section.schema';
+ const SECTION_DATAREPAIR = 'section.datarepair';
+ const SECTION_DEPRECATION ='section.deprecation';
+ const SECTION_SUPPORT ='section.support';
+
+ /**
+ * @var integer
+ */
+ private $enabledFeatures = 0;
+
+ /**
+ * @var Store
+ */
+ private $store;
+
+ /**
+ * @var boolean
+ */
+ protected $isApiTask = false;
+
+ /**
+ * @since 2.5
+ *
+ * @param integer $feature
+ *
+ * @return boolean
+ */
+ public function isEnabledFeature( $feature ) {
+ return ( ( (int)$this->enabledFeatures & $feature ) == $feature );
+ }
+
+ /**
+ * @since 2.5
+ *
+ * @param integer $enabledFeatures
+ */
+ public function setEnabledFeatures( $enabledFeatures ) {
+ $this->enabledFeatures = $enabledFeatures;
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @param Store $store
+ */
+ public function setStore( Store $store ) {
+ $this->store = $store;
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return Store
+ */
+ public function getStore() {
+ return $this->store;
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return string
+ */
+ public function getSection() {
+ return '';
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return boolean
+ */
+ public function isApiTask() {
+ return false;
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return boolean
+ */
+ public function hasAction() {
+ return false;
+ }
+
+ /**
+ * @since 2.5
+ *
+ * @return boolean
+ */
+ abstract public function isTaskFor( $task );
+
+ /**
+ * @since 2.5
+ *
+ * @return string
+ */
+ abstract public function getHtml();
+
+ /**
+ * @since 2.5
+ *
+ * @param WebRequest $webRequest
+ */
+ abstract public function handleRequest( WebRequest $webRequest );
+
+ protected function msg( $key, $type = Message::TEXT ) {
+ return Message::get( $key, $type, Message::USER_LANGUAGE );
+ }
+
+}