Server IP : 15.235.198.142 / Your IP : 216.73.216.43 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/lib/phpmyadmin/tmp/twig/5f/ |
Upload File : |
<?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; /* table/export/index.twig */ class __TwigTemplate_fefd4b91f88de3829274d3fff5ba269c extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ 'title' => [$this, 'block_title'], ]; } protected function doGetParent(array $context) { // line 1 return "export.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 11 ob_start(function () { return ''; }); // line 12 echo " "; echo _gettext("@SERVER@ will become the server name, @DATABASE@ will become the database name and @TABLE@ will become the table name."); $context["filename_hint"] = ('' === $tmp = ob_get_clean()) ? '' : new Markup($tmp, $this->env->getCharset()); // line 1 $this->parent = $this->loadTemplate("export.twig", "table/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, twig_sprintf(_gettext("Exporting rows from \"%s\" table"), ($context["table"] ?? null)), "html", null, true); echo " "; } } /** * @codeCoverageIgnore */ public function getTemplateName() { return "table/export/index.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 67 => 7, 64 => 6, 60 => 5, 57 => 4, 53 => 3, 48 => 1, 44 => 12, 42 => 11, 35 => 1,); } public function getSourceContext() { return new Source("", "table/export/index.twig", "/usr/share/phpmyadmin/templates/table/export/index.twig"); } }