You are here

function drush_form_styler_pre_pm_enable in jQuery form styler 7.2

Same name and namespace in other branches
  1. 7 drush/form_styler.drush.inc \drush_form_styler_pre_pm_enable()

Implements drush_MODULE_pre_pm_enable().

File

drush/form_styler.drush.inc, line 60
Drush integration for form_styler.

Code

function drush_form_styler_pre_pm_enable() {
  $modules = drush_get_context('PM_ENABLE_MODULES');
  if (in_array('form_styler', $modules) && !drush_get_option('skip')) {
    form_styler_plugin();
  }
}