Version 1
[yaffs-website] / web / core / lib / Drupal / Component / Plugin / Discovery / DiscoveryCachedTrait.php
diff --git a/web/core/lib/Drupal/Component/Plugin/Discovery/DiscoveryCachedTrait.php b/web/core/lib/Drupal/Component/Plugin/Discovery/DiscoveryCachedTrait.php
new file mode 100644 (file)
index 0000000..f391753
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+
+namespace Drupal\Component\Plugin\Discovery;
+
+trait DiscoveryCachedTrait {
+
+  use DiscoveryTrait;
+
+  /**
+   * Cached definitions array.
+   *
+   * @var array
+   */
+  protected $definitions;
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getDefinition($plugin_id, $exception_on_invalid = TRUE) {
+    // Fetch definitions if they're not loaded yet.
+    if (!isset($this->definitions)) {
+      $this->getDefinitions();
+    }
+
+    return $this->doGetDefinition($this->definitions, $plugin_id, $exception_on_invalid);
+  }
+
+}