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 "
"; } 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"); } }