<?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'], 'after_javascript' => [$this, 'block_after_javascript'], 'after_css' => [$this, 'block_after_css'], ]; } 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> "; } // line 9 public function block_after_javascript($context, array $blocks = []) { $macros = $this->macros; // line 10 echo " <script type=\"text/javascript\"> var mailpoet_automation_api = "; // line 11 echo json_encode(($context["api"] ?? null)); echo "; var mailpoet_workflow_count = "; // line 12 echo json_encode(($context["workflowCount"] ?? null)); echo "; </script> "; } // line 16 public function block_after_css($context, array $blocks = []) { $macros = $this->macros; // line 17 echo $this->extensions['MailPoet\Twig\Assets']->generateStylesheet("mailpoet-automation.css"); echo " "; } public function getTemplateName() { return "automation.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 81 => 17, 77 => 16, 70 => 12, 66 => 11, 63 => 10, 59 => 9, 52 => 4, 48 => 3, 37 => 1,); } public function getSourceContext() { return new Source("", "automation.html", "/home/circleci/mailpoet/mailpoet/views/automation.html"); } }