summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Rule/Rule.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Rule/Rule.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Rule/Rule.php101
1 files changed, 101 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Rule/Rule.php b/www/wiki/extensions/SemanticMediaWiki/src/Rule/Rule.php
new file mode 100644
index 00000000..3722bb28
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Rule/Rule.php
@@ -0,0 +1,101 @@
+<?php
+
+namespace SMW\Rule;
+
+/**
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class Rule {
+
+ /**
+ * @var string
+ */
+ private $name = '';
+
+ /**
+ * @var []
+ */
+ private $if = [];
+
+ /**
+ * @var []
+ */
+ private $then = [];
+
+ /**
+ * @var []
+ */
+ private $dependencies = [];
+
+ /**
+ * @since 3.0
+ *
+ * @param string $name
+ */
+ public function __construct( $name, array $if, array $then, array $dependencies = [] ) {
+ $this->name = $name;
+ $this->if = $if;
+ $this->then = $then;
+ $this->dependencies = $dependencies;
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return string
+ */
+ public function getName() {
+ return $this->name;
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return []
+ */
+ public function getDependencies() {
+ return $this->dependencies;
+ }
+
+ /**
+ * @note < 7.1 unexpected 'if' (T_IF), expecting identifier (T_STRING) ...
+ *
+ * @since 3.0
+ *
+ * @return []
+ */
+ public function when( $key = null ) {
+
+ if ( $key === null ) {
+ return $this->if;
+ }
+
+ if ( isset( $this->if[$key] ) ) {
+ return $this->if[$key];
+ }
+
+ return [];
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return []
+ */
+ public function then( $key = null ) {
+
+ if ( $key === null ) {
+ return $this->then;
+ }
+
+ if ( isset( $this->then[$key] ) ) {
+ return $this->then[$key];
+ }
+
+ return [];
+ }
+
+}