You are here

function hostmaster_profile_modules in Hostmaster (Aegir) 5.x

Same name and namespace in other branches
  1. 6.2 hostmaster.profile \hostmaster_profile_modules()
  2. 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()
hostmaster_profile_tasks in ./hostmaster.profile

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',
  );
}