File: D:/web/matomo.circ/tmp/templates_c/65/65895deb066495a2c594b9044d101aa0.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;
/* @CustomDimensions/manage.twig */
class __TwigTemplate_72bfd5502c5a6d017b0fb08d665f4df9 extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'topcontrols' => [$this, 'block_topcontrols'],
'content' => [$this, 'block_content'],
];
}
protected function doGetParent(array $context)
{
// line 1
return "admin.twig";
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$this->parent = $this->loadTemplate("admin.twig", "@CustomDimensions/manage.twig", 1);
yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_topcontrols($context, array $blocks = [])
{
$macros = $this->macros;
yield " <div class=\"top_bar_sites_selector piwikTopControl\">
<div vue-entry=\"CoreHome.SiteSelector\"
show-selected-site=\"true\"
show-all-sites-item=\"false\"
class=\"sites_autocomplete\"
></div>
</div>
";
return; yield '';
}
// line 13
public function block_content($context, array $blocks = [])
{
$macros = $this->macros;
yield " <div vue-entry=\"CustomDimensions.Manage\"></div>
";
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "@CustomDimensions/manage.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 63 => 13, 48 => 3, 37 => 1,);
}
public function getSourceContext()
{
return new Source("{% extends 'admin.twig' %}
{% block topcontrols %}
<div class=\"top_bar_sites_selector piwikTopControl\">
<div vue-entry=\"CoreHome.SiteSelector\"
show-selected-site=\"true\"
show-all-sites-item=\"false\"
class=\"sites_autocomplete\"
></div>
</div>
{% endblock %}
{% block content %}
<div vue-entry=\"CustomDimensions.Manage\"></div>
{% endblock %}", "@CustomDimensions/manage.twig", "D:\\web\\matomo.circ\\plugins\\CustomDimensions\\templates\\manage.twig");
}
}