$output=t('<p>The menu module allows for customization of the menus. Menus are useful for providing navigation in your site. The main menu for navigation is the navigation menu. Menus appear in blocks on your site.</p>
$output=t('<p>The menu module allows for customization of the menus. Menus are useful for providing navigation in your site. The main menu for navigation is called the "navigation" menu. Menus appear in blocks on your site.</p>
<p>There is a special case for the display of "primary links" and "secondary links" (which are implemented as menus). These are sets of links which are usually displayed in the header of each page (depending on the currently active theme). Any menu can serve as the primary or secondary links, by modifying the settings for the menu module.</p>
<ul>
<li>On the administer menu page administrators can "edit" to change the title, description, parent or weight of the menu item. Under the "operations" column, click on "enable/disable" to toggle the menu item on or off. Menu items which are disabled are not deleted; they are merely not available for navigating the site in the sidebar menu block. Note that the default menu items generated by the menu module cannot be deleted, only disabled.</li>
<li>Using the "add menu" tab submit a title for a new custom menu. Once submitted, the new menu will appear in a list toward the bottom of the administer menu page underneath the main navigation menu.</li>
<li>Use the "add menu item" tab to create new links in either the navigation or a custom menu. Select the parent item to place the new link within an existing menu structure. For top level menu items, choose the name of the menu in which the link is to be added.</li>
<li>To turn off the navigation menu block, administer the block page.</li>
<li>Use the "add menu item" tab to create new links in either the navigation or a custom menu. Select the parent item to place the new link within an existing menu structure. For top level menu items, choose the name of the menu in which the link is to be added. This tab is also the way to define primary or secondary links for your site (by adding items to whatever menu is selected as your primary links menu).</li>
</ul>
');
$output.=t('<p>You can</p>
...
...
@@ -26,8 +26,9 @@ function menu_help($section) {
<li>turn menus blocks on and off in the <a href="%admin-block">administer >> blocks</a>.</li>
<li>add a menu at <a href="%admin-menu-menu-add">administer >> menus >> add menu</a>.</li>
<li>add a menu item at <a href="%admin-menu-item-add">administer >> menus >> add menu item</a>.</li>
<li>modify menu settings (in particular, to specify a menu to use for primary or secondary links) at <a href="%admin-settings-menus">administer >> settings >> menus</a>.</li>
$output.='<p>'.t('For more information please read the configuration and customization handbook <a href="%menu">Menu page</a>.',array('%menu'=>'http://drupal.org/handbook/modules/menu/')).'</p>';
return$output;
case'admin/modules#description':
...
...
@@ -54,9 +55,19 @@ function menu_menu($may_cache) {
'title'=>t('menus'),
'callback'=>'menu_overview',
'access'=>user_access('administer menu'));
$items[]=array('path'=>'admin/menu/list',
'title'=>t('list'),
'type'=>MENU_DEFAULT_LOCAL_TASK,
'weight'=>-10);
$items[]=array('path'=>'admin/menu/item/add',
'title'=>t('add menu item'),
'callback'=>'menu_edit_item_form',
'access'=>user_access('administer menu'),
'type'=>MENU_LOCAL_TASK);
$items[]=array('path'=>'admin/menu/item/edit',
'title'=>t('edit menu item'),
'callback'=>'menu_edit_item',
'callback'=>'menu_edit_item_form',
'access'=>user_access('administer menu'),
'type'=>MENU_CALLBACK);
$items[]=array('path'=>'admin/menu/item/reset',
...
...
@@ -71,24 +82,25 @@ function menu_menu($may_cache) {
'type'=>MENU_CALLBACK);
$items[]=array('path'=>'admin/menu/item/delete',
'title'=>t('delete menu item'),
'callback'=>'menu_edit_item_delete',
'callback'=>'menu_item_delete_form',
'access'=>user_access('administer menu'),
'type'=>MENU_CALLBACK);
$items[]=array('path'=>'admin/menu/list',
'title'=>t('list'),
'type'=>MENU_DEFAULT_LOCAL_TASK,
'weight'=>-10);
$items[]=array('path'=>'admin/menu/menu/add',
'title'=>t('add menu'),
'callback'=>'menu_add_menu',
'callback'=>'menu_edit_menu_form',
'access'=>user_access('administer menu'),
'type'=>MENU_LOCAL_TASK);
$items[]=array('path'=>'admin/menu/item/add',
'title'=>t('add menu item'),
'callback'=>'menu_edit_item',
$items[]=array('path'=>'admin/menu/menu/edit',
'title'=>t('edit menu'),
'callback'=>'menu_edit_menu_form',
'access'=>user_access('administer menu'),
'type'=>MENU_LOCAL_TASK);
'type'=>MENU_CALLBACK);
$items[]=array('path'=>'admin/menu/menu/delete',
'title'=>t('delete menu'),
'callback'=>'menu_item_delete_form',
'access'=>user_access('administer menu'),
'type'=>MENU_CALLBACK);
$items[]=array('path'=>'admin/settings/menu',
'title'=>t('menus'),
...
...
@@ -290,244 +302,182 @@ function menu_configure() {
}
/**
* Menu callback; handle the adding of a new menu.
* Menu callback; handle the adding/editing of a new menu.
*/
functionmenu_add_menu(){
$op=isset($_POST['op'])?$_POST['op']:'';
$edit=isset($_POST['edit'])?$_POST['edit']:'';
$output='';
switch($op){
caset('Submit'):
menu_edit_item_validate($edit);
if(!form_get_errors()){
menu_edit_item_save($edit);
drupal_goto('admin/menu');
}
// Fall through.
default:
$edit['pid']=0;
$edit['type']=MENU_CUSTOM_MENU;
$output.=menu_edit_item_form($edit);
functionmenu_edit_menu_form($mid=0){
if(arg(3)=='edit'){
if(!($item=db_fetch_array(db_query('SELECT * FROM {menu} WHERE mid = %d',$mid)))){
drupal_not_found();
return;
}
}
return$output;
}
/**
* Menu callback; dispatch to the appropriate menu item edit function.
*/
functionmenu_edit_item($mid=0){
$op=isset($_POST['op'])?$_POST['op']:'';
$edit=isset($_POST['edit'])?$_POST['edit']:'';
$output='';
switch($op){
caset('Submit'):
menu_edit_item_validate($edit);
if(!form_get_errors()){
menu_edit_item_save($edit);
drupal_goto('admin/menu');
}
$output.=menu_edit_item_form($edit);
break;
default:
if($mid>0){
$item=db_fetch_object(db_query('SELECT * FROM {menu} WHERE mid = %d',$mid));
$edit['mid']=$item->mid;
$edit['pid']=$item->pid;
$edit['path']=$item->path;
$edit['title']=$item->title;
$edit['description']=$item->description;
$edit['weight']=$item->weight;
$edit['type']=$item->type;
}
else{
$edit['mid']=0;// In case a negative ID was passed in.
if(!($item=db_fetch_array(db_query('SELECT * FROM {menu} WHERE mid = %d',$mid)))){
drupal_not_found();
return;
}
}
else{
$form['title']=array('#type'=>'textfield',
'#title'=>t('Title'),
'#default_value'=>$edit['title'],
'#description'=>t('The name of the menu item.'),
'#required'=>TRUE,
);
$form['description']=array('#type'=>'textfield',
'#title'=>t('Description'),
'#default_value'=>$edit['description'],
'#description'=>t('The description displayed when hovering over a menu item.'),
);
$path_description=t('The Drupal path this menu item links to. Enter %front to link to the front page.',array('%front'=>theme('placeholder','<front>')));
'#description'=>t('If selected and this menu item has children, the menu will always appear expanded.'),
);
$form['title']=array('#type'=>'textfield',
'#title'=>t('Title'),
'#default_value'=>$item['title'],
'#description'=>t('The name of the menu item.'),
'#required'=>TRUE,
);
$form['description']=array('#type'=>'textfield',
'#title'=>t('Description'),
'#default_value'=>$item['description'],
'#description'=>t('The description displayed when hovering over a menu item.'),
);
// Generate a list of possible parents (not including this item or descendants).
$options=menu_parent_options($edit['mid']);
$form['pid']=array('#type'=>'select',
'#title'=>t('Parent item'),
'#default_value'=>$edit['pid'],
'#options'=>$options,
if($item['type']&MENU_CREATED_BY_ADMIN){
$form['path']=array('#type'=>'textfield',
'#title'=>t('Path'),
'#default_value'=>$item['path'],
'#description'=>t('The path this menu item links to. This can be an internal Drupal path such as %add-node or an external URL such as %drupal. Enter %front to link to the front page.',array('%front'=>theme('placeholder','<front>'),'%add-node'=>theme('placeholder','node/add'),'%drupal'=>theme('placeholder','http://drupal.org'))),
'#required'=>TRUE,
);
$form['weight']=array('#type'=>'weight',
'#title'=>t('Weight'),
'#default_value'=>$edit['weight'],
'#description'=>t('Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.'),
returnconfirm_form('menu_reset_item_form',$form,t('Are you sure you want to reset the item %item to its default values?',array('%item'=>theme('placeholder',$title))),'admin/menu',t('Any customizations will be lost. This action cannot be undone.'),t('Reset'));
}
else{
drupal_not_found();
}
}
/**
* Menu callback; delete a single custom item.
* Process menu reset item form submissions.
*/
functionmenu_edit_item_delete($mid){
$op=isset($_POST['op'])?$_POST['op']:'';
$result=db_query('SELECT type, title FROM {menu} WHERE mid = %d',$mid);
$menu=db_fetch_object($result);
if(!$menu){
drupal_goto('admin/menu');
}
switch($op){
caset('Delete'):
menu_delete_item($mid);
if($menu->type&MENU_IS_ROOT){
drupal_set_message(t('The menu has been removed.'));
}
else{
drupal_set_message(t('The menu item has been removed.'));
}
drupal_goto('admin/menu');
break;
default:
if($menu->type&MENU_IS_ROOT){
$message=t('Are you sure you want to delete the menu %item?',array('%item'=>theme('placeholder',$menu->title)));
}
else{
$message=t('Are you sure you want to delete the custom menu item %item?',array('%item'=>theme('placeholder',$menu->title)));
}
returnconfirm_form('menu_confirm_delete',$form,$message,'admin/menu',t('This action cannot be undone.'),t('Delete'));