/
home
/
corsairdevelopme
/
tmp
/
pma_template_compiles_corsairdevelopme
/
twig
/
07
/
Upload File
HOME
<?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; /* preview_sql.twig */ class __TwigTemplate_eb54684088434118943b5c3e6b8daa43 extends 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 class=\"preview_sql\"> "; // line 2 if (twig_test_empty(($context["query_data"] ?? null))) { // line 3 echo " "; echo _gettext("No change"); // line 4 echo " "; } elseif (twig_test_iterable(($context["query_data"] ?? null))) { // line 5 echo " "; $context['_parent'] = $context; $context['_seq'] = twig_ensure_traversable(($context["query_data"] ?? null)); foreach ($context['_seq'] as $context["_key"] => $context["query"]) { // line 6 echo " "; echo PhpMyAdmin\Html\Generator::formatSql($context["query"]); echo " "; } $_parent = $context['_parent']; unset($context['_seq'], $context['_iterated'], $context['_key'], $context['query'], $context['_parent'], $context['loop']); $context = array_intersect_key($context, $_parent) + $_parent; // line 8 echo " "; } else { // line 9 echo " "; echo PhpMyAdmin\Html\Generator::formatSql(($context["query_data"] ?? null)); echo " "; } // line 11 echo "</div> "; } public function getTemplateName() { return "preview_sql.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 71 => 11, 65 => 9, 62 => 8, 53 => 6, 48 => 5, 45 => 4, 42 => 3, 40 => 2, 37 => 1,); } public function getSourceContext() { return new Source("", "preview_sql.twig", "/usr/local/cpanel/base/3rdparty/phpMyAdmin/templates/preview_sql.twig"); } }