Viewing file: 805a26f06512c8a151a92bae5a45d60fede186038a52aecd98c1be14dd91729d.php (2.08 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;
/* table/search/table_header.twig */ class __TwigTemplate_0c513d95536b604b10dde730756d5f46c35ac8d1a0628333aaadb9dc0f6623b6 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 "<thead> <tr> "; // line 3 if (($context["geom_column_flag"] ?? null)) { // line 4 echo " <th>"; echo _gettext("Function"); echo "</th> "; } // line 6 echo " <th>"; echo _gettext("Column"); echo "</th> <th>"; // line 7 echo _gettext("Type"); echo "</th> <th>"; // line 8 echo _gettext("Collation"); echo "</th> <th>"; // line 9 echo _gettext("Operator"); echo "</th> <th>"; // line 10 echo _gettext("Value"); echo "</th> </tr> </thead> "; }
public function getTemplateName() { return "table/search/table_header.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 66 => 10, 62 => 9, 58 => 8, 54 => 7, 49 => 6, 43 => 4, 41 => 3, 37 => 1,); }
public function getSourceContext() { return new Source("", "table/search/table_header.twig", "/usr/share/phpmyadmin/templates/table/search/table_header.twig"); } }
|