summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/StatusCodeProfileAnnotator.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/StatusCodeProfileAnnotator.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/StatusCodeProfileAnnotator.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/StatusCodeProfileAnnotator.php b/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/StatusCodeProfileAnnotator.php
new file mode 100644
index 00000000..8afc5ce4
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/StatusCodeProfileAnnotator.php
@@ -0,0 +1,51 @@
+<?php
+
+namespace SMW\Query\ProfileAnnotators;
+
+use SMW\DIProperty;
+use SMW\Query\ProfileAnnotator;
+use SMWDINumber as DINumber;
+
+/**
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class StatusCodeProfileAnnotator extends ProfileAnnotatorDecorator {
+
+ /**
+ * @var array
+ */
+ private $statusCodes = [];
+
+ /**
+ * @since 3.0
+ *
+ * @param ProfileAnnotator $profileAnnotator
+ * @param array $statusCodes
+ */
+ public function __construct( ProfileAnnotator $profileAnnotator, array $statusCodes = [] ) {
+ parent::__construct( $profileAnnotator );
+ $this->statusCodes = $statusCodes;
+ }
+
+ /**
+ * ProfileAnnotatorDecorator::addPropertyValues
+ */
+ protected function addPropertyValues() {
+ if ( $this->statusCodes !== [] ) {
+ foreach ( $this->statusCodes as $statusCode ) {
+ $this->addStatusCodeAnnotation( $statusCode );
+ }
+ }
+ }
+
+ private function addStatusCodeAnnotation( $statusCode ) {
+ $this->getSemanticData()->addPropertyObjectValue(
+ new DIProperty( '_ASKCO' ),
+ new DINumber( $statusCode )
+ );
+ }
+
+}