source = $this->getSourceContext(); $this->blocks = [ 'title' => [$this, 'block_title'], 'selection_options' => [$this, 'block_selection_options'], ]; } protected function doGetParent(array $context) { // line 1 return "export.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 61 ob_start(function () { return ''; }); // line 62 echo " "; echo _gettext("@SERVER@ will become the server name and @DATABASE@ will become the database name."); $context["filename_hint"] = ('' === $tmp = ob_get_clean()) ? '' : new Markup($tmp, $this->env->getCharset()); // line 1 $this->parent = $this->loadTemplate("export.twig", "database/export/index.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_title($context, array $blocks = []) { $macros = $this->macros; // line 4 echo " "; if ((($context["export_type"] ?? null) == "raw")) { // line 5 echo " "; // l10n: A query that the user has written freely echo _gettext("Exporting a raw query"); // line 6 echo " "; } else { // line 7 echo " "; echo twig_escape_filter($this->env, sprintf(_gettext("Exporting tables from \"%s\" database"), ($context["db"] ?? null)), "html", null, true); echo " "; } } // line 11 public function block_selection_options($context, array $blocks = []) { $macros = $this->macros; // line 12 echo " "; if ((($context["export_type"] ?? null) != "raw")) { // line 13 echo "
"; } } public function getTemplateName() { return "database/export/index.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 170 => 54, 158 => 50, 150 => 47, 145 => 45, 138 => 43, 134 => 41, 130 => 40, 116 => 29, 109 => 25, 105 => 24, 101 => 23, 92 => 17, 86 => 14, 83 => 13, 80 => 12, 76 => 11, 68 => 7, 65 => 6, 61 => 5, 58 => 4, 54 => 3, 49 => 1, 45 => 62, 43 => 61, 36 => 1,); } public function getSourceContext() { return new Source("", "database/export/index.twig", "/var/www/web360/htdocs/leitgedanken_php8/pma/templates/database/export/index.twig"); } }