You are here

function flexslider_example_update_7001 in Flex Slider 7.2

Implements hook_update_N().

Checks for the Context module. Disables if not present.

File

flexslider_example/flexslider_example.install, line 38
Install tasks for flexslider_example

Code

function flexslider_example_update_7001(&$sandbox) {
  if (!module_exists('context')) {
    module_disable(array(
      'flexslider_example',
    ));
    drupal_set_message(t('FlexSlider Example has been disabled as it now requires the !context module which is not currently available. Please download and enable the !context module and re-enable the FlexSlider Example module', array(
      '!context' => l('Context', 'http://drupal.org/project/context'),
    )), 'warning');
  }
}