|
From: Jon O. <jon...@us...> - 2007-06-19 20:45:48
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22332 Added Files: navmenu_constants.php Log Message: Sorry, i forgot to add these files, while fixing the nav menu for IE --- NEW FILE: navmenu_constants.php --- <?php /** * * @package mxBB Portal Module - mx_navmenu * @version $Id: navmenu_constants.php,v 1.1 2007/06/19 20:45:42 jonohlsson Exp $ * @copyright (c) 2002-2006 [Martin, Markus, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mxbb.net * */ if ( !defined('IN_PORTAL') ) { die("Hacking attempt"); } // ------------------------------------------------------------------------- // Extend User Style with module lang and images // Usage: $mx_user->extend(LANG, IMAGES) // Switches: // - LANG: MX_LANG_MAIN (default), MX_LANG_ADMIN, MX_LANG_ALL, MX_LANG_NONE // - IMAGES: MX_IMAGES (default), MX_IMAGES_NONE // // Extend page with additional header or footer data // Examples: // $mx_page->add_css_file(); // Include style dependent *.css file, eg module_path/template_path/template/theme.css // $mx_page->add_js_file( 'includes/js.js' ); // Relative to module_root // $mx_page->add_header_text( 'header text' ); // $mx_page->add_footer_text( 'includes/test.txt', true ); // Relative to module_root // Note: Included text from file (last example), will evaluate $theme and $mx_block->info variables. // ------------------------------------------------------------------------- /* if (is_object($mx_page)) { } */ ?> |