menu_reset_item

Definition

menu_reset_item($mid)
menu/menu.module, line 463

Description

Menu callback; reset a single modified item.

Code

<?php
function menu_reset_item($mid) {
  if (isset($mid) && $title = db_result(db_query('SELECT title FROM {menu} WHERE mid = %d', $mid))) {
    $form['mid'] = array('#type' => 'value', '#value' => $mid);
    return confirm_form($form, t('Are you sure you want to reset the item %item to its default values?', array('%item' => $title)), 'admin/build/menu', t('Any customizations will be lost. This action cannot be undone.'), t('Reset'));
  }
  else {
    drupal_not_found();
  }
}
?>