interface WorkflowGroupManagerInterface in State Machine 8
Defines the interface for workflow_group plugin managers.
Hierarchy
- interface \Drupal\Component\Plugin\Discovery\DiscoveryInterface; interface \Drupal\Component\Plugin\Factory\FactoryInterface; interface \Drupal\Component\Plugin\Mapper\MapperInterface
- interface \Drupal\Component\Plugin\PluginManagerInterface
- interface \Drupal\state_machine\WorkflowGroupManagerInterface
- interface \Drupal\Component\Plugin\PluginManagerInterface
Expanded class hierarchy of WorkflowGroupManagerInterface
All classes that implement WorkflowGroupManagerInterface
1 file declares its use of WorkflowGroupManagerInterface
- WorkflowManagerCacheTest.php in tests/
src/ Unit/ WorkflowManagerCacheTest.php
File
- src/
WorkflowGroupManagerInterface.php, line 10
Namespace
Drupal\state_machineView source
interface WorkflowGroupManagerInterface extends PluginManagerInterface {
/**
* Gets the definitions filtered by entity type.
*
* @param string $entity_type_id
* The entity type ID.
*
* @return array
* The definitions.
*/
public function getDefinitionsByEntityType($entity_type_id = NULL);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DiscoveryInterface:: |
public | function | Gets a specific plugin definition. | 4 |
DiscoveryInterface:: |
public | function | Gets the definition of all plugins for this type. | 3 |
DiscoveryInterface:: |
public | function | Indicates if a specific plugin definition exists. | 2 |
FactoryInterface:: |
public | function | Creates a pre-configured instance of a plugin. | 7 |
MapperInterface:: |
public | function | Gets a preconfigured instance of a plugin. | 4 |
WorkflowGroupManagerInterface:: |
public | function | Gets the definitions filtered by entity type. | 1 |