| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/eadsa/plugins/editors/jce/tiny_mce/plugins/advlink/extensions/links/joomlalinks/ |
Upload File : |
<?php
/**
* @version $Id: menu.php 46 2009-05-26 16:59:42Z happynoodleboy $
* @package JCE Advlink
* @copyright Copyright (C) 2008 - 2009 Ryan Demmer. All rights reserved.
* @author Ryan Demmer
* @license GNU/GPL
* JCE 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.
*/
// no direct access
defined('_JCE_EXT') or die('Restricted access');
class AdvlinkMenu
{
function getOptions()
{
$advlink =& AdvLink::getInstance();
$list = '';
if ($advlink->checkAccess('menu', '1')) {
$list = '<li id="index.php?option=com_menu"><div class="tree-row"><div class="tree-image"></div><span class="folder menu nolink"><a href="javascript:;">' . JText::_('MENU') . '</a></span></div></li>';
}
return $list;
}
function getItems($args)
{
$items = array();
$view = isset($args->view) ? $args->view : '';
switch ($view) {
default:
$types = AdvlinkMenu::_types();
foreach ($types as $type) {
$items[] = array(
'id' => 'index.php?option=com_menu&view=menu&id=' . $type->id,
'name' => $type->title,
'class' => 'folder menu nolink'
);
}
break;
case 'menu':
$menus = AdvlinkMenu::_menu(0, $args->id);
foreach ($menus as $menu) {
$children = AdvlinkMenu::_children($menu->id);
if ($menu->type == 'menulink') {
//$menu = AdvlinkMenu::_alias($menu->id);
}
$link = $menu->link;
if (preg_match('/^index.php/i', $link) && strpos($link, 'Itemid') === false) {
$link = $menu->link . '&Itemid=' . $menu->id;
//$link = 'index.php?Itemid=' . $menu->id;
}
$items[] = array(
'id' => $children ? 'index.php?option=com_menu&view=submenu&id=' . $menu->id : $link,
'url' => $link,
'name' => $menu->name . ' / ' . $menu->alias,
'class' => $children ? 'folder menu' : 'file'
);
}
break;
case 'submenu':
$menus = AdvlinkMenu::_menu($args->id);
foreach ($menus as $menu) {
$children = AdvlinkMenu::_children($menu->id);
if ($menu->type == 'menulink') {
//$menu = AdvlinkMenu::_alias($menu->id);
}
$link = $menu->link;
if (preg_match('/^index.php/i', $link) && strpos($link, 'Itemid') === false) {
$link = $menu->link . '&Itemid=' . $menu->id;
//$link = 'index.php?Itemid=' . $menu->id;
}
if ($children) {
$items[] = array(
'id' => $children ? 'index.php?option=com_menu&view=submenu&id=' . $menu->id : $link,
'url' => $link,
'name' => $menu->name . ' / ' . $menu->alias,
'class' => 'folder menu'
);
}else{
$items[] = array(
'id' => $link,
'name' => $menu->name . ' / ' . $menu->alias,
'class' => $children ? 'folder menu' : 'file'
);
}
}
break;
}
return $items;
}
function _types()
{
$db =& JFactory::getDBO();
$query = 'SELECT *'
. ' FROM #__menu_types'
;
$db->setQuery($query, 0);
return $db->loadObjectList();
}
function _alias($id)
{
$db =& JFactory::getDBO();
$user =& JFactory::getUser();
$query = 'SELECT params'
. ' FROM #__menu'
. ' WHERE id = '.(int) $id
;
$db->setQuery($query, 0);
$params = new JParameter($db->loadResult());
$query = 'SELECT id, name, link, alias'
. ' FROM #__menu'
. ' WHERE published = 1'
. ' AND id = '.(int) $params->get('menu_item')
. ' AND access <= '.(int) $user->get('aid')
. ' ORDER BY name'
;
$db->setQuery($query, 0);
return $db->loadObject();
}
function _children($id)
{
$db =& JFactory::getDBO();
$user =& JFactory::getUser();
$query = 'SELECT COUNT(id)'
. ' FROM #__menu'
. ' WHERE published = 1'
. ' AND parent = '.(int) $id
. ' AND access <= '.(int) $user->get('aid')
;
$db->setQuery($query, 0);
return $db->loadResult();
}
function _menu($parent = 0, $type = 0)
{
$db =& JFactory::getDBO();
$user =& JFactory::getUser();
$where = $type ? ' INNER JOIN #__menu_types AS s ON s.id = '. intval($type) .' WHERE m.menutype = s.menutype AND' : ' WHERE';
$query = 'SELECT m.id, m.name, m.link, m.type, m.alias'
. ' FROM #__menu AS m'
. $where
. ' m.published = 1'
. ' AND m.parent = '.(int) $parent
. ' AND m.access <= '.(int) $user->get('aid')
. ' ORDER BY m.name'
;
$db->setQuery($query, 0);
return $db->loadObjectList();
}
}
?>