You are here

function hosting_wizard_intro in Hosting 5

Introduction form.

@todo: add an option for minimal configuration, which just hits the required pages?

1 string reference to 'hosting_wizard_intro'
hosting_wizard_menu in ./hosting.wizard.inc
Wizard menu items.

File

./hosting.wizard.inc, line 121

Code

function hosting_wizard_intro() {
  $form['introduction']['#value'] = t("<p>I am a configuration wizard designed to help you through configuring the Aegir provisioning system.</p>\n    <p>Once properly configured, this system will help you manage your Drupal sites. \n    It will even be able to manage them across multiple versions of Drupal and across multiple servers.</p>\n    <p>Before we get started with the configuration, please make sure that your system meets the following requirements:</p>");
  $form['drupal'] = array(
    '#type' => 'requirement_help',
    '#requirement' => 'basic_drupal',
  );
  $form['unix'] = array(
    '#type' => 'requirement_help',
    '#requirement' => 'basic_unix',
  );
  $form['server'] = array(
    '#type' => 'requirement_help',
    '#requirement' => 'basic_server',
  );
  return hosting_wizard_form('intro', $form);
}