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); $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("settings_translations.html", "settings.html", 26)->display($context); // line 27 echo " "; $this->loadTemplate("premium_key_validation_strings.html", "settings.html", 27)->display($context); } public function getTemplateName() { return "settings.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 122 => 27, 120 => 26, 116 => 24, 112 => 22, 108 => 21, 104 => 20, 100 => 19, 96 => 18, 92 => 17, 88 => 16, 84 => 15, 80 => 14, 76 => 13, 72 => 12, 68 => 11, 64 => 10, 60 => 9, 55 => 8, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "settings.html", "/home/circleci/mailpoet/mailpoet/views/settings.html"); } }