function workbench_theme in Workbench 7
Implements hook_theme().
Provides a theme function for use with the RenderAPI that uses the #title and #attributes properties of a render array, if they're present.
File
- ./
workbench.module, line 178 - Workbench module file for editorial workspaces.
Code
function workbench_theme($existing, $type, $theme, $path) {
return array(
'workbench_element' => array(
'render element' => 'element',
'file' => 'workbench.theme.inc',
),
);
}