function workflow_actions_theme in Workflow 6.2
Same name and namespace in other branches
- 6 workflow_actions/workflow_actions.module \workflow_actions_theme()
Implementation of hook_theme().
File
- workflow_actions/
workflow_actions.module, line 36 - Provide actions and triggers for workflows. Why it's own module? Some sites prefer rules, some prefer actions, all prefer a lower code footprint and better performance. Additional creadit to gcassie ( http://drupal.org/user/80260 ) for the…
Code
function workflow_actions_theme() {
return array(
'workflow_actions_form' => array(
'arguments' => array(
'form' => array(),
),
),
);
}