You are here

interface PluginOperationsProviderProviderInterface in Plugin 8.2

Defines a class that can get operations providers for plugins.

Hierarchy

Expanded class hierarchy of PluginOperationsProviderProviderInterface

All classes that implement PluginOperationsProviderProviderInterface

File

src/PluginOperationsProviderProviderInterface.php, line 8

Namespace

Drupal\plugin
View source
interface PluginOperationsProviderProviderInterface {

  /**
   * Gets the plugin's operations provider.
   *
   * @param string $plugin_id
   *
   * @return \Drupal\plugin\PluginOperationsProviderInterface|null
   *   The operations provider or NULL if none is available.
   *
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  public function getOperationsProvider($plugin_id);

}

Members