File: D:/web/matomo.circ/tmp/templates_c/45/452e16536787d109ea55351cfe4898de.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;
/* @MarketingCampaignsReporting/visitorDetails.twig */
class __TwigTemplate_8a33f20c2d02f80aa6ce12c7adc0e0ed extends 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
if ((isset($context["campaign"]) || array_key_exists("campaign", $context) ? $context["campaign"] : (function () { throw new RuntimeError('Variable "campaign" does not exist.', 1, $this->source); })())) {
// line 2
yield " <div class=\"visitorCampaign\">
<b>";
// line 3
yield \Piwik\piwik_escape_filter($this->env, $this->env->getFilter('translate')->getCallable()("Referrers_ColumnCampaign"), "html", null, true);
yield "</b><br/>
";
// line 4
$context['_parent'] = $context;
$context['_seq'] = CoreExtension::ensureTraversable((isset($context["campaign"]) || array_key_exists("campaign", $context) ? $context["campaign"] : (function () { throw new RuntimeError('Variable "campaign" does not exist.', 4, $this->source); })()));
foreach ($context['_seq'] as $context["name"] => $context["value"]) {
// line 5
yield " ";
yield \Piwik\piwik_escape_filter($this->env, $context["name"], "html", null, true);
yield ": ";
yield \Piwik\piwik_escape_filter($this->env, $context["value"], "html", null, true);
yield "<br/>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['name'], $context['value'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 7
yield " </div>
";
}
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "@MarketingCampaignsReporting/visitorDetails.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 62 => 7, 51 => 5, 47 => 4, 43 => 3, 40 => 2, 38 => 1,);
}
public function getSourceContext()
{
return new Source("{% if campaign %}
<div class=\"visitorCampaign\">
<b>{{ 'Referrers_ColumnCampaign'|translate }}</b><br/>
{% for name,value in campaign %}
{{ name }}: {{ value }}<br/>
{% endfor %}
</div>
{% endif %}", "@MarketingCampaignsReporting/visitorDetails.twig", "D:\\web\\matomo.circ\\plugins\\MarketingCampaignsReporting\\templates\\visitorDetails.twig");
}
}