You are here

function calendar_update_7001 in Calendar 7.3

Uninstall Calendar iCal module so it can be removed.

File

./calendar.install, line 23
Install, update and uninstall functions for the calendar module.

Code

function calendar_update_7001() {
  if (module_exists('calendar_ical')) {
    module_disable(array(
      'calendar_ical',
    ));
  }
}