Viewing file: d343f72296eff4b111be7bd935b487c7e9f2233e777d6634352e32475a6fdfa2.php (1.81 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;
/* display/export/options_output_radio.twig */ class __TwigTemplate_d6e358b4b36d7df3a1d2362cdb469188e28d6e8f724a3f9b5be2aa5b6398c846 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 "<li> <input type=\"radio\" id=\"radio_view_as_text\" name=\"output_format\" value=\"astext\""; // line 3 echo (((($context["has_repopulate"] ?? null) || (($context["export_asfile"] ?? null) == false))) ? (" checked") : ("")); echo "> <label for=\"radio_view_as_text\"> "; // line 5 echo _gettext("View output as text"); // line 6 echo " </label> </li> "; }
public function getTemplateName() { return "display/export/options_output_radio.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 47 => 6, 45 => 5, 40 => 3, 37 => 1,); }
public function getSourceContext() { return new Source("", "display/export/options_output_radio.twig", "/usr/share/phpmyadmin/templates/display/export/options_output_radio.twig"); } }
|