menu_admin_per_menu.install 277 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Contains install and update functions for menu_admin_per_menu module.
  5. */
  6. /**
  7. * Implements hook_install().
  8. */
  9. function menu_admin_per_menu_install() {
  10. // Set module weight bigger than menu_ui module.
  11. module_set_weight('menu_admin_per_menu', 1);
  12. }