drupal_set_message(t('All necessary changes to %dir and %file have been made, so you should remove write permissions to them now in order to avoid security risks. If you are unsure how to do so, consult the <a href="@handbook_url">online handbook</a>.',array('%dir'=>$settings_dir,'%file'=>$settings_file,'@handbook_url'=>'http://drupal.org/server-permissions')),'warning');
// information, (2) that occurs during bootstrap before any module are
// loaded, so (3) if there is no cached schema, drupal_get_schema() will
// try to generate one but with no loaded modules will return nothing.
//
// @todo Move this to the 'install_finished' task?
drupal_get_schema(NULL,TRUE);
$form['site_information']=array(
'#type'=>'fieldgroup',
'#title'=>$this->t('Site information'),
);
$form['site_information']['site_name']=array(
'#type'=>'textfield',
'#title'=>$this->t('Site name'),
'#required'=>TRUE,
'#weight'=>-20,
);
$form['site_information']['site_mail']=array(
'#type'=>'email',
'#title'=>$this->t('Site e-mail address'),
'#default_value'=>ini_get('sendmail_from'),
'#description'=>$this->t("Automated e-mails, such as registration information, will be sent from this address. Use an address ending in your site's domain to help prevent these e-mails from being flagged as spam."),
'#required'=>TRUE,
'#weight'=>-15,
);
$form['admin_account']=array(
'#type'=>'fieldgroup',
'#title'=>$this->t('Site maintenance account'),
);
$form['admin_account']['account']['#tree']=TRUE;
$form['admin_account']['account']['name']=array(
'#type'=>'textfield',
'#title'=>$this->t('Username'),
'#maxlength'=>USERNAME_MAX_LENGTH,
'#description'=>$this->t('Spaces are allowed; punctuation is not allowed except for periods, hyphens, and underscores.'),
'#description'=>$this->t('The system will notify you when updates and important security releases are available for installed components. Anonymous information about your site is sent to <a href="@drupal">Drupal.org</a>.',array('@drupal'=>'http://drupal.org')),