You are here

interface PluginOperationsProviderDefinitionInterface in Plugin 8.2

Defines a plugin definition that includes an operations provider.

Hierarchy

Expanded class hierarchy of PluginOperationsProviderDefinitionInterface

All classes that implement PluginOperationsProviderDefinitionInterface

2 files declare their use of PluginOperationsProviderDefinitionInterface
ListPlugins.php in src/Controller/ListPlugins.php
ListPluginsTest.php in tests/src/Unit/Controller/ListPluginsTest.php

File

src/PluginDefinition/PluginOperationsProviderDefinitionInterface.php, line 10

Namespace

Drupal\plugin\PluginDefinition
View source
interface PluginOperationsProviderDefinitionInterface extends PluginDefinitionInterface {

  /**
   * Sets the operations provider class.
   *
   * @param string $class
   *   The fully qualified name of a class that implements
   *   \Drupal\plugin\PluginOperationsProviderInterface.
   *
   * @return $this
   *
   * @throws \InvalidArgumentException
   */
  public function setOperationsProviderClass($class);

  /**
   * Gets the operations provider class.
   *
   * @return string|null
   *   The fully qualified name of a class that implements
   *   \Drupal\plugin\PluginOperationsProviderInterface or null.
   */
  public function getOperationsProviderClass();

}

Members

Namesort descending Modifiers Type Description Overrides
PluginDefinitionInterface::getClass public function Gets the class. 1
PluginDefinitionInterface::getId public function Gets the plugin ID. 2
PluginDefinitionInterface::getProvider public function Gets the plugin provider. Overrides PluginDefinitionInterface::getProvider 2
PluginDefinitionInterface::id public function Gets the unique identifier of the plugin. 1
PluginDefinitionInterface::mergeDefaultDefinition public function Merges another definition into this one, using the other for defaults.
PluginDefinitionInterface::mergeOverrideDefinition public function Merges another definition into this one, using the other for overrides.
PluginDefinitionInterface::setClass public function Sets the class. 1
PluginDefinitionInterface::setId public function Sets the plugin ID. 2
PluginDefinitionInterface::setProvider public function Sets the plugin provider. 2
PluginOperationsProviderDefinitionInterface::getOperationsProviderClass public function Gets the operations provider class. 1
PluginOperationsProviderDefinitionInterface::setOperationsProviderClass public function Sets the operations provider class. 1