You are here

function express_profile_configure_form in Express 7.2

File

./express.profile, line 52
Configure Express.

Code

function express_profile_configure_form() {
  $form = array();
  $options = array(
    'cu_core' => st('Production'),
    'cu_testing_core' => st('Testing'),
    'cu_pantheon_core' => st('Pantheon'),
  );
  $form['express_core_version'] = array(
    '#type' => 'radios',
    '#title' => st('Which version of Express would you like to install?'),
    '#description' => st('Testing will include the "cu_testing_core" module while "Production" will include the "cu_core" module.'),
    '#options' => $options,
    '#default_value' => 'cu_core',
  );
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => st('Create and Finish'),
    '#weight' => 15,
  );
  return $form;
}