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

107 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/editor.html */
class __TwigTemplate_fb71bf89a426c5b5b4c882632d479b3cffbaded39146d864b8aea902ce949403 extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'container' => [$this, 'block_container'],
];
}
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/editor.html", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_container($context, array $blocks = [])
{
$macros = $this->macros;
// line 4
echo "<div id=\"mailpoet_automation_editor\" class=\"edit-site\"></div>
<script type=\"text/javascript\">
var mailpoet_locale_full = ";
// line 7
echo json_encode(($context["locale_full"] ?? null));
echo ";
var mailpoet_automation_api = ";
// line 8
echo json_encode(($context["api"] ?? null));
echo ";
var mailpoet_json_api = ";
// line 9
echo json_encode(($context["jsonapi"] ?? null));
echo ";
var mailpoet_segments = ";
// line 10
echo json_encode(($context["segments"] ?? null));
echo ";
var mailpoet_automation_registry = ";
// line 11
echo json_encode(($context["registry"] ?? null));
echo ";
var mailpoet_automation_context = ";
// line 12
echo json_encode(($context["context"] ?? null));
echo ";
var mailpoet_automation = ";
// line 13
echo ((($context["automation"] ?? null)) ? (json_encode(($context["automation"] ?? null))) : ("undefined"));
echo ";
</script>
";
}
public function getTemplateName()
{
return "automation/editor.html";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 79 => 13, 75 => 12, 71 => 11, 67 => 10, 63 => 9, 59 => 8, 55 => 7, 50 => 4, 46 => 3, 35 => 1,);
}
public function getSourceContext()
{
return new Source("", "automation/editor.html", "/home/circleci/mailpoet/mailpoet/views/automation/editor.html");
}
}