File: /var/www/apklausos/tmp/runtime/twig_cache/22/22d9b2ab8dcabf59fafb9e3200cba769.php
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
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;
/* /survey/questions/answer/list_with_comment/list/rows/answer_row.twig */
class __TwigTemplate_6695f60e646f358c16b1e6fd51e1ece8 extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
$this->sandbox = $this->extensions[SandboxExtension::class];
$this->checkSecurity();
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 14
yield "<!-- answer_row -->
<li id='javatbd";
// line 15
yield $this->sandbox->ensureToStringAllowed(($context["name"] ?? null), 15, $this->source);
yield $this->sandbox->ensureToStringAllowed(($context["value"] ?? null), 15, $this->source);
yield "' class=\"";
yield $this->sandbox->ensureToStringAllowed(($context["li_classes"] ?? null), 15, $this->source);
yield "\">
<input
type=\"radio\"
name=\"";
// line 18
yield $this->sandbox->ensureToStringAllowed(($context["name"] ?? null), 18, $this->source);
yield "\"
id=\"";
// line 19
yield $this->sandbox->ensureToStringAllowed(($context["id"] ?? null), 19, $this->source);
yield "\"
value=\"";
// line 20
yield $this->sandbox->ensureToStringAllowed(($context["value"] ?? null), 20, $this->source);
yield "\"
";
// line 21
yield $this->sandbox->ensureToStringAllowed(($context["check_ans"] ?? null), 21, $this->source);
yield "
onclick=\"";
// line 22
yield $this->sandbox->ensureToStringAllowed(($context["checkconditionFunction"] ?? null), 22, $this->source);
yield "\"
/>
<label for=\"";
// line 24
yield $this->sandbox->ensureToStringAllowed(($context["id"] ?? null), 24, $this->source);
yield "\" class=\"radio-label control-label\">";
yield LS_Twig_Extension::processString($this->sandbox->ensureToStringAllowed(($context["labeltext"] ?? null), 24, $this->source));
yield "</label>
</li>
<!-- end of answer_row -->
";
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "/survey/questions/answer/list_with_comment/list/rows/answer_row.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 73 => 24, 68 => 22, 64 => 21, 60 => 20, 56 => 19, 52 => 18, 43 => 15, 40 => 14,);
}
public function getSourceContext()
{
return new Source("", "/survey/questions/answer/list_with_comment/list/rows/answer_row.twig", "/var/www/apklausos/application/views/survey/questions/answer/list_with_comment/list/rows/answer_row.twig");
}
public function checkSecurity()
{
static $tags = array();
static $filters = array();
static $functions = array("processString" => 24);
try {
$this->sandbox->checkSecurity(
[],
[],
['processString'],
$this->source
);
} catch (SecurityError $e) {
$e->setSourceContext($this->source);
if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
$e->setTemplateLine($tags[$e->getTagName()]);
} elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
$e->setTemplateLine($filters[$e->getFilterName()]);
} elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
$e->setTemplateLine($functions[$e->getFunctionName()]);
}
throw $e;
}
}
}