parent = false; $this->blocks = array( ); } protected function doDisplay(array $context, array $blocks = array()) { // line 1 if ((($context["export_type"] ?? null) == "server")) { // line 2 echo " "; echo PhpMyAdmin\Url::getHiddenInputs("", "", 1); echo " "; } elseif (( // line 3 ($context["export_type"] ?? null) == "database")) { // line 4 echo " "; echo PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null), "", 1); echo " "; } else { // line 6 echo " "; echo PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null), ($context["table"] ?? null), 1); echo " "; } // line 8 echo " "; // line 10 if ( !twig_test_empty(($context["single_table"] ?? null))) { // line 11 echo " "; } // line 13 echo " env, ($context["export_type"] ?? null), "html", null, true); echo "\"> "; // line 17 echo "env, ($context["export_method"] ?? null), "html", null, true); echo "\"> "; // line 19 if ( !twig_test_empty(($context["sql_query"] ?? null))) { // line 20 echo " env, ($context["sql_query"] ?? null), "html", null, true); echo "\"> "; } // line 22 echo " env, ($context["template_id"] ?? null), "html", null, true); echo "\"> "; } public function getTemplateName() { return "display/export/hidden_inputs.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 74 => 23, 71 => 22, 65 => 20, 63 => 19, 57 => 17, 52 => 14, 49 => 13, 45 => 11, 43 => 10, 40 => 8, 34 => 6, 28 => 4, 26 => 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("", "display/export/hidden_inputs.twig", "/var/www/html/phpMyAdmin/templates/display/export/hidden_inputs.twig"); } }