function workspace_theme in Workspace 7
Same name and namespace in other branches
- 8 workspace.module \workspace_theme()
- 6 workspace.module \workspace_theme()
Implements hook_theme().
File
- ./
workspace.module, line 891 - Presents a user-centric view of content.
Code
function workspace_theme() {
return array(
'workspace_list' => array(
'variables' => array(
'header' => array(),
'rows' => array(),
),
),
'workspace_add_form' => array(
'render element' => 'form',
),
'workspace_list_form' => array(
'render element' => 'form',
),
'workspace_configure_form' => array(
'render element' => 'form',
),
);
}