Viewing file: 30426a31c3570437b35dc445e3882dbde8d0e8afda056fd2ae8e0b65803dc866.php (1.63 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;
/* fk_checkbox.twig */ class __TwigTemplate_47cf6c8f23e530f8f46cf559b4b46b5dbc541321346f51bd47329bbf8e54b44e 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 "<input type=\"hidden\" name=\"fk_checks\" value=\"0\"> <input type=\"checkbox\" name=\"fk_checks\" id=\"fk_checks\" value=\"1\""; // line 3 echo ((($context["checked"] ?? null)) ? (" checked") : ("")); echo "> <label for=\"fk_checks\">"; // line 4 echo _gettext("Enable foreign key checks"); echo "</label> "; }
public function getTemplateName() { return "fk_checkbox.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 44 => 4, 40 => 3, 37 => 1,); }
public function getSourceContext() { return new Source("", "fk_checkbox.twig", "/usr/share/phpmyadmin/templates/fk_checkbox.twig"); } }
|