
| Current Path : /var/www/html/store/web/modules/contrib/state_machine/ |
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/state_machine.api.php |
<?php
/**
* @file
* Hooks provided by the State Machine module.
*/
/**
* @addtogroup hooks
* @{
*/
/**
* Alter workflows.
*
* @param array $workflows
* Workflow definitions, keyed by plugin ID.
*/
function hook_workflows_alter(array &$workflows) {
$workflows['default']['label'] = 'Altered label';
}
/**
* Alter workflow groups.
*
* @param array $workflow_groups
* Workflow group definitions, keyed by plugin ID.
*/
function hook_workflow_groups_alter(array &$workflow_groups) {
$workflow_groups['default']['label'] = 'Altered label';
}
/**
* @} End of "addtogroup hooks".
*/