<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
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;
use Twig\TemplateWrapper;
/* navigation/tree/controls.twig */
class __TwigTemplate_b39d37184e2f73d2d34f2d37a9f03568 extends Template
{
private Source $source;
/**
* @var array<string, Template>
*/
private array $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 = []): iterable
{
$macros = $this->macros;
// line 1
yield "<!-- CONTROLS START -->
<li id=\"navigation_controls_outer\">
<div id=\"navigation_controls\">
";
// line 4
yield ($context["collapse_all"] ?? null);
yield "
";
// line 5
yield ($context["unlink"] ?? null);
yield "
</div>
</li>
<!-- CONTROLS ENDS -->
";
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "navigation/tree/controls.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable(): bool
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 51 => 5, 47 => 4, 42 => 1,);
}
public function getSourceContext(): Source
{
return new Source("", "navigation/tree/controls.twig", "/usr/share/phpmyadmin/templates/navigation/tree/controls.twig");
}
}