Version 1
[yaffs-website] / web / core / modules / outside_in / src / OutsideInManagerInterface.php
diff --git a/web/core/modules/outside_in/src/OutsideInManagerInterface.php b/web/core/modules/outside_in/src/OutsideInManagerInterface.php
new file mode 100644 (file)
index 0000000..684adb3
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\outside_in;
+
+/**
+ * Provides an interface for managing information related to Outside-In.
+ */
+interface OutsideInManagerInterface {
+
+  /**
+   * Determines if the Settings Tray logic should be run on the current page.
+   *
+   * @return bool
+   *   TRUE if the Settings Tray logic should be run.
+   */
+  public function isApplicable();
+
+}