Viewing file: dc72b813c3dd7f95f2143ae9bbe0fd7a99ae9dc363a281fb752d401a7a4e76e5.php (2.01 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;
/* server/variables/session_variable_row.twig */ class __TwigTemplate_7e8d5a38a9f3b07ea33229b1e9d050a15c47930d1459e711441eff142d18d078 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 "<tr class=\"var-row "; echo twig_escape_filter($this->env, ($context["row_class"] ?? null), "html", null, true); echo "\" data-filter-row=\""; echo twig_escape_filter($this->env, twig_upper_filter($this->env, ($context["name"] ?? null)), "html", null, true); echo "\"> <td class=\"var-action\"></td> <td class=\"var-name session\">("; // line 3 echo _gettext("Session value"); echo ")</td> <td class=\"var-value value\"> "; // line 4 echo twig_escape_filter($this->env, ($context["value"] ?? null), "html", null, true); echo "</td> </tr> "; }
public function getTemplateName() { return "server/variables/session_variable_row.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 49 => 4, 45 => 3, 37 => 1,); }
public function getSourceContext() { return new Source("", "server/variables/session_variable_row.twig", "/usr/share/phpmyadmin/templates/server/variables/session_variable_row.twig"); } }
|