source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], 'after_translations' => [$this, 'block_after_translations'], ]; } 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", "segments/dynamic.html", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 yield "
"; // line 30 yield from $this->loadTemplate("segments/translations.html", "segments/dynamic.html", 30)->unwrap()->yield($context); return; yield ''; } // line 34 public function block_after_translations($context, array $blocks = []) { $macros = $this->macros; // line 35 yield " "; yield do_action("mailpoet_segments_translations_after"); yield " "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "segments/dynamic.html"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 152 => 35, 148 => 34, 143 => 30, 137 => 27, 133 => 26, 129 => 25, 125 => 24, 121 => 23, 117 => 22, 113 => 21, 109 => 20, 105 => 19, 101 => 18, 97 => 17, 93 => 16, 89 => 15, 85 => 14, 81 => 13, 77 => 12, 73 => 11, 69 => 10, 65 => 9, 61 => 8, 57 => 7, 52 => 4, 48 => 3, 37 => 1,); } public function getSourceContext() { return new Source("", "segments/dynamic.html", "/home/circleci/mailpoet/mailpoet/views/segments/dynamic.html"); } }