munin_apc.install 351 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @file
  4. * Drupal APC instrumentation for Munin: installation.
  5. *
  6. * @author Frederic G. MARAND
  7. *
  8. * @copyright (c) 2011 Ouest Systèmes Informatiques
  9. *
  10. * Licensed under the General Public License version 2 or later.
  11. */
  12. /**
  13. * Implements hook_install().
  14. */
  15. function munin_apc_install() {
  16. variable_set('menu_rebuild_needed', TRUE);
  17. }