Файловый менеджер - Редактировать - /var/www/html/mod_menu.zip
Ðазад
PK ! s�a� � default_url.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\Filter\OutputFilter; use Joomla\CMS\HTML\HTMLHelper; $attributes = array(); $isOffcanvasMenu = $params->get('hu_offcanvas', 0, 'INT') === 1; $maxLevel = $params->get('endLevel', 0, 'INT'); $showToggler = $maxLevel === 0 || $item->level < $maxLevel; if ($item->anchor_title) { $attributes['title'] = $item->anchor_title; } if ($item->anchor_css) { $attributes['class'] = $item->anchor_css; } if ($item->anchor_rel) { $attributes['rel'] = $item->anchor_rel; } $linktype = $item->title; if ($item->menu_image) { if ($item->menu_image_css) { $image_attributes['class'] = $item->menu_image_css; $linktype = HTMLHelper::_('image', $item->menu_image, $item->title, $image_attributes); } else { $linktype = HTMLHelper::_('image', $item->menu_image, $item->title); } if ($item->getParams()->get('menu_text', 1)) { $linktype .= '<span class="image-title">' . $item->title . '</span>'; } } if ($item->parent && $showToggler) { $linktype .= '<span class="menu-toggler"></span>'; } if ($item->browserNav == 1) { $attributes['target'] = '_blank'; $attributes['rel'] = 'noopener noreferrer'; } elseif ($item->browserNav == 2) { $options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,' . $params->get('window_open'); $attributes['onclick'] = "window.open(this.href, 'targetWindow', '" . $options . "'); return false;"; } echo HTMLHelper::_('link', OutputFilter::ampReplace(htmlspecialchars($item->flink, ENT_COMPAT, 'UTF-8', false)), $linktype, $attributes); PK ! ܪ�'� � default_heading.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\HTML\HTMLHelper; $title = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : ''; $anchor_css = $item->anchor_css ?: ''; $linktype = $item->title; $isOffcanvasMenu = $params->get('hu_offcanvas', 0, 'INT') === 1; $maxLevel = $params->get('endLevel', 0, 'INT'); $showToggler = $maxLevel === 0 || $item->level < $maxLevel; if ($item->menu_image) { if ($item->menu_image_css) { $image_attributes['class'] = $item->menu_image_css; $linktype = HTMLHelper::_('image', $item->menu_image, $item->title, $image_attributes); } else { $linktype = HTMLHelper::_('image', $item->menu_image, $item->title); } if ($item->params->get('menu_text', 1)) { $linktype .= '<span class="menu-image-title">' . $item->title . '</span>'; } } if ($item->parent && $showToggler) { $linktype .= '<span class="menu-toggler"></span>'; } ?> <span class="nav-header <?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span>PK ! 7��� � default_separator.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\HTML\HTMLHelper; $title = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : ''; $anchor_css = $item->anchor_css ?: ''; $isOffcanvasMenu = $params->get('hu_offcanvas', 0, 'INT') === 1; $maxLevel = $params->get('endLevel', 0, 'INT'); $showToggler = $maxLevel === 0 || $item->level < $maxLevel; $linktype = $item->title; if ($item->menu_image) { if ($item->menu_image_css) { $image_attributes['class'] = $item->menu_image_css; $linktype = HTMLHelper::_('image', $item->menu_image, $item->title, $image_attributes); } else { $linktype = HTMLHelper::_('image', $item->menu_image, $item->title); } if ($item->params->get('menu_text', 1)) { $linktype .= '<span class="menu-image-title">' . $item->title . '</span>'; } } if ($item->parent && $showToggler) { $linktype .= '<span class="menu-toggler"></span>'; } ?> <span class="menu-separator <?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span> PK ! �q� � default.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\Helper\ModuleHelper; use Joomla\Registry\Registry; $id = ''; if ($tagId = $params->get('tag_id', '')) { $id = ' id="' . $tagId . '"'; } // The menu class is deprecated. Use nav instead ?> <ul class="menu<?php echo $class_sfx; ?>"<?php echo $id; ?>> <?php foreach ($list as $i => &$item) { $layout = \json_decode($item->getParams()->get('helixultimatemenulayout', '')); if (\json_last_error() !== JSON_ERROR_NONE) { $layout = ''; } $helixMenuLayout = new Registry($layout); $customClass = $helixMenuLayout->get('customclass', ''); $class = 'item-' . $item->id; if ($item->id == $default_id) { $class .= ' default'; } if ($item->id == $active_id || ($item->type === 'alias' && $item->getParams()->get('aliasoptions') == $active_id)) { $class .= ' current'; } if (in_array($item->id, $path)) { $class .= ' active'; } elseif ($item->type === 'alias') { $aliasToId = $item->getParams()->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 .= ' menu-divider'; } if ($item->deeper) { $class .= ' menu-deeper'; } if ($item->parent) { $class .= ' menu-parent'; } if ($customClass) { $class .= ' ' . $customClass; } echo '<li class="' . $class . '">'; switch ($item->type) : case 'separator': case 'component': case 'heading': case 'url': require ModuleHelper::getLayoutPath('mod_menu', 'default_' . $item->type); break; default: require ModuleHelper::getLayoutPath('mod_menu', 'default_url'); break; endswitch; // The next item is deeper. if ($item->deeper) { echo '<ul class="menu-child">'; } // 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>'; } } ?></ul> PK ! >3� � default_component.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\Filter\OutputFilter; use Joomla\CMS\HTML\HTMLHelper; $attributes = array(); $isOffcanvasMenu = $params->get('hu_offcanvas', 0, 'INT') === 1; $maxLevel = $params->get('endLevel', 0, 'INT'); $showToggler = $maxLevel === 0 || $item->level < $maxLevel; if ($item->anchor_title) { $attributes['title'] = $item->anchor_title; } if ($item->anchor_css) { $attributes['class'] = $item->anchor_css; } if ($item->anchor_rel) { $attributes['rel'] = $item->anchor_rel; } $linktype = $item->title; if ($item->menu_image) { if ($item->menu_image_css) { $image_attributes['class'] = $item->menu_image_css; $linktype = HTMLHelper::_('image', $item->menu_image, $item->title, $image_attributes); } else { $linktype = HTMLHelper::_('image', $item->menu_image, $item->title); } if ($item->getParams()->get('menu_text', 1)) { $linktype .= '<span class="menu-image-title">' . $item->title . '</span>'; } } if ($item->parent && $showToggler) { $linktype .= '<span class="menu-toggler"></span>'; } if ($item->browserNav == 1) { $attributes['target'] = '_blank'; } elseif ($item->browserNav == 2) { $options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes'; $attributes['onclick'] = "window.open(this.href, 'targetWindow', '" . $options . "'); return false;"; } echo HTMLHelper::_('link', OutputFilter::ampReplace(htmlspecialchars($item->flink, ENT_COMPAT, 'UTF-8', false)), $linktype, $attributes); PK ! s�a� � default_url.phpnu �[��� PK ! ܪ�'� � 1 default_heading.phpnu �[��� PK ! 7��� � ; default_separator.phpnu �[��� PK ! �q� � L default.phpnu �[��� PK ! >3� � Z default_component.phpnu �[��� PK � L!
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка