function state_flow_guard_schedule in State Machine 7.3
Same name and namespace in other branches
- 7.2 modules/state_flow/state_flow.module \state_flow_guard_schedule()
Guard condition callback
Parameters
string $event:
Return value
bool
File
- modules/
state_flow/ state_flow.module, line 742 - An implementation of node revision workflow for Drupal based on the State Machine system.
Code
function state_flow_guard_schedule($event) {
if (module_exists('state_flow_schedule')) {
return state_flow_schedule_guard_permission($event, 'schedule content workflow');
}
}