Viewing file: 813db421bae108baf4abef16a57b511ad1856ab55da0f23d372ff9a1804fc608.php (2.45 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template;
/* display/export/option_header.twig */ class __TwigTemplate_d44274fc29fcbc5f2896edf7133cfb9bc84a672aac103a34bd2f8d34e04e137c extends \Twig\Template { private $source; private $macros = [];
public function __construct(Environment $env) { parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [ ]; }
protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 echo "<div class=\"exportoptions\" id=\"header\"> <h2> "; // line 3 echo PhpMyAdmin\Util::getImage("b_export", _gettext("Export")); echo " "; // line 4 if ((($context["export_type"] ?? null) == "server")) { // line 5 echo " "; echo _gettext("Exporting databases from the current server"); // line 6 echo " "; } elseif ((($context["export_type"] ?? null) == "database")) { // line 7 echo " "; echo twig_escape_filter($this->env, sprintf(_gettext("Exporting tables from \"%s\" database"), ($context["db"] ?? null)), "html", null, true); echo " "; } else { // line 9 echo " "; echo twig_escape_filter($this->env, sprintf(_gettext("Exporting rows from \"%s\" table"), ($context["table"] ?? null)), "html", null, true); echo " "; } // line 11 echo " </h2> </div> "; }
public function getTemplateName() { return "display/export/option_header.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 65 => 11, 59 => 9, 53 => 7, 50 => 6, 47 => 5, 45 => 4, 41 => 3, 37 => 1,); }
public function getSourceContext() { return new Source("", "display/export/option_header.twig", "/usr/share/phpmyadmin/templates/display/export/option_header.twig"); } }
|