function hostmaster_profile_modules in Hostmaster (Aegir) 6
Same name and namespace in other branches
- 6.2 hostmaster.profile \hostmaster_profile_modules()
 - 5.x 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',
    /* aegir contrib */
    'hosting',
    'hosting_task',
    'hosting_client',
    'hosting_db_server',
    'hosting_package',
    'hosting_platform',
    'hosting_site',
    'hosting_web_server',
    'hosting_server',
    'hosting_clone',
    'hosting_cron',
    'hosting_migrate',
    /* other contrib */
    'install_profile_api',
    'jquery_ui',
    'modalframe',
    'admin_menu',
  );
}