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\PluginDefinitionCode
public function getOperationsProviderClass() {
return isset($this->arrayDefinition['operations_provider']) ? $this->arrayDefinition['operations_provider'] : NULL;
}