You are here

function spaces_spaces_settings in Spaces 5

Same name and namespace in other branches
  1. 5.2 spaces.module \spaces_spaces_settings()
  2. 6 spaces.module \spaces_spaces_settings()
  3. 6.2 spaces.module \spaces_spaces_settings()

Implementation of hook_spaces_settings()

File

./spaces.module, line 185

Code

function spaces_spaces_settings() {
  $items = array();
  $items['spaces_home'] = array(
    'label' => t('Homepage'),
    'description' => t("Set the default page seen by members."),
    'options' => '_spaces_homepage_options',
  );
  return $items;
}