You are here

function google_analytics_reports_update_7303 in Google Analytics Reports 7.3

Disable and uninstall old Google Analytics Reports Views module.

File

./google_analytics_reports.install, line 332
Contains install and update functions for Google Analytics Reports module.

Code

function google_analytics_reports_update_7303(&$sandbox) {
  if (module_exists('google_analytics_reports_views')) {
    module_disable(array(
      'google_analytics_reports_views',
    ));
    drupal_uninstall_modules(array(
      'google_analytics_reports_views',
    ));
    return t('Old Google Analytics Reports Views module has been successfully uninstalled.');
  }
}