You are here

function hostmaster_profile_details in Hostmaster (Aegir) 5.x

Same name and namespace in other branches
  1. 6.2 hostmaster.profile \hostmaster_profile_details()
  2. 6 hostmaster.profile \hostmaster_profile_details()

Return a description of the profile for the initial installation screen.

Return value

An array with keys 'name' and 'description' describing this profile.

File

./hostmaster.profile, line 24

Code

function hostmaster_profile_details() {
  return array(
    'name' => 'Hostmaster',
    'description' => 'Select this profile to manage the installation and maintenance of hosted Drupal sites.',
  );
}