Changes between Version 62 and Version 63 of DeveloperGuidelinesNewModule


Ignore:
Timestamp:
11/29/13 22:39:56 (11 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelinesNewModule

    v62 v63  
    129129=== Menu ===
    130130
    131 Add a menu:
    132 {{{
    133 # Options Menu (available in all Functions' Views)
    134 response.menu_options = [
    135     [T("Home"), False, URL(f="index")],
    136     [T("Add Vehicle"), False, URL(f="vehicle", args="create")],
    137     [T("List Vehicles"), False, URL(f="vehicle")],
    138     [T("Search Vehicles"), False, URL(f="vehicle", args="search")]
    139 ]
    140 }}}
     131A basic navigation menu will be constructed by default for each view page, and a menu item for the module's landing page will be added to the top menu bar or its More menu.
     132
     133For custom menus, see [wiki:DeveloperGuidelines/Menus Menus]
    141134
    142135=== Views ===