You are here

function spaces_features_page in Spaces 6

FEATURE SETTINGS ===================================================

2 string references to 'spaces_features_page'
spaces_active_space_menu in ./spaces.module
A mild abstraction of hook_menu() items that can be used by implementing modules to embed/graft relevant spaces items into the menu tree. Should only be used when the $may_cache argument of hook_menu() is false.
spaces_og_menu in spaces_og/spaces_og.module
Implementation of hook_menu().

File

./spaces_admin.inc, line 545

Code

function spaces_features_page($feature = NULL) {
  if (!$feature) {
    drupal_set_title(t('Features'));
    return drupal_get_form('spaces_features_form');
  }
  else {
    return drupal_get_form('spaces_customize_form', NULL, $feature);
  }
}