Version 1
[yaffs-website] / web / modules / contrib / devel / src / DevelDumperPluginManagerInterface.php
1 <?php
2
3 namespace Drupal\devel;
4
5 use Drupal\Component\Plugin\FallbackPluginManagerInterface;
6 use Drupal\Component\Plugin\PluginManagerInterface;
7
8 /**
9  * Interface DevelDumperPluginManagerInterface.
10  */
11 interface DevelDumperPluginManagerInterface extends PluginManagerInterface, FallbackPluginManagerInterface {
12
13   /**
14    * Checks if plugin has a definition and is supported.
15    *
16    * @param string $plugin_id
17    *   The ID of the plugin to check.
18    *
19    * @return bool
20    *   TRUE if the plugin is supported, FALSE otherwise.
21    */
22   public function isPluginSupported($plugin_id);
23
24 }