DevelDumperPluginManagerInterface.php 585 B

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