Skip to content

Instantly share code, notes, and snippets.

@jameswilson
Created June 16, 2014 21:56
Show Gist options
  • Save jameswilson/078ecc41143a1600fc20 to your computer and use it in GitHub Desktop.
Save jameswilson/078ecc41143a1600fc20 to your computer and use it in GitHub Desktop.
Rebuild a Drupal 7 menu.
<?php
// To clear the Drupal 7 menu structure, temporarily add this file to the root
// of your drupal project and run it from a webbrowser or the command line.
error_reporting(E_ALL);
define('DRUPAL_ROOT', getcwd());
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
menu_rebuild();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment