source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 echo "
"; // line 2 echo PhpMyAdmin\Url::getHiddenInputs(["db" => ($context["db"] ?? null), "table" => ($context["table"] ?? null), "selected" => ($context["fields"] ?? null)]); echo "
"; echo _gettext("Do you really want to execute the following query?"); // line 7 echo " ALTER TABLE "; // line 10 echo twig_escape_filter($this->env, PhpMyAdmin\Util::backquote(($context["table"] ?? null)), "html", null, true); echo "
"; // line 11 $context['_parent'] = $context; $context['_seq'] = twig_ensure_traversable(($context["fields"] ?? null)); $context['loop'] = [ 'parent' => $context['_parent'], 'index0' => 0, 'index' => 1, 'first' => true, ]; if (is_array($context['_seq']) || (is_object($context['_seq']) && $context['_seq'] instanceof \Countable)) { $length = count($context['_seq']); $context['loop']['revindex0'] = $length - 1; $context['loop']['revindex'] = $length; $context['loop']['length'] = $length; $context['loop']['last'] = 1 === $length; } foreach ($context['_seq'] as $context["_key"] => $context["field"]) { // line 12 echo "   DROP "; echo twig_escape_filter($this->env, PhpMyAdmin\Util::backquote($context["field"]), "html", null, true); // line 13 if (twig_get_attribute($this->env, $this->source, $context["loop"], "last", [], "any", false, false, false, 13)) { echo ";"; } else { echo ",
"; } // line 14 echo " "; ++$context['loop']['index0']; ++$context['loop']['index']; $context['loop']['first'] = false; if (isset($context['loop']['length'])) { --$context['loop']['revindex0']; --$context['loop']['revindex']; $context['loop']['last'] = 0 === $context['loop']['revindex0']; } } $_parent = $context['_parent']; unset($context['_seq'], $context['_iterated'], $context['_key'], $context['field'], $context['_parent'], $context['loop']); $context = array_intersect_key($context, $_parent) + $_parent; // line 15 echo "
"; } public function getTemplateName() { return "table/structure/drop_confirm.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 110 => 20, 106 => 19, 99 => 15, 85 => 14, 79 => 13, 76 => 12, 59 => 11, 55 => 10, 50 => 7, 42 => 2, 37 => 1,); } public function getSourceContext() { return new Source("", "table/structure/drop_confirm.twig", "/usr/local/cpanel/base/3rdparty/phpMyAdmin/templates/table/structure/drop_confirm.twig"); } }