You are here

function pm_theme in Drupal PM (Project Management) 4.x

Same name and namespace in other branches
  1. 8 pm.module \pm_theme()
  2. 7.3 pm.module \pm_theme()
  3. 7 pm.module \pm_theme()
  4. 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;
}