Viewing file: a5699ee55b9fe003ce008d377aa36352518fb9a7fa7009806fe1893d836d859a.php (1.73 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/browse_table_label.twig */ class __TwigTemplate_e6c0857c51970022b14ea391c92c802a75dd3fdba2e566fab384afcb936be6f3 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 href=\"sql.php"; echo ($context["tbl_url_query"] ?? null); echo "&pos=0\" title=\""; echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true); echo "\"> "; // line 2 echo twig_escape_filter($this->env, ($context["truename"] ?? null), "html", null, true); echo " </a> "; }
public function getTemplateName() { return "database/structure/browse_table_label.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 44 => 2, 37 => 1,); }
public function getSourceContext() { return new Source("", "database/structure/browse_table_label.twig", "/usr/share/phpmyadmin/templates/database/structure/browse_table_label.twig"); } }
|