⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mod_submenu.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php/*** @version		$Id:mod_menu.php 2463 2006-02-18 06:05:38Z webImagery $* @package		Joomla* @copyright	Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.* @license		GNU/GPL, see LICENSE.php* Joomla! is free software. This version may have been modified pursuant* to the GNU General Public License, and as distributed it includes or* is derivative of works licensed under the GNU General Public License or* other free or open source software licenses.* See COPYRIGHT.php for copyright notices and details.*/// no direct accessdefined('_JEXEC') or die('Restricted access');// Lets get some variables we will need to render the menu$lang	=& JFactory::getLanguage();$doc	=& JFactory::getDocument();$user	=& JFactory::getUser();// If hidemainmenu is true, we don't want to render this module at allecho JAdminSubMenu::get();/** * Admin Submenu * * @package		Joomla * @since 1.5 */class JAdminSubMenu{	function get()	{		global $mainframe;		// Lets get some variables we are going to need		$menu = JToolBar::getInstance('submenu');		$list = $menu->_bar;		if(!is_array($list) || !count($list))		{			$option = JRequest::getCmd('option');			if($option == 'com_categories')			{				$section = JRequest::getCmd('section');				if ($section) {					if ($section != 'content') {						// special handling for specific core components						$map['com_contact_details']	= 'com_contact';						$map['com_banner']			= 'com_banners';						$option = isset( $map[$section] ) ? $map[$section] : $section;					}				}			}			$list = JAdminSubMenu::_loadDBList($option);		}		if (!is_array($list) || !count($list)) {			return null;		}		$hide = JRequest::getInt('hidemainmenu');		$txt = "<ul id=\"submenu\">\n";		/*		 * Iterate through the link items for building the menu items		 */		foreach ($list as $item)		{			$txt .= "<li>\n";			if ($hide)			{				if (isset ($item[2]) && $item[2] == 1) {					$txt .= "<span class=\"nolink active\">".$item[0]."</span>\n";				}				else {					$txt .= "<span class=\"nolink\">".$item[0]."</span>\n";				}			}			else			{				if (isset ($item[2]) && $item[2] == 1) {					$txt .= "<a class=\"active\" href=\"".JFilterOutput::ampReplace($item[1])."\">".$item[0]."</a>\n";				}				else {					$txt .= "<a href=\"".JFilterOutput::ampReplace($item[1])."\">".$item[0]."</a>\n";				}			}			$txt .= "</li>\n";		}		$txt .= "</ul>\n";		return $txt;	}	function _loadDBList( $componentOption )	{		$db   =& JFactory::getDBO();		$lang =& JFactory::getLanguage();		$lang->load($componentOption.'.menu');		$query = 'SELECT a.name, a.admin_menu_link, a.admin_menu_img' .		' FROM #__components AS a' .		' INNER JOIN #__components AS b ON b.id = a.parent' .		' WHERE b.option = ' . $db->Quote( $componentOption ) .		' AND b.parent = 0'.		' ORDER BY a.ordering ASC';		$db->setQuery($query);		$items = $db->loadObjectList();		// Process the items		$subMenuList = array();		foreach ($items as $item)		{			if (trim($item->admin_menu_link))			{				// handling for active sub menu item				$active = 0;				if (strpos( @$_SERVER['QUERY_STRING'], $item->admin_menu_link ) !== false ) {					$active = 1;				}				$key = $componentOption.'.'.$item->name;				$subMenuItem[0]	= $lang->hasKey($key) ? JText::_($key) : $item->name;				$subMenuItem[1]	= 'index.php?'. $item->admin_menu_link;				$subMenuItem[2]	= $active;				$subMenuList[] = $subMenuItem;			}		}		return $subMenuList;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -