You've already forked joomla_test
first commit
This commit is contained in:
193
modules/mod_menu/helper.php
Normal file
193
modules/mod_menu/helper.php
Normal file
@ -0,0 +1,193 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
/**
|
||||
* Helper for mod_menu
|
||||
*
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
* @since 1.5
|
||||
*/
|
||||
class ModMenuHelper
|
||||
{
|
||||
/**
|
||||
* Get a list of the menu items.
|
||||
*
|
||||
* @param JRegistry $params The module options.
|
||||
*
|
||||
* @return array
|
||||
*
|
||||
* @since 1.5
|
||||
*/
|
||||
public static function getList(&$params)
|
||||
{
|
||||
$app = JFactory::getApplication();
|
||||
$menu = $app->getMenu();
|
||||
|
||||
// Get active menu item
|
||||
$base = self::getBase($params);
|
||||
$user = JFactory::getUser();
|
||||
$levels = $user->getAuthorisedViewLevels();
|
||||
asort($levels);
|
||||
$key = 'menu_items' . $params . implode(',', $levels) . '.' . $base->id;
|
||||
$cache = JFactory::getCache('mod_menu', '');
|
||||
if (!($items = $cache->get($key)))
|
||||
{
|
||||
$path = $base->tree;
|
||||
$start = (int) $params->get('startLevel');
|
||||
$end = (int) $params->get('endLevel');
|
||||
$showAll = $params->get('showAllChildren');
|
||||
$items = $menu->getItems('menutype', $params->get('menutype'));
|
||||
|
||||
$lastitem = 0;
|
||||
|
||||
if ($items)
|
||||
{
|
||||
foreach ($items as $i => $item)
|
||||
{
|
||||
if (($start && $start > $item->level)
|
||||
|| ($end && $item->level > $end)
|
||||
|| (!$showAll && $item->level > 1 && !in_array($item->parent_id, $path))
|
||||
|| ($start > 1 && !in_array($item->tree[$start - 2], $path)))
|
||||
{
|
||||
unset($items[$i]);
|
||||
continue;
|
||||
}
|
||||
|
||||
$item->deeper = false;
|
||||
$item->shallower = false;
|
||||
$item->level_diff = 0;
|
||||
|
||||
if (isset($items[$lastitem]))
|
||||
{
|
||||
$items[$lastitem]->deeper = ($item->level > $items[$lastitem]->level);
|
||||
$items[$lastitem]->shallower = ($item->level < $items[$lastitem]->level);
|
||||
$items[$lastitem]->level_diff = ($items[$lastitem]->level - $item->level);
|
||||
}
|
||||
|
||||
$item->parent = (boolean) $menu->getItems('parent_id', (int) $item->id, true);
|
||||
|
||||
$lastitem = $i;
|
||||
$item->active = false;
|
||||
$item->flink = $item->link;
|
||||
|
||||
// Reverted back for CMS version 2.5.6
|
||||
switch ($item->type)
|
||||
{
|
||||
case 'separator':
|
||||
case 'heading':
|
||||
// No further action needed.
|
||||
continue;
|
||||
|
||||
case 'url':
|
||||
if ((strpos($item->link, 'index.php?') === 0) && (strpos($item->link, 'Itemid=') === false))
|
||||
{
|
||||
// If this is an internal Joomla link, ensure the Itemid is set.
|
||||
$item->flink = $item->link . '&Itemid=' . $item->id;
|
||||
}
|
||||
break;
|
||||
|
||||
case 'alias':
|
||||
// If this is an alias use the item id stored in the parameters to make the link.
|
||||
$item->flink = 'index.php?Itemid=' . $item->params->get('aliasoptions');
|
||||
break;
|
||||
|
||||
default:
|
||||
$router = JSite::getRouter();
|
||||
if ($router->getMode() == JROUTER_MODE_SEF)
|
||||
{
|
||||
$item->flink = 'index.php?Itemid=' . $item->id;
|
||||
}
|
||||
else
|
||||
{
|
||||
$item->flink .= '&Itemid=' . $item->id;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if (strcasecmp(substr($item->flink, 0, 4), 'http') && (strpos($item->flink, 'index.php?') !== false))
|
||||
{
|
||||
$item->flink = JRoute::_($item->flink, true, $item->params->get('secure'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$item->flink = JRoute::_($item->flink);
|
||||
}
|
||||
|
||||
// We prevent the double encoding because for some reason the $item is shared for menu modules and we get double encoding
|
||||
// when the cause of that is found the argument should be removed
|
||||
$item->title = htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8', false);
|
||||
$item->anchor_css = htmlspecialchars($item->params->get('menu-anchor_css', ''), ENT_COMPAT, 'UTF-8', false);
|
||||
$item->anchor_title = htmlspecialchars($item->params->get('menu-anchor_title', ''), ENT_COMPAT, 'UTF-8', false);
|
||||
$item->menu_image = $item->params->get('menu_image', '') ? htmlspecialchars($item->params->get('menu_image', ''), ENT_COMPAT, 'UTF-8', false) : '';
|
||||
}
|
||||
|
||||
if (isset($items[$lastitem]))
|
||||
{
|
||||
$items[$lastitem]->deeper = (($start?$start:1) > $items[$lastitem]->level);
|
||||
$items[$lastitem]->shallower = (($start?$start:1) < $items[$lastitem]->level);
|
||||
$items[$lastitem]->level_diff = ($items[$lastitem]->level - ($start?$start:1));
|
||||
}
|
||||
}
|
||||
|
||||
$cache->store($items, $key);
|
||||
}
|
||||
return $items;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get base menu item.
|
||||
*
|
||||
* @param JRegistry $params The module options.
|
||||
*
|
||||
* @return object
|
||||
*
|
||||
* @since 3.0.2
|
||||
*/
|
||||
public static function getBase(&$params)
|
||||
{
|
||||
|
||||
// Get base menu item from parameters
|
||||
if ($params->get('base'))
|
||||
{
|
||||
$base = JFactory::getApplication()->getMenu()->getItem($params->get('base'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$base = false;
|
||||
}
|
||||
|
||||
// Use active menu item if no base found
|
||||
if (!$base)
|
||||
{
|
||||
$base = self::getActive($params);
|
||||
}
|
||||
|
||||
return $base;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get active menu item.
|
||||
*
|
||||
* @param JRegistry $params The module options.
|
||||
*
|
||||
* @return object
|
||||
*
|
||||
* @since 3.0.2
|
||||
*/
|
||||
public static function getActive(&$params)
|
||||
{
|
||||
$menu = JFactory::getApplication()->getMenu();
|
||||
|
||||
return $menu->getActive() ? $menu->getActive() : $menu->getDefault();
|
||||
}
|
||||
|
||||
}
|
1
modules/mod_menu/index.html
Normal file
1
modules/mod_menu/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
27
modules/mod_menu/mod_menu.php
Normal file
27
modules/mod_menu/mod_menu.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Include the syndicate functions only once
|
||||
require_once __DIR__ . '/helper.php';
|
||||
|
||||
$list = ModMenuHelper::getList($params);
|
||||
$base = ModMenuHelper::getBase($params);
|
||||
$active = ModMenuHelper::getActive($params);
|
||||
$active_id = $active->id;
|
||||
$path = $base->tree;
|
||||
|
||||
$showAll = $params->get('showAllChildren');
|
||||
$class_sfx = htmlspecialchars($params->get('class_sfx'));
|
||||
|
||||
if (count($list))
|
||||
{
|
||||
require JModuleHelper::getLayoutPath('mod_menu', $params->get('layout', 'default'));
|
||||
}
|
155
modules/mod_menu/mod_menu.xml
Normal file
155
modules/mod_menu/mod_menu.xml
Normal file
@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<extension
|
||||
type="module"
|
||||
version="3.1"
|
||||
client="site"
|
||||
method="upgrade">
|
||||
<name>mod_menu</name>
|
||||
<author>Joomla! Project</author>
|
||||
<creationDate>July 2004</creationDate>
|
||||
<copyright>Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved.</copyright>
|
||||
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
|
||||
<authorEmail>admin@joomla.org</authorEmail>
|
||||
<authorUrl>www.joomla.org</authorUrl>
|
||||
<version>3.0.0</version>
|
||||
<description>MOD_MENU_XML_DESCRIPTION</description>
|
||||
<files>
|
||||
<filename module="mod_menu">mod_menu.php</filename>
|
||||
<folder>tmpl</folder>
|
||||
<filename>helper.php</filename>
|
||||
<filename>index.html</filename> <filename>mod_menu.xml</filename>
|
||||
</files>
|
||||
<languages>
|
||||
<language tag="en-GB">en-GB.mod_menu.ini</language>
|
||||
<language tag="en-GB">en-GB.mod_menu.sys.ini</language>
|
||||
</languages>
|
||||
<help key="JHELP_EXTENSIONS_MODULE_MANAGER_MENU" />
|
||||
<config>
|
||||
<fields name="params">
|
||||
<fieldset name="basic">
|
||||
<field
|
||||
name="menutype"
|
||||
type="menu"
|
||||
label="MOD_MENU_FIELD_MENUTYPE_LABEL"
|
||||
description="MOD_MENU_FIELD_MENUTYPE_DESC" />
|
||||
<field
|
||||
name="base"
|
||||
type="menuitem"
|
||||
label="MOD_MENU_FIELD_ACTIVE_LABEL"
|
||||
description="MOD_MENU_FIELD_ACTIVE_DESC"
|
||||
>
|
||||
<option value="">JCURRENT</option>
|
||||
</field>
|
||||
<field
|
||||
name="startLevel"
|
||||
type="list"
|
||||
default="1"
|
||||
label="MOD_MENU_FIELD_STARTLEVEL_LABEL"
|
||||
description="MOD_MENU_FIELD_STARTLEVEL_DESC"
|
||||
>
|
||||
<option value="1">J1</option>
|
||||
<option value="2">J2</option>
|
||||
<option value="3">J3</option>
|
||||
<option value="4">J4</option>
|
||||
<option value="5">J5</option>
|
||||
<option value="6">J6</option>
|
||||
<option value="7">J7</option>
|
||||
<option value="8">J8</option>
|
||||
<option value="9">J9</option>
|
||||
<option value="10">J10</option>
|
||||
</field>
|
||||
|
||||
<field
|
||||
name="endLevel"
|
||||
type="list"
|
||||
default="0"
|
||||
label="MOD_MENU_FIELD_ENDLEVEL_LABEL"
|
||||
description="MOD_MENU_FIELD_ENDLEVEL_DESC"
|
||||
>
|
||||
<option value="0">JALL</option>
|
||||
<option value="1">J1</option>
|
||||
<option value="2">J2</option>
|
||||
<option value="3">J3</option>
|
||||
<option value="4">J4</option>
|
||||
<option value="5">J5</option>
|
||||
<option value="6">J6</option>
|
||||
<option value="7">J7</option>
|
||||
<option value="8">J8</option>
|
||||
<option value="9">J9</option>
|
||||
<option value="10">J10</option>
|
||||
</field>
|
||||
|
||||
<field
|
||||
name="showAllChildren"
|
||||
type="radio"
|
||||
class="btn-group"
|
||||
default="1"
|
||||
label="MOD_MENU_FIELD_ALLCHILDREN_LABEL"
|
||||
description="MOD_MENU_FIELD_ALLCHILDREN_DESC">
|
||||
<option
|
||||
value="0">JNO</option>
|
||||
<option
|
||||
value="1">JYES</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
|
||||
<fieldset
|
||||
name="advanced">
|
||||
<field
|
||||
name="tag_id"
|
||||
type="text"
|
||||
label="MOD_MENU_FIELD_TAG_ID_LABEL"
|
||||
description="MOD_MENU_FIELD_TAG_ID_DESC" />
|
||||
|
||||
<field
|
||||
name="class_sfx"
|
||||
type="text"
|
||||
label="MOD_MENU_FIELD_CLASS_LABEL"
|
||||
description="MOD_MENU_FIELD_CLASS_DESC" />
|
||||
|
||||
<field
|
||||
name="window_open"
|
||||
type="text"
|
||||
label="MOD_MENU_FIELD_TARGET_LABEL"
|
||||
description="MOD_MENU_FIELD_TARGET_DESC" />
|
||||
|
||||
<field
|
||||
name="layout"
|
||||
type="modulelayout"
|
||||
label="JFIELD_ALT_LAYOUT_LABEL"
|
||||
description="JFIELD_ALT_MODULE_LAYOUT_DESC" />
|
||||
|
||||
<field
|
||||
name="moduleclass_sfx"
|
||||
type="textarea" rows="3"
|
||||
label="COM_MODULES_FIELD_MODULECLASS_SFX_LABEL"
|
||||
description="COM_MODULES_FIELD_MODULECLASS_SFX_DESC" />
|
||||
|
||||
<field
|
||||
name="cache"
|
||||
type="list"
|
||||
default="1"
|
||||
label="COM_MODULES_FIELD_CACHING_LABEL"
|
||||
description="COM_MODULES_FIELD_CACHING_DESC">
|
||||
<option
|
||||
value="1">JGLOBAL_USE_GLOBAL</option>
|
||||
<option
|
||||
value="0">COM_MODULES_FIELD_VALUE_NOCACHING</option>
|
||||
</field>
|
||||
<field
|
||||
name="cache_time"
|
||||
type="text"
|
||||
default="900"
|
||||
label="COM_MODULES_FIELD_CACHE_TIME_LABEL"
|
||||
description="COM_MODULES_FIELD_CACHE_TIME_DESC" />
|
||||
<field
|
||||
name="cachemode"
|
||||
type="hidden"
|
||||
default="itemid">
|
||||
<option
|
||||
value="itemid"></option>
|
||||
</field>
|
||||
</fieldset>
|
||||
</fields>
|
||||
</config>
|
||||
</extension>
|
100
modules/mod_menu/tmpl/default.php
Normal file
100
modules/mod_menu/tmpl/default.php
Normal file
@ -0,0 +1,100 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Note. It is important to remove spaces between elements.
|
||||
?>
|
||||
<?php // The menu class is deprecated. Use nav instead. ?>
|
||||
<ul class="nav menu<?php echo $class_sfx;?>"<?php
|
||||
$tag = '';
|
||||
if ($params->get('tag_id') != null)
|
||||
{
|
||||
$tag = $params->get('tag_id').'';
|
||||
echo ' id="'.$tag.'"';
|
||||
}
|
||||
?>>
|
||||
<?php
|
||||
foreach ($list as $i => &$item) :
|
||||
$class = 'item-'.$item->id;
|
||||
if ($item->id == $active_id)
|
||||
{
|
||||
$class .= ' current';
|
||||
}
|
||||
|
||||
if (in_array($item->id, $path))
|
||||
{
|
||||
$class .= ' active';
|
||||
}
|
||||
elseif ($item->type == 'alias')
|
||||
{
|
||||
$aliasToId = $item->params->get('aliasoptions');
|
||||
if (count($path) > 0 && $aliasToId == $path[count($path) - 1])
|
||||
{
|
||||
$class .= ' active';
|
||||
}
|
||||
elseif (in_array($aliasToId, $path))
|
||||
{
|
||||
$class .= ' alias-parent-active';
|
||||
}
|
||||
}
|
||||
|
||||
if ($item->type == 'separator')
|
||||
{
|
||||
$class .= ' divider';
|
||||
}
|
||||
|
||||
if ($item->deeper)
|
||||
{
|
||||
$class .= ' deeper';
|
||||
}
|
||||
|
||||
if ($item->parent)
|
||||
{
|
||||
$class .= ' parent';
|
||||
}
|
||||
|
||||
if (!empty($class))
|
||||
{
|
||||
$class = ' class="'.trim($class) .'"';
|
||||
}
|
||||
|
||||
echo '<li'.$class.'>';
|
||||
|
||||
// Render the menu item.
|
||||
switch ($item->type) :
|
||||
case 'separator':
|
||||
case 'url':
|
||||
case 'component':
|
||||
case 'heading':
|
||||
require JModuleHelper::getLayoutPath('mod_menu', 'default_'.$item->type);
|
||||
break;
|
||||
|
||||
default:
|
||||
require JModuleHelper::getLayoutPath('mod_menu', 'default_url');
|
||||
break;
|
||||
endswitch;
|
||||
|
||||
// The next item is deeper.
|
||||
if ($item->deeper)
|
||||
{
|
||||
echo '<ul class="nav-child unstyled small">';
|
||||
}
|
||||
// The next item is shallower.
|
||||
elseif ($item->shallower)
|
||||
{
|
||||
echo '</li>';
|
||||
echo str_repeat('</ul></li>', $item->level_diff);
|
||||
}
|
||||
// The next item is on the same level.
|
||||
else {
|
||||
echo '</li>';
|
||||
}
|
||||
endforeach;
|
||||
?></ul>
|
38
modules/mod_menu/tmpl/default_component.php
Normal file
38
modules/mod_menu/tmpl/default_component.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Note. It is important to remove spaces between elements.
|
||||
$class = $item->anchor_css ? 'class="'.$item->anchor_css.'" ' : '';
|
||||
$title = $item->anchor_title ? 'title="'.$item->anchor_title.'" ' : '';
|
||||
if ($item->menu_image)
|
||||
{
|
||||
$item->params->get('menu_text', 1) ?
|
||||
$linktype = '<img src="'.$item->menu_image.'" alt="'.$item->title.'" /><span class="image-title">'.$item->title.'</span> ' :
|
||||
$linktype = '<img src="'.$item->menu_image.'" alt="'.$item->title.'" />';
|
||||
}
|
||||
else { $linktype = $item->title;
|
||||
}
|
||||
|
||||
switch ($item->browserNav) :
|
||||
default:
|
||||
case 0:
|
||||
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
|
||||
break;
|
||||
case 1:
|
||||
// _blank
|
||||
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
|
||||
break;
|
||||
case 2:
|
||||
// window.open
|
||||
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');return false;" <?php echo $title; ?>><?php echo $linktype; ?></a>
|
||||
<?php
|
||||
break;
|
||||
endswitch;
|
13
modules/mod_menu/tmpl/default_heading.php
Normal file
13
modules/mod_menu/tmpl/default_heading.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
?>
|
||||
<span class="nav-header"><?php echo $item->title; ?></span>
|
23
modules/mod_menu/tmpl/default_separator.php
Normal file
23
modules/mod_menu/tmpl/default_separator.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Note. It is important to remove spaces between elements.
|
||||
$title = $item->anchor_title ? ' title="'.$item->anchor_title.'" ' : '';
|
||||
if ($item->menu_image)
|
||||
{
|
||||
$item->params->get('menu_text', 1) ?
|
||||
$linktype = '<img src="'.$item->menu_image.'" alt="'.$item->title.'" /><span class="image-title">'.$item->title.'</span> ' :
|
||||
$linktype = '<img src="'.$item->menu_image.'" alt="'.$item->title.'" />';
|
||||
}
|
||||
else { $linktype = $item->title;
|
||||
}
|
||||
|
||||
?><span class="separator"<?php echo $title; ?>><?php echo $linktype; ?></span>
|
40
modules/mod_menu/tmpl/default_url.php
Normal file
40
modules/mod_menu/tmpl/default_url.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_menu
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Note. It is important to remove spaces between elements.
|
||||
$class = $item->anchor_css ? 'class="'.$item->anchor_css.'" ' : '';
|
||||
$title = $item->anchor_title ? 'title="'.$item->anchor_title.'" ' : '';
|
||||
if ($item->menu_image)
|
||||
{
|
||||
$item->params->get('menu_text', 1) ?
|
||||
$linktype = '<img src="'.$item->menu_image.'" alt="'.$item->title.'" /><span class="image-title">'.$item->title.'</span> ' :
|
||||
$linktype = '<img src="'.$item->menu_image.'" alt="'.$item->title.'" />';
|
||||
}
|
||||
else { $linktype = $item->title;
|
||||
}
|
||||
$flink = $item->flink;
|
||||
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));
|
||||
|
||||
switch ($item->browserNav) :
|
||||
default:
|
||||
case 0:
|
||||
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
|
||||
break;
|
||||
case 1:
|
||||
// _blank
|
||||
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
|
||||
break;
|
||||
case 2:
|
||||
// window.open
|
||||
$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,'.$params->get('window_open');
|
||||
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','<?php echo $options;?>');return false;" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
|
||||
break;
|
||||
endswitch;
|
1
modules/mod_menu/tmpl/index.html
Normal file
1
modules/mod_menu/tmpl/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
Reference in New Issue
Block a user