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", "automation/analytics.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 "
"; } public function getTemplateName() { return "automation/analytics.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 75 => 12, 71 => 11, 67 => 10, 63 => 9, 59 => 8, 55 => 7, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "automation/analytics.html", "/home/circleci/mailpoet/mailpoet/views/automation/analytics.html"); } }