summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DescriptionProfileAnnotator.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DescriptionProfileAnnotator.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DescriptionProfileAnnotator.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DescriptionProfileAnnotator.php b/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DescriptionProfileAnnotator.php
new file mode 100644
index 00000000..6823eeec
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DescriptionProfileAnnotator.php
@@ -0,0 +1,65 @@
+<?php
+
+namespace SMW\Query\ProfileAnnotators;
+
+use SMW\DIProperty;
+use SMW\Query\Language\Description;
+use SMW\Query\ProfileAnnotator;
+use SMWDIBlob as DIBlob;
+use SMWDINumber as DINumber;
+
+/**
+ * @license GNU GPL v2+
+ * @since 1.9
+ *
+ * @author mwjames
+ */
+class DescriptionProfileAnnotator extends ProfileAnnotatorDecorator {
+
+ /**
+ * @var Description
+ */
+ private $description;
+
+ /**
+ * @since 1.9
+ *
+ * @param ProfileAnnotator $profileAnnotator
+ * @param Description $description
+ */
+ public function __construct( ProfileAnnotator $profileAnnotator, Description $description ) {
+ parent::__construct( $profileAnnotator );
+ $this->description = $description;
+ }
+
+ /**
+ * ProfileAnnotatorDecorator::addPropertyValues
+ */
+ protected function addPropertyValues() {
+ $this->addQueryString( $this->description->getQueryString() );
+ $this->addQuerySize( $this->description->getSize() );
+ $this->addQueryDepth( $this->description->getDepth() );
+ }
+
+ private function addQueryString( $queryString ) {
+ $this->getSemanticData()->addPropertyObjectValue(
+ new DIProperty( '_ASKST' ),
+ new DIBlob( $queryString )
+ );
+ }
+
+ private function addQuerySize( $size ) {
+ $this->getSemanticData()->addPropertyObjectValue(
+ new DIProperty( '_ASKSI' ),
+ new DINumber( $size )
+ );
+ }
+
+ private function addQueryDepth( $depth ) {
+ $this->getSemanticData()->addPropertyObjectValue(
+ new DIProperty( '_ASKDE' ),
+ new DINumber( $depth )
+ );
+ }
+
+}