File: /var/www/apklausos/tmp/runtime/twig_cache/41/417cf8f9043660a1b071f4719b6db789.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/arrays/10point/rows/answer_row.twig */
class __TwigTemplate_c9bae621d2f4f6e2a73175417a60c069 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 12
yield "
<!-- answer_row -->
<tr id=\"javatbd";
// line 14
yield $this->sandbox->ensureToStringAllowed(($context["myfname"] ?? null), 14, $this->source);
yield "\" class=\"answers-list radio-list mb-3 ";
if (($context["odd"] ?? null)) {
yield "ls-odd";
} else {
yield "ls-even";
}
yield " ";
if (($context["error"] ?? null)) {
yield " ls-error-mandatory has-error";
}
yield "\" ";
yield $this->sandbox->ensureToStringAllowed(($context["sDisplayStyle"] ?? null), 14, $this->source);
yield " role=\"radiogroup\" aria-labelledby=\"answertext";
yield $this->sandbox->ensureToStringAllowed(($context["myfname"] ?? null), 14, $this->source);
yield "\">
<th id=\"answertext";
// line 15
yield $this->sandbox->ensureToStringAllowed(($context["myfname"] ?? null), 15, $this->source);
yield "\" class=\"answertext control-label";
if ((($context["answerwidth"] ?? null) == 0)) {
yield " visually-hidden";
}
yield "\">
";
// line 16
yield LS_Twig_Extension::processString($this->sandbox->ensureToStringAllowed(($context["answertext"] ?? null), 16, $this->source));
yield "
";
// line 19
yield " ";
yield $this->sandbox->ensureToStringAllowed(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, ($context["C"] ?? null), "Html", [], "any", false, false, true, 19), "hiddenField", [("java" . $this->sandbox->ensureToStringAllowed(($context["myfname"] ?? null), 19, $this->source)), ($context["value"] ?? null), ["id" => ("java" . $this->sandbox->ensureToStringAllowed( // line 20
($context["myfname"] ?? null), 20, $this->source)), "disabled" => true]], "method", false, false, true, 19), 19, $this->source);
// line 23
yield "
</th>
";
// line 27
yield " ";
yield $this->sandbox->ensureToStringAllowed(($context["answer_tds"] ?? null), 27, $this->source);
yield "
</tr>
<!-- end of answer_row -->
";
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "/survey/questions/answer/arrays/10point/rows/answer_row.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 84 => 27, 79 => 23, 77 => 20, 75 => 19, 70 => 16, 62 => 15, 44 => 14, 40 => 12,);
}
public function getSourceContext()
{
return new Source("", "/survey/questions/answer/arrays/10point/rows/answer_row.twig", "/var/www/apklausos/application/views/survey/questions/answer/arrays/10point/rows/answer_row.twig");
}
public function checkSecurity()
{
static $tags = array("if" => 14);
static $filters = array();
static $functions = array("processString" => 16);
try {
$this->sandbox->checkSecurity(
['if'],
[],
['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;
}
}
}