123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- /* partials/nav-quick-tray.html.twig */
- class __TwigTemplate_d53ab5674680e3f974348351339a353d26cf79f9654d6daeb896df1fbfa6aa6a extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
- $this->parent = false;
- $this->blocks = array(
- );
- }
- protected function doDisplay(array $context, array $blocks = array())
- {
- // line 1
- if ($this->getAttribute($this->getAttribute(($context["grav"] ?? null), "twig", array()), "plugins_quick_tray", array())) {
- // line 2
- echo " <ul id=\"admin-nav-quick-tray\">
- ";
- // line 3
- $context['_parent'] = $context;
- $context['_seq'] = twig_ensure_traversable($this->getAttribute($this->getAttribute(($context["grav"] ?? null), "twig", array()), "plugins_quick_tray", array()));
- foreach ($context['_seq'] as $context["label"] => $context["item"]) {
- // line 4
- echo " ";
- if ($this->env->getExtension('Grav\Common\Twig\TwigExtension')->authorize(((($this->getAttribute($context["item"], "authorize", array(), "any", true, true) && twig_test_iterable($this->getAttribute($context["item"], "authorize", array())))) ? ($this->getAttribute($context["item"], "authorize", array())) : (array(0 => (($this->getAttribute($context["item"], "authorize", array())) ? ($this->getAttribute($context["item"], "authorize", array())) : (("admin." . (($this->getAttribute($context["item"], "location", array())) ? ($this->getAttribute($context["item"], "location", array())) : ($this->getAttribute($context["item"], "route", array())))))), 1 => "admin.super"))))) {
- // line 5
- echo " ";
- $context["data_tags"] = "";
- // line 6
- echo " ";
- if ($this->getAttribute($context["item"], "data", array())) {
- // line 7
- echo " ";
- $context['_parent'] = $context;
- $context['_seq'] = twig_ensure_traversable($this->getAttribute($context["item"], "data", array()));
- foreach ($context['_seq'] as $context["key"] => $context["value"]) {
- // line 8
- echo " ";
- $context["data_tags"] = (((((($context["data_tags"] ?? null) . " data-") . $context["key"]) . "=\"") . $context["value"]) . "\"");
- // line 9
- echo " ";
- }
- $_parent = $context['_parent'];
- unset($context['_seq'], $context['_iterated'], $context['key'], $context['value'], $context['_parent'], $context['loop']);
- $context = array_intersect_key($context, $_parent) + $_parent;
- // line 10
- echo " ";
- }
- // line 11
- echo " <li class=\"";
- echo twig_escape_filter($this->env, $this->getAttribute($context["item"], "class", array()), "html", null, true);
- echo " hint--bottom\" data-hint=\"";
- echo twig_escape_filter($this->env, $this->getAttribute($context["item"], "hint", array()), "html", null, true);
- echo "\" ";
- echo ($context["data_tags"] ?? null);
- echo ">
- ";
- // line 12
- if ($this->getAttribute($context["item"], "route", array())) {
- // line 13
- echo " <a href=\"";
- echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Common\Twig\TwigExtension')->urlFunc($this->getAttribute($context["item"], "route", array())), "html", null, true);
- echo "\">
- <i class=\"fa fa-fw ";
- // line 14
- echo twig_escape_filter($this->env, $this->getAttribute($context["item"], "icon", array()), "html", null, true);
- echo "\"></i>
- </a>
- ";
- } else {
- // line 17
- echo " <i class=\"fa fa-fw ";
- echo twig_escape_filter($this->env, $this->getAttribute($context["item"], "icon", array()), "html", null, true);
- echo "\"></i>
- ";
- }
- // line 19
- echo " </li>
- ";
- }
- // line 21
- echo " ";
- }
- $_parent = $context['_parent'];
- unset($context['_seq'], $context['_iterated'], $context['label'], $context['item'], $context['_parent'], $context['loop']);
- $context = array_intersect_key($context, $_parent) + $_parent;
- // line 22
- echo " </ul>
- ";
- }
- }
- public function getTemplateName()
- {
- return "partials/nav-quick-tray.html.twig";
- }
- public function isTraitable()
- {
- return false;
- }
- public function getDebugInfo()
- {
- return array ( 92 => 22, 86 => 21, 82 => 19, 76 => 17, 70 => 14, 65 => 13, 63 => 12, 54 => 11, 51 => 10, 45 => 9, 42 => 8, 37 => 7, 34 => 6, 31 => 5, 28 => 4, 24 => 3, 21 => 2, 19 => 1,);
- }
- /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
- public function getSource()
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
- return $this->getSourceContext()->getCode();
- }
- public function getSourceContext()
- {
- return new Twig_Source("{% if grav.twig.plugins_quick_tray %}
- <ul id=\"admin-nav-quick-tray\">
- {% for label, item in grav.twig.plugins_quick_tray %}
- {% if authorize((item.authorize is defined and item.authorize is iterable) ? item.authorize : [item.authorize ?: ('admin.' ~ (item.location ?: item.route)), 'admin.super']) %}
- {% set data_tags = '' %}
- {% if (item.data) %}
- {% for key, value in item.data %}
- {% set data_tags = data_tags ~ ' data-' ~ key ~ '=\"' ~ value ~ '\"' %}
- {% endfor %}
- {% endif %}
- <li class=\"{{ item.class }} hint--bottom\" data-hint=\"{{ item.hint }}\" {{ data_tags|raw }}>
- {% if item.route %}
- <a href=\"{{ url(item.route) }}\">
- <i class=\"fa fa-fw {{ item.icon }}\"></i>
- </a>
- {% else %}
- <i class=\"fa fa-fw {{ item.icon }}\"></i>
- {% endif %}
- </li>
- {% endif %}
- {% endfor %}
- </ul>
- {% endif %}
- ", "partials/nav-quick-tray.html.twig", "/mnt/data/Sites/static-ethica.net/user/plugins/admin/themes/grav/templates/partials/nav-quick-tray.html.twig");
- }
- }
|