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", "experimental-features.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 "

Experimental features

These features are not finished, they are not meant to be used yet.

If you enable them anything can happen: your website may go down, all your data can be deleted.

We are not liable.

"; } public function getTemplateName() { return "experimental-features.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "experimental-features.html", "/home/circleci/mailpoet/mailpoet/views/experimental-features.html"); } }