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

/**
 * Implements hook_form_alter().
 *
 * Allows the profile to alter the site-configuration form. This is
 * called through custom invocation, so $form_state is not populated.
 */
function expert_form_install_configure_form_alter(&$form) {
  $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
}