metatag_views.install 285 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * Update, uninstall, etc scripts for Metatag: Views.
  5. */
  6. /**
  7. * Implements hook_disable().
  8. */
  9. function metatag_views_disable() {
  10. // Clear the Views caches to avoid the now-missing Metatag integration from
  11. // borking the system.
  12. views_invalidate_cache();
  13. }