Viewing file: cdf2f16e017af3fd55b74c398d20c47c42cda95d863c8031de4ccf4348b4c606.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_0c4d16cc650312ef52ddbef695c789ac67e865e83940fcddee9b4e3d9e8f882c 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"); } }
|