You are here

public function ArrayPluginDefinitionDecorator::getOperationsProviderClass in Plugin 8.2

Gets the operations provider class.

Return value

string|null The fully qualified name of a class that implements \Drupal\plugin\PluginOperationsProviderInterface or null.

Overrides PluginOperationsProviderDefinitionInterface::getOperationsProviderClass

File

src/PluginDefinition/ArrayPluginDefinitionDecorator.php, line 370

Class

ArrayPluginDefinitionDecorator
Provides a plugin definition based on an array.

Namespace

Drupal\plugin\PluginDefinition

Code

public function getOperationsProviderClass() {
  return isset($this->arrayDefinition['operations_provider']) ? $this->arrayDefinition['operations_provider'] : NULL;
}