blob: 91188f00c26d00f5687aa43f5139e8b3375e39cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
// $Id$
/**
* Implement 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_alter(&$form, $form_state, $form_id) {
if ($form_id == 'install_configure') {
// Set default for site name field.
$form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
}
}
|