| Versionen | |
|---|---|
| drupal6 – drupal7 | menu_reset_item_confirm(&$form_state, $item) |
Menu callback; reset a single modified item.
modules/
<?php
function menu_reset_item_confirm(&$form_state, $item) {
$form['item'] = array('#type' => 'value', '#value' => $item);
return confirm_form($form, t('Are you sure you want to reset the item %item to its default values?', array('%item' => $item['link_title'])), 'admin/build/menu-customize/' . $item['menu_name'], t('Any customizations will be lost. This action cannot be undone.'), t('Reset'));
}
?>
Kommentare
Kommentar hinzufügen