source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], ]; } 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", "settings.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 28 yield from $this->loadTemplate("settings_translations.html", "settings.html", 28)->unwrap()->yield($context); // line 29 yield " "; yield from $this->loadTemplate("premium_key_validation_strings.html", "settings.html", 29)->unwrap()->yield($context); return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "settings.html"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 131 => 29, 129 => 28, 125 => 26, 121 => 24, 117 => 23, 113 => 22, 109 => 21, 105 => 20, 101 => 19, 97 => 18, 93 => 17, 89 => 16, 85 => 15, 81 => 14, 77 => 13, 73 => 12, 69 => 11, 65 => 10, 61 => 9, 56 => 8, 51 => 4, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "settings.html", "/home/circleci/mailpoet/mailpoet/views/settings.html"); } }