You are here

function spaces_ui_theme in Spaces 6.3

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

Implementation of hook_theme().

File

spaces_ui/spaces_ui.module, line 15

Code

function spaces_ui_theme() {
  $items = array();
  $base = array(
    'arguments' => array(
      'form' => array(),
    ),
  );
  $items['spaces_preset_list_new'] = $base;
  return $items;
}