
| Current Path : /var/www/html/store/web/modules/contrib/state_machine/src/Plugin/WorkflowGroup/ |
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/Plugin/WorkflowGroup/WorkflowGroup.php |
<?php
namespace Drupal\state_machine\Plugin\WorkflowGroup;
use Drupal\Core\Plugin\PluginBase;
/**
* Defines the class for workflow groups.
*/
class WorkflowGroup extends PluginBase implements WorkflowGroupInterface {
/**
* {@inheritdoc}
*/
public function getId() {
return $this->pluginDefinition['id'];
}
/**
* {@inheritdoc}
*/
public function getLabel() {
return $this->pluginDefinition['label'];
}
/**
* {@inheritdoc}
*/
public function getEntityTypeId() {
return $this->pluginDefinition['entity_type'];
}
/**
* {@inheritdoc}
*/
public function getWorkflowClass() {
return $this->pluginDefinition['workflow_class'];
}
}