You are here

function spaces_test_admin_form in Spaces 7.3

Same name and namespace in other branches
  1. 6.3 tests/spaces_test.module \spaces_test_admin_form()
  2. 7 tests/spaces_test.module \spaces_test_admin_form()

Spaces_test_admin_form implementation..

1 string reference to 'spaces_test_admin_form'
spaces_test_menu in tests/spaces_test.module
Implements of hook_menu().

File

tests/spaces_test.module, line 35

Code

function spaces_test_admin_form($form, &$form_state) {
  $form['features_test_setting'] = array(
    '#type' => 'checkbox',
    '#title' => t('Customized'),
    '#default_value' => variable_get('features_test_setting', FALSE),
  );
  return system_settings_form($form);
}