Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bostrt/othermenu
Menu module for phpWebsite
https://github.com/bostrt/othermenu
Last synced: 19 days ago
JSON representation
Menu module for phpWebsite
- Host: GitHub
- URL: https://github.com/bostrt/othermenu
- Owner: bostrt
- Created: 2010-07-16T02:57:50.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-12-14T19:54:15.000Z (about 14 years ago)
- Last Synced: 2024-11-01T10:08:26.644Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Robert Bost
Appalachian State University
Electronic Student ServicesMenu is a menu making app for use with phpWebsite. The goal is to have an simple way to create an embedded menu. Tags
are used to identify menus and items. Menus and items can be added to menus using the tags.
Example:$menu = new Menu('top_level', 'Menu');
$menu->addMenu('search', 'Search');
$menu->addMenuItem('name_search', 'Search Names', 'search');
$menu->addMenuItem('email_search', 'Search Emails', 'search');
$menu->addMenu('settings', 'Settings');
$menu->addMenu('email_settings', 'Email Settings', 'setttings');From the example you can see that the menu has gone three menus deep. It can go further but I don't wanna right now.