source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 yield "
{{ model.code }}
"; // line 5 yield $this->extensions['MailPoet\Twig\I18n']->translate("The coupon code will be auto-generated when this campaign is activated."); yield " {{#ifCond model.isStandardEmail '==' true}} "; // line 7 yield $this->extensions['MailPoet\Twig\I18n']->translate("All subscribers of this campaign will receive the same coupon code."); yield " {{else}} "; // line 9 yield $this->extensions['MailPoet\Twig\I18n']->translate("Each subscriber of this campaign will receive a new coupon code."); yield " {{/ifCond}}
"; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "newsletter/templates/blocks/coupon/block.hbs"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 54 => 9, 49 => 7, 44 => 5, 38 => 1,); } public function getSourceContext() { return new Source("", "newsletter/templates/blocks/coupon/block.hbs", "/home/circleci/mailpoet/mailpoet/views/newsletter/templates/blocks/coupon/block.hbs"); } }