You are here

function oa_teams_theme in Open Atrium Core 7.2

Implements hook_theme().

File

modules/oa_teams/oa_teams.module, line 44

Code

function oa_teams_theme() {
  $path = drupal_get_path('module', 'oa_teams') . '/templates';
  return array(
    'oa_teams_members' => array(
      'template' => 'oa-teams-members',
      'path' => $path,
    ),
  );
}