summaryrefslogtreecommitdiff
path: root/profiles/standard/standard.profile
blob: 9180e95802e2ca6ad6eadea50e7e38990ceab263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
// $Id$

/**
 * Implements hook_form_FORM_ID_alter().
 *
 * Allows the profile to alter the site configuration form.
 */
function standard_form_install_configure_form_alter(&$form, $form_state) {
  // Pre-populate the site name with the server name.
  $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
}