You are here

function pm_theme in Drupal PM (Project Management) 8

Same name and namespace in other branches
  1. 7.3 pm.module \pm_theme()
  2. 7 pm.module \pm_theme()
  3. 7.2 pm.module \pm_theme()
  4. 4.x pm.module \pm_theme()

Implements hook_theme().

File

./pm.module, line 125
Main module file for the Project Management module.

Code

function pm_theme() {
  return array(
    'pm_dashboard' => array(
      'file' => 'pm.theme.inc',
      'variables' => array(
        'links' => array(),
      ),
    ),
    'pm_dashboard_block' => array(
      'file' => 'pm.theme.inc',
      'variables' => array(
        'links' => array(),
      ),
    ),
    'pm_dashboard_link' => array(
      'file' => 'pm.theme.inc',
      'variables' => array(
        'link_blocks' => array(),
      ),
    ),
    'pm_list_default' => array(
      'template' => 'pm-list-default',
      'variables' => array(
        'value' => NULL,
        'key' => NULL,
        'field_name' => NULL,
      ),
    ),
  );
}