| Server IP : 104.21.84.107 / Your IP : 104.23.197.209 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/fcs/administrator/components/com_gantry5/templates/menu/ |
Upload File : |
{% set children = (item.level == 1 ? item.group(group) : item.children) %}
<div class="submenu-level">Level {{ item.level }}</div>
<ul class="submenu-items" data-mm-base="{{ item.path }}" data-mm-base-level="{{ item.level }}">
{%- if item.level > 1 %}
<li>
<a class="menu-item menu-item-back"
data-g5-ajaxify=""
data-g5-ajaxify-params="{{ {'inline': 1, 'group': group}|json_encode|escape('html_attr') }}"
data-g5-ajaxify-target-parent=".submenu-column"
href="{{ gantry.route('menu', id, item.parent.path) }}"
>
{% for i in range(1, item.level-1) %}
<i class="fa fa-fw fa-chevron-left" aria-hidden="true"></i>
{% endfor %}
</a>
</li>
{% endif -%}
{%- for child in children %}
{% set is_particle = child.type == 'particle' or child.type == 'module' %}
<li data-mm-id="{{ child.path }}"
data-mm-level="{{ child.level }}"
{% if is_particle %}
class="g-menu-removable g-menu-item-{{ child.type }}{% if child.options.particle.enabled == false %} g-menu-item-disabled{% endif %}"
data-mm-original-type="{{ child.type }}"
{% else %}
class="{% if child.enabled == false %}g-menu-item-disabled{% endif %}"
{% endif %}
>
{% include 'menu/item.html.twig' with {'item': child, 'target': 'list-' ~ group } %}
</li>
{% endfor -%}
</ul>
<span class="submenu-reorder"><i class="fa fa-fw fa-arrows-h fa-arrows-alt-h" aria-hidden="true"></i></span>