function drush_drupal_required_modules
| 6.x environment.inc | drush_drupal_required_modules($modules) |
| 5.x environment.inc | drush_drupal_required_modules($modules) |
| 4.x environment.inc | drush_drupal_required_modules($modules) |
2 calls to drush_drupal_required_modules()
- drush_pm_disable in commands/
pm/ pm.drush.inc - Command callback. Disable one or more extensions.
- drush_pm_uninstall in commands/
pm/ pm.drush.inc - Command callback. Uninstall one or more modules. // TODO: Use drupal_execute on system_modules_uninstall_confirm_form so that input is validated.
File
- includes/
environment.inc, line 862 - Functions used by drush to query the environment and setting the current configuration.
Code
function drush_drupal_required_modules($modules) {
drush_include_engine('drupal', 'environment');
return _drush_drupal_required_modules($modules);
}