function workflow_cleanup_theme in Workflow 7
Same name and namespace in other branches
- 7.2 workflow_cleanup/workflow_cleanup.module \workflow_cleanup_theme()
Implements hook_theme().
File
- workflow_cleanup/
workflow_cleanup.module, line 27 - Cleans up Workflow cruft that may build up over time.
Code
function workflow_cleanup_theme() {
return array(
'workflow_cleanup_form' => array(
'render element' => 'form',
),
);
}