You are here

function oa_river_theme in Open Atrium Core 7.2

Implements hook_theme()

File

modules/oa_river/oa_river.module, line 12

Code

function oa_river_theme() {
  return array(
    'views_view_fields__oa_recent_activity__panel_pane' => array(
      'template' => 'views-view-fields--oa-recent-activity--panel-pane',
      'base hook' => 'views_view_fields',
      'preprocess functions' => array(
        'template_preprocess',
        'template_preprocess_views_view_fields',
        'oa_core_preprocess_views_view_fields',
      ),
      'arguments' => array(
        'view' => NULL,
        'options' => NULL,
        'row' => NULL,
      ),
      'path' => drupal_get_path('module', 'oa_river') . '/templates',
    ),
  );
}