You are here

function spaces_dashboard_theme in Spaces 7.3

Same name and namespace in other branches
  1. 6.3 spaces_dashboard/spaces_dashboard.module \spaces_dashboard_theme()
  2. 7 spaces_dashboard/spaces_dashboard.module \spaces_dashboard_theme()

Implements hook_theme().

File

spaces_dashboard/spaces_dashboard.module, line 8

Code

function spaces_dashboard_theme() {
  $items = array();
  $items['spaces_dashboard_admin_form'] = array(
    'render element' => 'form',
    'template' => 'spaces-dashboard-admin-form',
    'path' => drupal_get_path('module', 'spaces_dashboard') . '/theme',
    'file' => 'theme.inc',
  );
  $items['spaces_dashboard_admin_region_form'] = array(
    'render element' => 'form',
    'template' => 'spaces-dashboard-admin-region-form',
    'path' => drupal_get_path('module', 'spaces_dashboard') . '/theme',
    'file' => 'theme.inc',
  );
  return $items;
}