function hostmaster_profile_details in Hostmaster (Aegir) 6
Same name and namespace in other branches
- 6.2 hostmaster.profile \hostmaster_profile_details()
- 5.x 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.',
);
}