You are here

function deploy_settings in Deploy - Content Staging 6

Manage deployment settings.

See also

system_settings_form()

1 string reference to 'deploy_settings'
deploy_menu in ./deploy.module
Implementation of hook_menu().

File

./deploy.settings.admin.inc, line 13
Page handlers for deploy settings admin.

Code

function deploy_settings() {
  $group_weight = -20;
  $form['general'] = array(
    '#type' => 'fieldset',
    '#weight' => $group_weight,
    '#title' => t('General settings'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
  );
  return system_settings_form($form);
}