summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Importer/JsonContentIterator.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Importer/JsonContentIterator.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Importer/JsonContentIterator.php72
1 files changed, 72 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Importer/JsonContentIterator.php b/www/wiki/extensions/SemanticMediaWiki/src/Importer/JsonContentIterator.php
new file mode 100644
index 00000000..0fee90aa
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Importer/JsonContentIterator.php
@@ -0,0 +1,72 @@
+<?php
+
+namespace SMW\Importer;
+
+use ArrayIterator;
+
+/**
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class JsonContentIterator implements ContentIterator {
+
+ /**
+ * @var JsonImportContentsFileDirReader
+ */
+ private $jsonImportContentsFileDirReader;
+
+ /**
+ * @var string
+ */
+ private $description = '';
+
+ /**
+ * @since 2.5
+ *
+ * @param JsonImportContentsFileDirReader $jsonImportContentsFileDirReader
+ */
+ public function __construct( JsonImportContentsFileDirReader $jsonImportContentsFileDirReader ) {
+ $this->jsonImportContentsFileDirReader = $jsonImportContentsFileDirReader;
+ }
+
+ /**
+ * @since 2.5
+ *
+ * @param string $description
+ */
+ public function setDescription( $description ) {
+ $this->description = $description;
+ }
+
+ /**
+ * @since 2.5
+ *
+ * @return string
+ */
+ public function getDescription() {
+ return $this->description;
+ }
+
+ /**
+ * @since 2.5
+ *
+ * @return array
+ */
+ public function getErrors() {
+ return $this->jsonImportContentsFileDirReader->getErrors();
+ }
+
+ /**
+ * @see IteratorAggregate::getIterator
+ *
+ * @since 2.5
+ *
+ * @return Iterator
+ */
+ public function getIterator() {
+ return new ArrayIterator( $this->jsonImportContentsFileDirReader->getContentList() );
+ }
+
+}