File: /var/www/apklausos/tmp/runtime/twig_cache/50/50e488859c82af4b9caa5cd087b09891.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;
/* ./subviews/navigation/question_index_buttons.twig */
class __TwigTemplate_b12db4ea7b8e1e722a49b1b52ad1f8e8 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 7
yield "
<div class=\"col-md-6 index-wrapper\">
";
// line 9
if ((CoreExtension::getAttribute($this->env, $this->source, ($context["aSurveyInfo"] ?? null), "format", [], "any", false, false, true, 9) == "G")) {
// line 10
yield " ";
yield Twig\Extension\CoreExtension::include($this->env, $context, "./subviews/navigation/question_index_groups_buttons.twig");
yield "
";
}
// line 12
yield "
";
// line 13
if ((CoreExtension::getAttribute($this->env, $this->source, ($context["aSurveyInfo"] ?? null), "format", [], "any", false, false, true, 13) == "S")) {
// line 14
yield " ";
yield Twig\Extension\CoreExtension::include($this->env, $context, "./subviews/navigation/question_index_questions_buttons.twig");
yield "
";
}
// line 16
yield "</div>
";
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "./subviews/navigation/question_index_buttons.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 63 => 16, 57 => 14, 55 => 13, 52 => 12, 46 => 10, 44 => 9, 40 => 7,);
}
public function getSourceContext()
{
return new Source("", "./subviews/navigation/question_index_buttons.twig", "/var/www/apklausos/themes/survey/vanilla/views/subviews/navigation/question_index_buttons.twig");
}
public function checkSecurity()
{
static $tags = array("if" => 9);
static $filters = array();
static $functions = array("include" => 10);
try {
$this->sandbox->checkSecurity(
['if'],
[],
['include'],
$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;
}
}
}