You are here

varbase.profile in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3

Enables modules and site configuration for Varbase site installation.

File

varbase.profile
View source
<?php

/**
 * @file
 * Enables modules and site configuration for Varbase site installation.
 */

/**
 * Implements hook_form_FORM_ID_alter() for install_configure_form().
 *
 * Allows the profile to alter the site configuration form.
 */
function varbase_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'];
  $form['admin_account']['account']['name']['#value'] = 'webmaster';
  $form['admin_account']['account']['mail']['#default_value'] = 'webmaster@' . $_SERVER['SERVER_NAME'];
}