Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / StreamWrapper / PhpFileLibrariesStream.php
diff --git a/web/modules/contrib/libraries/src/StreamWrapper/PhpFileLibrariesStream.php b/web/modules/contrib/libraries/src/StreamWrapper/PhpFileLibrariesStream.php
new file mode 100644 (file)
index 0000000..a493385
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+
+namespace Drupal\libraries\StreamWrapper;
+
+use Drupal\Core\StreamWrapper\LocalStream;
+
+/**
+ * Provides a stream wrapper for PHP file libraries.
+ *
+ * Can be used with the 'php-file://' scheme, for example
+ * 'php-file-library://guzzle/src/functions_include.php'.
+ */
+class PhpFileLibrariesStream extends LocalStream {
+
+  use LocalHiddenStreamTrait;
+  use PrivateStreamTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getName() {
+    return t('PHP library files');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getDescription() {
+    return t('Provides access to PHP library files.');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getDirectoryPath() {
+    // @todo Provide support for site-specific directories, etc.
+    return 'sites/all/libraries';
+  }
+
+}