Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / menu_alter.twig
1 /**
2  * Implements hook_menu_alter().
3  */
4 function {{ machine_name }}_menu_alter(&$items) {
5   // Example - disable the page at node/add
6   $items['node/add']['access callback'] = FALSE;
7 }