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