2007-04-06 05:29:22 +00:00
|
|
|
<?php
|
|
|
|
|
2009-05-13 19:42:18 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2014-04-13 19:04:02 +00:00
|
|
|
* Install, update and uninstall functions for the menu_ui module.
|
2009-05-13 19:42:18 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-19 16:22:53 +00:00
|
|
|
/**
|
|
|
|
* Implements hook_install().
|
|
|
|
*/
|
2014-04-13 19:04:02 +00:00
|
|
|
function menu_ui_install() {
|
2014-01-29 08:25:00 +00:00
|
|
|
// Rebuild all the menu data.
|
|
|
|
// @todo - remove this when we understand why removing it breaks the
|
|
|
|
// standard install profile, possibly need to be handled in
|
|
|
|
// \Drupal\Core\Extension\ModuleHandler::install().
|
|
|
|
// @see https://drupal.org/node/2181151
|
2013-09-21 15:23:51 +00:00
|
|
|
\Drupal::service('router.builder')->rebuild();
|
2013-09-19 16:22:53 +00:00
|
|
|
}
|
|
|
|
|
2009-10-13 18:36:25 +00:00
|
|
|
/**
|
2009-12-04 16:49:48 +00:00
|
|
|
* Implements hook_uninstall().
|
2009-10-13 18:36:25 +00:00
|
|
|
*/
|
2014-04-13 19:04:02 +00:00
|
|
|
function menu_ui_uninstall() {
|
2014-10-10 19:41:01 +00:00
|
|
|
\Drupal::service('router.builder_indicator')->setRebuildNeeded();
|
2009-10-13 18:36:25 +00:00
|
|
|
}
|