source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 yield from $this->unwrap()->yieldBlock('content', $context, $blocks); // line 2 yield " "; // line 3 yield $this->extensions['MailPoet\Twig\I18n']->translate("How to improve my open rate?"); yield " https://www.mailpoet.com/how-to-improve-open-rates/ "; // line 4 yield $this->extensions['MailPoet\Twig\I18n']->translate("And my click rate?"); yield " https://www.mailpoet.com/how-to-improve-click-rates/ "; // line 5 yield $this->extensions['MailPoet\Twig\I18n']->translate("Disable these emails"); yield " "; yield $this->env->getRuntime('MailPoetVendor\Twig\Runtime\EscaperRuntime')->escape(($context["linkSettings"] ?? null), "html", null, true); yield " "; return; yield ''; } // line 1 public function block_content($context, array $blocks = []) { $macros = $this->macros; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "emails/statsNotificationLayout.txt"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 61 => 1, 52 => 5, 48 => 4, 44 => 3, 41 => 2, 39 => 1,); } public function getSourceContext() { return new Source("", "emails/statsNotificationLayout.txt", "/home/circleci/mailpoet/mailpoet/views/emails/statsNotificationLayout.txt"); } }