Viewing file: 15cf25723249dc245464b9e7d032a7a7d74827f0f07e9b2eb30c1d5d91d6ebcb.php (2.33 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template;
/* server/plugins/section_links.twig */ class __TwigTemplate_72fc1d3584d52041e0a78e687eee91cff64496e171d157d335dc5af36d7f4df7 extends \Twig\Template { private $source; private $macros = [];
public function __construct(Environment $env) { parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [ ]; }
protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 echo "<div id=\"sectionlinks\"> "; // line 2 $context['_parent'] = $context; $context['_seq'] = twig_ensure_traversable(twig_get_array_keys_filter(($context["plugins"] ?? null))); foreach ($context['_seq'] as $context["_key"] => $context["plugin_type"]) { // line 3 echo " <a href=\"#plugins-"; echo twig_escape_filter($this->env, preg_replace("/[^a-z]/", "", twig_lower_filter($this->env, $context["plugin_type"])), "html", null, true); echo "\"> "; // line 4 echo twig_escape_filter($this->env, $context["plugin_type"], "html", null, true); echo " </a> "; } $_parent = $context['_parent']; unset($context['_seq'], $context['_iterated'], $context['_key'], $context['plugin_type'], $context['_parent'], $context['loop']); $context = array_intersect_key($context, $_parent) + $_parent; // line 7 echo "</div> "; }
public function getTemplateName() { return "server/plugins/section_links.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 58 => 7, 49 => 4, 44 => 3, 40 => 2, 37 => 1,); }
public function getSourceContext() { return new Source("", "server/plugins/section_links.twig", "/usr/share/phpmyadmin/templates/server/plugins/section_links.twig"); } }
|