parent = false; $this->blocks = array( ); } protected function doDisplay(array $context, array $blocks = array()) { // line 1 echo "
"; // line 2 echo PhpMyAdmin\Url::getHiddenInputs((isset($context["db"]) ? $context["db"] : null)); echo "
"; // line 9 $this->loadTemplate("database/designer/page_selector.twig", "database/designer/page_save_as.twig", 9)->display(array("pdfwork" => // line 10 (isset($context["pdfwork"]) ? $context["pdfwork"] : null), "pages" => // line 11 (isset($context["pages"]) ? $context["pages"] : null))); // line 13 echo "
"; // line 17 echo PhpMyAdmin\Util::getRadioFields("save_page", array("same" => _gettext("Save to selected page"), "new" => _gettext("Create a page and save to it")), "same", true); // line 25 echo "
"; } public function getTemplateName() { return "database/designer/page_save_as.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 51 => 30, 44 => 25, 42 => 17, 36 => 13, 34 => 11, 33 => 10, 32 => 9, 22 => 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("", "database/designer/page_save_as.twig", "/var/www/localhost/htdocs/phpmyadmin/templates/database/designer/page_save_as.twig"); } }