You are here

function drush_fullcalendar_post_pm_enable in FullCalendar 7.2

Implements drush_MODULE_post_COMMAND().

File

includes/fullcalendar.drush.inc, line 43
Drush integration for FullCalendar.

Code

function drush_fullcalendar_post_pm_enable() {
  $extensions = func_get_args();

  // Deal with comma delimited extension list.
  if (strpos($extensions[0], ',') !== FALSE) {
    $extensions = explode(',', $extensions[0]);
  }
  if (in_array('fullcalendar', $extensions) && !drush_get_option('skip')) {
    drush_fullcalendar_plugin();
  }
}