View of /mambo/branches/4.6/modules/mod_mainmenu.php
Parent Directory
|
Revision Log
Revision 297 -
(download)
(annotate)
Thu Feb 16 21:43:38 2006 UTC (7 years, 3 months ago) by csouza
File size: 1461 byte(s)
Thu Feb 16 21:43:38 2006 UTC (7 years, 3 months ago) by csouza
File size: 1461 byte(s)
replacement of copyright notices
<?php /** * @package Mambo Open Source * @copyright (C) 2005 - 2006 Mambo Foundation Inc. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * Mambo was originally developed by Miro (www.miro.com.au) in 2000. Miro assigned the copyright in Mambo to The Mambo Foundation in 2005 to ensure * that Mambo remained free Open Source software owned and managed by the community. * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); $menuhandler =& mosMenuHandler::getInstance(); $params->def( 'menutype', 'mainmenu' ); $params->def( 'class_sfx', '' ); $params->def( 'menu_images', 0 ); $params->def( 'menu_images_align', 0 ); $params->def( 'expand_menu', 0 ); $params->def( 'indent_image', 0 ); $params->def( 'indent_image1', 'indent1.png' ); $params->def( 'indent_image2', 'indent2.png' ); $params->def( 'indent_image3', 'indent3.png' ); $params->def( 'indent_image4', 'indent4.png' ); $params->def( 'indent_image5', 'indent5.png' ); $params->def( 'indent_image6', 'indent.png' ); $params->def( 'spacer', '' ); $params->def( 'end_spacer', '' ); $menu_style = $params->get( 'menu_style', 'vert_indent' ); switch ( $menu_style ) { case 'list_flat': $menuhandler->mosShowHFMenu( $params, 1 ); break; case 'horiz_flat': $menuhandler->mosShowHFMenu( $params, 0 ); break; default: $menuhandler->mosShowVIMenu( $params ); break; } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

