You are here

function css3pie_update_7003 in css3pie 7.2

Enable ctools if it is installed but not enabled.

File

./css3pie.install, line 55
css3pie.install Contains install and update hooks for CSS3PIE.

Code

function css3pie_update_7003() {
  if (!module_exists('ctools') && drupal_get_path('module', 'ctools')) {
    module_enable(array(
      'ctools',
    ));
  }
  return;
}