function workflow_views_arguments in Workflow 5.2
Same name and namespace in other branches
- 5 workflow.module \workflow_views_arguments()
Implementation of hook_views_arguments()
File
- ./
workflow.module, line 2091
Code
function workflow_views_arguments() {
$arguments = array(
'workflow_state' => array(
'name' => t('Workflow: state'),
'handler' => 'workflow_handler_arg_sid',
'help' => t('The work flow argument allows users to filter a view by workflow state.'),
),
);
return $arguments;
}