684adb3f0dfd2452eaa6dbc13df01d4443cc53e5
[yaffs-website] / web / core / modules / outside_in / src / OutsideInManagerInterface.php
1 <?php
2
3 namespace Drupal\outside_in;
4
5 /**
6  * Provides an interface for managing information related to Outside-In.
7  */
8 interface OutsideInManagerInterface {
9
10   /**
11    * Determines if the Settings Tray logic should be run on the current page.
12    *
13    * @return bool
14    *   TRUE if the Settings Tray logic should be run.
15    */
16   public function isApplicable();
17
18 }