You are here

function oa_users_theme in Open Atrium Core 7.2

Implements hook_theme()

File

modules/oa_users/oa_users.module, line 285

Code

function oa_users_theme() {
  $path = drupal_get_path('module', 'oa_users') . '/templates';
  return array(
    'oa_users_submitted' => array(
      'template' => 'oa-users-submitted',
      'arguments' => array(
        'userlink' => '',
        'date' => '',
        'picture' => '',
        'label' => '',
        'onlabel' => '',
        'bylabel' => '',
      ),
      'path' => $path,
    ),
    'oa_members_toolbar' => array(
      'template' => 'oa-members-toolbar',
      'path' => $path,
    ),
  );
}