function hostmaster_profile_modules in Hostmaster (Aegir) 5.x
Same name and namespace in other branches
- 6.2 hostmaster.profile \hostmaster_profile_modules()
- 6 hostmaster.profile \hostmaster_profile_modules()
Return an array of the modules to be enabled when this profile is installed.
Return value
An array of modules to be enabled.
1 call to hostmaster_profile_modules()
File
- ./
hostmaster.profile, line 10
Code
function hostmaster_profile_modules() {
return array(
/* core */
'block',
'color',
'filter',
'help',
'menu',
'node',
'system',
'user',
/* contrib */
'install_profile_api',
/* custom */
'hosting',
'hosting_task',
'hosting_client',
'hosting_db_server',
'hosting_package',
'hosting_platform',
'hosting_site',
'hosting_web_server',
);
}