summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Query/PrintRequestFactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Query/PrintRequestFactory.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Query/PrintRequestFactory.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Query/PrintRequestFactory.php b/www/wiki/extensions/SemanticMediaWiki/src/Query/PrintRequestFactory.php
new file mode 100644
index 00000000..2d60b6f6
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Query/PrintRequestFactory.php
@@ -0,0 +1,65 @@
+<?php
+
+namespace SMW\Query;
+
+use SMW\DataValueFactory;
+use SMW\DIProperty;
+use SMWPropertyValue as PropertyValue;
+use Title;
+
+/**
+ * @license GNU GPL v2+
+ * @since 2.1
+ *
+ * @author mwjames
+ */
+class PrintRequestFactory {
+
+ /**
+ * @since 2.1
+ *
+ * @param DIProperty $property
+ *
+ * @return PrintRequest
+ */
+ public function newFromProperty( DIProperty $property ) {
+
+ $propertyValue = DataValueFactory::getInstance()->newDataValueByType( PropertyValue::TYPE_ID );
+ $propertyValue->setDataItem( $property );
+
+ $instance = new PrintRequest(
+ PrintRequest::PRINT_PROP,
+ $propertyValue->getWikiValue(),
+ $propertyValue
+ );
+
+ return $instance;
+ }
+
+ /**
+ * @see PrintRequest::newFromText
+ *
+ * @since 2.4
+ *
+ * @param string $text
+ * @param $showMode = false
+ *
+ * @return PrintRequest|null
+ */
+ public function newFromText( $text, $showMode = false ) {
+ return PrintRequest::newFromText( $text, $showMode );
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @param string $label
+ * @param array $parameters
+ *
+ * @return PrintRequest
+ */
+ public function newThisPrintRequest( $label = '', array $parameters = [] ) {
+ return new PrintRequest( PrintRequest::PRINT_THIS, $label, null, false, $parameters );
+ }
+
+}