Viewing file: 4e6948dcc071d4c512cea83ff556002e2c2b4e28d4f18250c99baafd939a14b8.php (1.53 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/search_table.twig */ class __TwigTemplate_e96f46d2a3298ecffdd6c95a6503dd15f87996dce6c3eaed4dd5e89e126b8454 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=\"tbl_select.php"; echo ($context["tbl_url_query"] ?? null); echo "\"> "; // line 2 echo ($context["title"] ?? null); echo " </a> "; }
public function getTemplateName() { return "database/structure/search_table.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 42 => 2, 37 => 1,); }
public function getSourceContext() { return new Source("", "database/structure/search_table.twig", "/usr/share/phpmyadmin/templates/database/structure/search_table.twig"); } }
|