You are here

function drupal_commons_profile_modules in Drupal Commons 6.2

Same name and namespace in other branches
  1. 6 drupal_commons.profile \drupal_commons_profile_modules()

Return an array of the modules to be enabled when this profile is installed.

To save time during installation, only enable module here that are either required by Features or not included in any Commons features

Return value

An array of modules to enable.

File

./drupal_commons.profile, line 18

Code

function drupal_commons_profile_modules() {
  $modules = array(
    // Default Drupal modules.
    'color',
    'comment',
    'help',
    'menu',
    'taxonomy',
    'dblog',
    'profile',
    'search',
    'tracker',
    'php',
    'path',
    'contact',
    // CTools
    'ctools',
    // Context
    'context',
    // Date
    'date_api',
    'date_timezone',
    // Misc
    'vertical_tabs',
    'transliteration',
    'password_policy',
    // Strongarm
    'strongarm',
    // Features
    'features',
  );
  return $modules;
}