metatag_context.install 275 B

12345678910111213
  1. <?php
  2. /**
  3. * @file
  4. * Installation and update hooks for Metatag:Context.
  5. */
  6. /**
  7. * Implements hook_enable().
  8. */
  9. function metatag_context_enable() {
  10. // Clear the cache so Context and CTools know about this plugin.
  11. cache_clear_all('plugins:context:plugins', 'cache');
  12. }