author | ymh <ymh.work@gmail.com> |
Fri, 15 Sep 2017 14:54:08 +0200 | |
changeset 548 | f624c19354e4 |
parent 541 | e756a8c72c3d |
permissions | -rw-r--r-- |
<?php /** * @file * Enables modules and site configuration for a minimal site installation. */ /** * Implements hook_form_FORM_ID_alter() for install_configure_form(). * * Allows the profile to alter the site configuration form. */ function minimal_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']; }