
| Current Path : /var/www/html/store/web/modules/contrib/state_machine/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store/web/modules/contrib/state_machine/src/WorkflowGroupManagerInterface.php |
<?php
namespace Drupal\state_machine;
use Drupal\Component\Plugin\PluginManagerInterface;
/**
* Defines the interface for workflow_group plugin managers.
*/
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);
}