You are here

function space_type::feature_options in Spaces 6.3

Same name and namespace in other branches
  1. 7.3 plugins/space_type.inc \space_type::feature_options()
  2. 7 plugins/space_type.inc \space_type::feature_options()

Get the possible feature setting values for this space.

Return value

A keyed array of options.

File

plugins/space_type.inc, line 25

Class

space_type
Common functionality for space types that implement access, routing, delegated Views filtering and feature management concepts. Examples: spaces_og, spaces_user, spaces_taxonomy.

Code

function feature_options() {
  return array(
    0 => t('Disabled'),
    1 => t('Enabled'),
  );
}