You are here

function oa_core_theme in Open Atrium Core 7.2

Implements hook_theme()

File

includes/oa_core.theme.inc, line 10
Code for Theme functions for OpenAtrium spaces

Code

function oa_core_theme() {
  $path = drupal_get_path('module', 'oa_core') . '/templates';
  return array(
    'oa_core_members_widget' => array(
      'template' => 'oa-core-members-widget',
      'arguments' => array(
        'public' => NULL,
        'links' => array(),
      ),
      'path' => $path,
    ),
    'oa_core_summary' => array(
      'template' => 'oa-core-summary',
      'path' => $path,
    ),
    'oa_core_user_spaces' => array(
      'template' => 'oa-core-user-spaces',
      'path' => $path,
    ),
    'oa_core_node_token' => array(
      'template' => 'oa-core-node-token',
      'path' => $path,
    ),
    'views_view_fields__oa_user_spaces__full' => array(
      'template' => 'views-view-fields--oa-user-spaces--full',
      'base hook' => 'views_view_fields',
      'preprocess functions' => array(
        'template_preprocess',
        'template_preprocess_views_view_fields',
      ),
      'arguments' => array(
        'view' => NULL,
        'options' => NULL,
        'row' => NULL,
      ),
      'path' => $path,
    ),
  );
}