munin_core.install 444 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @file
  4. * Core Drupal instrumentation for Munin: installation.
  5. *
  6. * @copyright (c) 2011-2019 Ouest Systèmes Informatiques
  7. *
  8. * Licensed under the General Public License version 2 or later.
  9. */
  10. /**
  11. * Implements hook_enable().
  12. */
  13. function munin_core_enable() {
  14. variable_set('menu_rebuild_needed', TRUE);
  15. }
  16. /**
  17. * Implements hook_disable().
  18. */
  19. function munin_core_disable() {
  20. variable_set('menu_rebuild_needed', TRUE);
  21. }