Viewing file: cf3c2e406a17442622fce7baccecc3f96344514f33e12e4ead4abe217a7b2b35.php (1.87 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;
/* database/structure/empty_table.twig */ class __TwigTemplate_224a1b88bf9a5cd7a2d533df3a1a92aeeefaae51d445d4587921f9515ef37d0c 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 "<a class=\"truncate_table_anchor ajax\" href=\"sql.php\" data-post=\""; echo ($context["tbl_url_query"] ?? null); echo "&sql_query="; // line 2 echo twig_escape_filter($this->env, ($context["sql_query"] ?? null), "html", null, true); echo "&message_to_show="; echo twig_escape_filter($this->env, ($context["message_to_show"] ?? null), "html", null, true); echo "\"> "; // line 3 echo ($context["title"] ?? null); echo " </a> "; }
public function getTemplateName() { return "database/structure/empty_table.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 47 => 3, 41 => 2, 37 => 1,); }
public function getSourceContext() { return new Source("", "database/structure/empty_table.twig", "/usr/share/phpmyadmin/templates/database/structure/empty_table.twig"); } }
|