Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / menu_get_item_alter.twig
1 /**
2  * Implements hook_menu_get_item_alter().
3  */
4 function {{ machine_name }}_menu_get_item_alter(&$router_item, $path, $original_map) {
5   // When retrieving the router item for the current path...
6   if ($path == $_GET['q']) {
7     // ...call a function that prepares something for this request.
8     mymodule_prepare_something();
9   }
10 }