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); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 echo "
"; // line 26 $this->loadTemplate("segments/translations.html", "segments/dynamic.html", 26)->display($context); } // line 30 public function block_after_translations($context, array $blocks = []) { $macros = $this->macros; // line 31 echo " "; echo do_action("mailpoet_segments_translations_after"); echo " "; } public function getTemplateName() { return "segments/dynamic.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 134 => 31, 130 => 30, 126 => 26, 120 => 23, 116 => 22, 112 => 21, 108 => 20, 104 => 19, 100 => 18, 96 => 17, 92 => 16, 88 => 15, 84 => 14, 80 => 13, 76 => 12, 72 => 11, 68 => 10, 64 => 9, 60 => 8, 56 => 7, 51 => 4, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "segments/dynamic.html", "/home/circleci/mailpoet/mailpoet/views/segments/dynamic.html"); } }