function pm_theme in Drupal PM (Project Management) 4.x
Same name and namespace in other branches
- 8 pm.module \pm_theme()
- 7.3 pm.module \pm_theme()
- 7 pm.module \pm_theme()
- 7.2 pm.module \pm_theme()
Implements hook_theme().
File
- ./
pm.module, line 29 - Contains pm_board.module.
Code
function pm_theme() {
$theme = [];
$theme['pm_dashboard'] = [
'render element' => 'elements',
'template' => 'pm-dashboard',
'variables' => [
'items' => [],
],
];
return $theme;
}