You are here

function spaces_dashboard_theme in Spaces 6.3

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

Implementation of hook_theme()

File

spaces_dashboard/spaces_dashboard.module, line 8

Code

function spaces_dashboard_theme() {
  $items = array();
  $items['spaces_dashboard_admin_form'] = array(
    'arguments' => array(
      'form' => array(),
    ),
    'file' => 'spaces_dashboard.admin.inc',
    'path' => drupal_get_path('module', 'spaces_dashboard'),
  );
  $items['spaces_dashboard_admin_region_form'] = array(
    'arguments' => array(
      'form' => array(),
    ),
    'file' => 'spaces_dashboard.admin.inc',
    'path' => drupal_get_path('module', 'spaces_dashboard'),
  );
  return $items;
}