Files
@ f43d1a4680a9
Branch filter:
Location: hot67beta/administrator/modules/mod_menu/menu.php
f43d1a4680a9
4.8 KiB
text/x-php
menubar 0 to 10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | <?php
/**
* @version $Id: menu.php 10381 2008-06-01 03:35:53Z pasamio $
* @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.
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die( 'Restricted access' );
jimport('joomla.base.tree');
class JAdminCSSMenu extends JTree
{
/**
* CSS string to add to document head
* @var string
*/
var $_css = null;
function __construct()
{
$this->_root = new JMenuNode('ROOT');
$this->_current = & $this->_root;
}
function addSeparator()
{
$this->addChild(new JMenuNode(null, null, 'separator', false));
}
function renderMenu($id = 'menu', $class = '')
{
global $mainframe;
$depth = 1;
if(!empty($id)) {
$id='id="'.$id.'"';
}
if(!empty($class)) {
$class='class="'.$class.'"';
}
/*
* Recurse through children if they exist
*/
while ($this->_current->hasChildren())
{
echo "<ul ".$id." ".$class.">\n";
foreach ($this->_current->getChildren() as $child)
{
$this->_current = & $child;
$this->renderLevel($depth++);
}
echo "</ul>\n";
}
if ($this->_css) {
// Add style to document head
$doc = & JFactory::getDocument();
$doc->addStyleDeclaration($this->_css);
}
}
function renderLevel($depth)
{
/*
* Build the CSS class suffix
*/
$class = '';
if ($this->_current->hasChildren()) {
$class = ' class="node"';
}
if($this->_current->class == 'separator') {
$class = ' class="separator"';
}
if($this->_current->class == 'disabled') {
$class = ' class="disabled"';
}
/*
* Print the item
*/
echo "<li".$class.">";
/*
* Print a link if it exists
*/
if ($this->_current->link != null) {
echo "<a class=\"".$this->getIconClass($this->_current->class)."\" href=\"".$this->_current->link."\">".$this->_current->title."</a>";
} elseif ($this->_current->title != null) {
echo "<a>".$this->_current->title."</a>\n";
} else {
echo "<span></span>";
}
/*
* Recurse through children if they exist
*/
while ($this->_current->hasChildren())
{
if ($this->_current->class) {
echo '<ul id="menu-'.strtolower($this->_current->id).'"'.
' class="menu-component">'."\n";
} else {
echo '<ul>'."\n";
}
foreach ($this->_current->getChildren() as $child)
{
$this->_current = & $child;
$this->renderLevel($depth++);
}
echo "</ul>\n";
}
echo "</li>\n";
}
/**
* Method to get the CSS class name for an icon identifier or create one if
* a custom image path is passed as the identifier
*
* @access public
* @param string $identifier Icon identification string
* @return string CSS class name
* @since 1.5
*/
function getIconClass($identifier)
{
global $mainframe;
static $classes;
// Initialize the known classes array if it does not exist
if (!is_array($classes)) {
$classes = array();
}
/*
* If we don't already know about the class... build it and mark it
* known so we don't have to build it again
*/
if (!isset($classes[$identifier])) {
if (substr($identifier, 0, 6) == 'class:') {
// We were passed a class name
$class = substr($identifier, 6);
$classes[$identifier] = "icon-16-$class";
} else {
// We were passed an image path... is it a themeoffice one?
if (substr($identifier, 0, 15) == 'js/ThemeOffice/') {
// Strip the filename without extension and use that for the classname
$class = preg_replace('#\.[^.]*$#', '', basename($identifier));
$classes[$identifier] = "icon-16-$class";
} else {
if ($identifier == null) {
return null;
}
// Build the CSS class for the icon
$class = preg_replace('#\.[^.]*$#', '', basename($identifier));
$class = preg_replace( '#\.\.[^A-Za-z0-9\.\_\- ]#', '', $class);
$this->_css .= "\n.icon-16-$class {\n" .
"\tbackground: url($identifier) no-repeat;\n" .
"}\n";
$classes[$identifier] = "icon-16-$class";
}
}
}
return $classes[$identifier];
}
}
class JMenuNode extends JNode
{
/**
* Node Title
*/
var $title = null;
/**
* Node Id
*/
var $id = null;
/**
* Node Link
*/
var $link = null;
/**
* CSS Class for node
*/
var $class = null;
/**
* Active Node?
*/
var $active = false;
function __construct($title, $link = null, $class = null, $active = false)
{
$this->title = $title;
$this->link = JFilterOutput::ampReplace($link);
$this->class = $class;
$this->active = $active;
$this->id = str_replace(" ","-",$title);
}
}
|