Security update to Drupal 8.4.6
[yaffs-website] / web / core / modules / menu_link_content / menu_link_content.install
1 <?php
2
3 /**
4  * @file
5  * Install, update and uninstall functions for the menu_link_content module.
6  */
7
8 /**
9  * Implements hook_install().
10  */
11 function menu_link_content_install() {
12   // Add a higher weight so that menu_link_content_path_update() is called after
13   // system_path_update() clears the path alias cache.
14   // @todo remove this when the cache clearing is moved to path module or if
15   //   caching is removed for path aliases due to
16   //   https://www.drupal.org/node/1965074
17   module_set_weight('menu_link_content', 1);
18 }