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); return; yield ''; } public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 2 yield " "; if ((($context["formType"] ?? null) == "others")) { // line 3 yield "
"; } else { // line 11 yield " "; yield ($context["post"] ?? null); yield " "; // line 12 yield ($context["form"] ?? null); yield " "; } return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "form/form_preview.html"; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 68 => 12, 63 => 11, 55 => 6, 50 => 3, 47 => 2, 39 => 1,); } public function getSourceContext() { return new Source("", "form/form_preview.html", "/home/circleci/mailpoet/mailpoet/views/form/form_preview.html"); } }