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 25 ob_start(function () { return ''; }); // line 26 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 "
"; echo _gettext("Databases"); // line 7 echo "
"; } public function getTemplateName() { return "server/export/index.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 108 => 20, 99 => 17, 92 => 16, 88 => 15, 85 => 14, 79 => 11, 75 => 10, 69 => 7, 65 => 6, 61 => 5, 54 => 3, 49 => 1, 45 => 26, 43 => 25, 36 => 1,); } public function getSourceContext() { return new Source("", "server/export/index.twig", "/usr/local/cpanel/base/3rdparty/phpMyAdmin/templates/server/export/index.twig"); } }