geno/wp-content/plugins/mailpoet/generated/twig/94/94feef30e518f71dae774ce3b21122b280d35f06cb7d39a98f5d0937e631ee72.php
2024-02-01 11:54:18 +00:00

109 lines
3 KiB
PHP

<?php
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Environment;
use MailPoetVendor\Twig\Error\LoaderError;
use MailPoetVendor\Twig\Error\RuntimeError;
use MailPoetVendor\Twig\Extension\SandboxExtension;
use MailPoetVendor\Twig\Markup;
use MailPoetVendor\Twig\Sandbox\SecurityError;
use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedTagError;
use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedFilterError;
use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedFunctionError;
use MailPoetVendor\Twig\Source;
use MailPoetVendor\Twig\Template;
/* automation.html */
class __TwigTemplate_5c71d57f60a0f5a4fc5d48d80259463fe103c80202fce3a75da88803acda1c77 extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'content' => [$this, 'block_content'],
];
}
protected function doGetParent(array $context)
{
// line 1
return "layout.html";
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$this->parent = $this->loadTemplate("layout.html", "automation.html", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_content($context, array $blocks = [])
{
$macros = $this->macros;
// line 4
echo "<div class=\"wrap\">
<div id=\"mailpoet_automation\"></div>
</div>
<script type=\"text/javascript\">
var mailpoet_locale_full = ";
// line 9
echo json_encode(($context["locale_full"] ?? null));
echo ";
var mailpoet_automation_api = ";
// line 10
echo json_encode(($context["api"] ?? null));
echo ";
var mailpoet_automation_count = ";
// line 11
echo json_encode(($context["automationCount"] ?? null));
echo ";
var mailpoet_automation_templates = ";
// line 12
echo json_encode(($context["templates"] ?? null));
echo ";
var mailpoet_automation_template_categories = ";
// line 13
echo json_encode(($context["template_categories"] ?? null));
echo ";
var mailpoet_automation_registry = ";
// line 14
echo json_encode(($context["registry"] ?? null));
echo ";
var mailpoet_automation_context = ";
// line 15
echo json_encode(($context["context"] ?? null));
echo ";
</script>
";
}
public function getTemplateName()
{
return "automation.html";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 81 => 15, 77 => 14, 73 => 13, 69 => 12, 65 => 11, 61 => 10, 57 => 9, 50 => 4, 46 => 3, 35 => 1,);
}
public function getSourceContext()
{
return new Source("", "automation.html", "/home/circleci/mailpoet/mailpoet/views/automation.html");
}
}