You are here

function pmperson_theme in Drupal PM (Project Management) 7

Implements hook_theme().

File

pmperson/pmperson.module, line 147

Code

function pmperson_theme() {
  return array(
    'pmperson_people' => array(
      'file' => 'pmperson.theme.inc',
      'arguments' => array(
        'header',
        'people',
      ),
    ),
    'pmperson_view' => array(
      'file' => 'pmperson.theme.inc',
      'variables' => array(
        'node',
        'view_mode',
      ),
    ),
  );
}