function default_profile_details in Drupal 5
Same name and namespace in other branches
- 6 profiles/default/default.profile \default_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
- profiles/
default/ default.profile, line 19
Code
function default_profile_details() {
return array(
'name' => 'Drupal',
'description' => 'Select this profile to enable some basic Drupal functionality and the default theme.',
);
}