| 1 |
********************************************************************
|
| 2 |
D R U P A L M O D U L E
|
| 3 |
********************************************************************
|
| 4 |
Name: menu_otf module
|
| 5 |
Author: Matt Westgate <drupal at asitis dot org>
|
| 6 |
Last update: (See CHANGELOG.txt for details)
|
| 7 |
Drupal: 4.5
|
| 8 |
Dependencies:
|
| 9 |
menu.module (comes with Drupal base installation)
|
| 10 |
********************************************************************
|
| 11 |
DESCRIPTION:
|
| 12 |
|
| 13 |
Provides an easy way to add nodes to the menu system.
|
| 14 |
|
| 15 |
With the introduction of Drupal 4.5 came the menu module which lets
|
| 16 |
an user create menus of links for site navigation or other purposes.
|
| 17 |
While this is a great addition to the Drupal system, the workflow
|
| 18 |
could use some refining. Here is the current workflow:
|
| 19 |
|
| 20 |
1. Create content.
|
| 21 |
2. Remember the node id of the newly created content (node).
|
| 22 |
3. Navigate to 'administer > menu > add menu item' and build the link.
|
| 23 |
|
| 24 |
After enabling menu_otf, the workflow becomes.
|
| 25 |
|
| 26 |
1. While creating content (a node), optionally choose a title for
|
| 27 |
the link for it to show up in one of the selected site menus.
|
| 28 |
|
| 29 |
This module lets you create menu items while creating content. It
|
| 30 |
also lets you manage menu links while editing existing content and
|
| 31 |
eliminates the need to go to a separate interface to manage menus.
|
| 32 |
|
| 33 |
********************************************************************
|
| 34 |
DEPENDENCIES:
|
| 35 |
|
| 36 |
You must enable menu.module. Menu_otf uses the save routines and
|
| 37 |
permissions from menu.module and will not work without it.
|
| 38 |
|
| 39 |
********************************************************************
|
| 40 |
INSTALLATION:
|
| 41 |
|
| 42 |
see the INSTALL.txt file in this directory.
|
| 43 |
|
| 44 |
********************************************************************
|
| 45 |
WISH LIST:
|
| 46 |
|
| 47 |
- The ability to suppress some of the drupal_set_messages() outputted
|
| 48 |
by menu.module.
|
| 49 |
|
| 50 |
********************************************************************
|
| 51 |
HOW TO USE THIS MODULE
|
| 52 |
|
| 53 |
Read this after installing the module.
|
| 54 |
|
| 55 |
Using this module involves three steps.
|
| 56 |
|
| 57 |
1. Navigate to a node form for story, page, blog, or some other
|
| 58 |
node type.
|
| 59 |
2. Type in a title and body.
|
| 60 |
3. If you'd like put this entry into the menu system, click
|
| 61 |
the "Site navigation settings" link to display the menu options.
|
| 62 |
|
| 63 |
Once the content is created with a menu item, you can edit and
|
| 64 |
even delete menu items in the same fashion.
|