You are here

function hostmaster_profile_modules in Hostmaster (Aegir) 6.2

Same name and namespace in other branches
  1. 6 hostmaster.profile \hostmaster_profile_modules()
  2. 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()
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',
    /* 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',
    'jquery_update',
    'modalframe',
    'admin_menu',
    'views',
    'views_bulk_operations',
    'actions_permissions',
    /* Aegir actual contrib */
    'hosting_platform_pathauto',
  );
}