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 31 ob_start(function () { return ''; }); // line 32 echo " "; echo _gettext("@SERVER@ will become the server name."); $context["filename_hint"] = ('' === $tmp = ob_get_clean()) ? '' : new Markup($tmp, $this->env->getCharset()); // line 1 $this->parent = $this->loadTemplate("export.twig", "server/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; echo _gettext("Exporting databases from the current server"); } // line 5 public function block_selection_options($context, array $blocks = []) { $macros = $this->macros; // line 6 echo "

"; // line 7 echo _gettext("Databases:"); echo "

"; // line 12 echo _gettext("Select all"); // line 13 echo " / "; // line 16 echo _gettext("Unselect all"); // line 17 echo "

"; } public function getTemplateName() { return "server/export/index.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 111 => 26, 102 => 23, 95 => 22, 91 => 21, 85 => 17, 83 => 16, 78 => 13, 76 => 12, 68 => 7, 65 => 6, 61 => 5, 54 => 3, 49 => 1, 45 => 32, 43 => 31, 36 => 1,); } public function getSourceContext() { return new Source("", "server/export/index.twig", "/var/www/localhost/htdocs/phpmyadmin/templates/server/export/index.twig"); } }