You are here

spaces_ui.module in Spaces 6.3

Same filename and directory in other branches
  1. 7.3 spaces_ui/spaces_ui.module
  2. 7 spaces_ui/spaces_ui.module

File

spaces_ui/spaces_ui.module
View source
<?php

/**
 * Implementation of hook_ctools_plugin_directory().
 */
function spaces_ui_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && $plugin == 'export_ui') {
    return 'export_ui';
  }
}

/**
 * Implementation of hook_theme().
 */
function spaces_ui_theme() {
  $items = array();
  $base = array(
    'arguments' => array(
      'form' => array(),
    ),
  );
  $items['spaces_preset_list_new'] = $base;
  return $items;
}

Functions

Namesort descending Description
spaces_ui_ctools_plugin_directory Implementation of hook_ctools_plugin_directory().
spaces_ui_theme Implementation of hook_theme().