123456789101112131415161718 |
- <?php
- /**
- * @file
- * Drupal APC instrumentation for Munin: installation.
- *
- * @author Frederic G. MARAND
- *
- * @copyright (c) 2011 Ouest Systèmes Informatiques
- *
- * Licensed under the General Public License version 2 or later.
- */
- /**
- * Implements hook_install().
- */
- function munin_apc_install() {
- variable_set('menu_rebuild_needed', TRUE);
- }
|