Public Member Functions | |
| main () | |
| Main function, making the selector box menu. | |
| printContent () | |
| Outputting the accumulated content to screen. | |
Public Attributes | |
| $content | |
|
|
Main function, making the selector box menu.
Definition at line 81 of file alt_menu_sel.php. References $TBE_TEMPLATE, and menu(). 00081 {
00082 global $TBE_MODULES,$TBE_TEMPLATE;
00083
00084 // Initialize modules
00085 $loadModules = t3lib_div::makeInstance('t3lib_loadModules');
00086 $loadModules->load($TBE_MODULES);
00087
00088 // Start page
00089 $TBE_TEMPLATE->form = '<form action="">';
00090 $TBE_TEMPLATE->docType = 'xhtml_trans';
00091
00092 $this->content.=$TBE_TEMPLATE->startPage('Selector box menu');
00093
00094 // Make menu and add it:
00095 $alt_menuObj = t3lib_div::makeInstance('alt_menu_functions');
00096 $this->content.=$alt_menuObj->topMenu($loadModules->modules,0,'',2);
00097
00098 // End page:
00099 $this->content.=$TBE_TEMPLATE->endPage();
00100 }
|
|
|
Outputting the accumulated content to screen.
Definition at line 107 of file alt_menu_sel.php. 00107 {
00108 echo $this->content;
00109 }
|
|
|
Definition at line 74 of file alt_menu_sel.php. |
1.3.8-20040913