Файловый менеджер - Редактировать - /home/lmsyaran/public_html/administrator/components/com_hikamarket/classes/menu.php
Назад
<?php /** * @package HikaMarket for Joomla! * @version 3.1.1 * @author Obsidev S.A.R.L. * @copyright (C) 2011-2020 OBSIDEV. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class hikamarketMenuClass extends hikamarketClass { protected $tables = array(); protected $pkeys = array(); protected $toggle = array(); public function processView(&$view) { if(empty($view->menus)) return; $currentuser = JFactory::getUser(); if(!$currentuser->authorise('core.manage', 'com_hikamarket')) return; $config = hikamarket::config(); $use_approval = $config->get('product_approval', 0); $market = array( 'name' => HIKAMARKET_NAME, 'check' => 'ctrl=config', 'acl' => 'config', 'task' => 'manage', 'icon' => 'fas fa-store', 'url' => hikamarket::completeLink('dashboard'), 'children' => array( array( 'name' => JText::_('HIKA_CONFIGURATION'), 'check' => 'ctrl=config', 'acl' => 'config', 'task' => 'manage', 'icon' => 'fa fa-wrench', 'url' => hikamarket::completeLink('config'), 'display' => $currentuser->authorise('core.admin', 'com_hikamarket') ), array( 'name' => JText::_('HIKAM_ACL'), 'check' => 'ctrl=config&task=acl', 'acl' => 'config', 'task' => 'manage', 'icon' => 'fa fa-unlock-alt', 'url' => hikamarket::completeLink('config&task=acl'), 'display' => $currentuser->authorise('core.admin', 'com_hikamarket') ), array( 'name' => JText::_('PLUGINS'), 'check' => 'ctrl=plugins', 'icon' => 'fa fa-puzzle-piece', 'url' => hikamarket::completeLink('plugins') ), array('name' => ''), array( 'name' => JText::_('HIKA_VENDORS'), 'check' => 'ctrl=vendor', 'acl' => 'vendor', 'icon' => 'fas fa-user-tie', 'url' => hikamarket::completeLink('vendor'), 'display' => hikamarket::level(1) ), array( 'name' => JText::_('WAITING_APPROVAL_LIST'), 'check' => 'ctrl=product&task=waitingapproval', 'icon' => 'fa fa-thumbs-up', 'url' => hikamarket::completeLink('product&task=waitingapproval'), 'display' => $use_approval ), array('name' => '', 'display' => hikamarket::level(1) || $use_approval), array( 'name' => JText::_('VIEWS'), 'check' => 'ctrl=views', 'icon' => 'fa fa-file-code', 'url' => hikamarket::completeLink('shop.view&component='.HIKAMARKET_COMPONENT) ), array( 'name' => JText::_('MENUS'), 'check' => 'ctrl=menus', 'icon' => 'icon-16-menu', 'url' => hikamarket::completeLink('menus'), 'display' => hikamarket::level(1) && !HIKASHOP_J30 ), array( 'name' => JText::_('MODULES'), 'check' => 'ctrl=modules', 'icon' => 'icon-16-module', 'url' => hikamarket::completeLink('modules'), 'display' => hikamarket::level(1) && !HIKASHOP_J30 ), array('name' => ''), array( 'name' => JText::_('DOCUMENTATION'), 'check' => 'ctrl=documentation', 'icon' => 'fa fa-life-ring', 'url' => hikamarket::completeLink('documentation') ), array( 'name' => JText::_('UPDATE_ABOUT'), 'check' => 'ctrl=update', 'icon' => 'fa fa-sync', 'url' => hikamarket::completeLink('update') ), array( 'name' => JText::_('FORUM'), 'check' => 'support/forum.html', 'icon' => 'fa fa-info', 'url' => HIKAMARKET_URL.'support/forum.html' ) ) ); $newMenus = array(&$market); $this->checkActive($newMenus, 0, HIKAMARKET_COMPONENT); $last = array_pop($view->menus); array_push($view->menus, $market, $last); } private function checkActive(&$menus, $level = 0, $default_component = HIKASHOP_COMPONENT) { if($level > 2) return; $currentComponent = hikaInput::get()->getCmd('option', HIKASHOP_COMPONENT); foreach($menus as $k => $menu) { if(isset($menu['display']) && !$menu['display']) { unset($menus[$k]); continue; } if(empty($menu['check'])) continue; if(is_array($menu['check'])) { $component = $menu['check'][0]; $check = $menu['check'][1]; } else { $check = $menu['check']; $component = $default_component; } if($component == $currentComponent && strpos($_SERVER['QUERY_STRING'], $check) !== false) { if(strpos($_SERVER['QUERY_STRING'], '&task=') === false || strpos($menu['check'], '&task=') !== false) { $menus[$k]['active'] = true; } } if(!empty($menu['children'])) { $this->checkActive($menus[$k]['children'], $level+1, $default_component); } } } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка