You are here

function spaces_ui_theme in Spaces 7

Same name and namespace in other branches
  1. 6.3 spaces_ui/spaces_ui.module \spaces_ui_theme()
  2. 7.3 spaces_ui/spaces_ui.module \spaces_ui_theme()

Implements hook_theme().

File

spaces_ui/spaces_ui.module, line 15

Code

function spaces_ui_theme() {
  $items = array();
  $items['spaces_preset_list_new'] = array(
    'render element' => 'form',
    'template' => 'spaces-preset-list-new',
    'path' => drupal_get_path('module', 'spaces_ui') . '/theme',
    'file' => 'theme.inc',
  );
  return $items;
}