source = $this->getSourceContext(); $this->blocks = [ 'title' => [$this, 'block_title'], 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "@base/Common/base.html"; } protected function doDisplay(array $context, array $blocks = []) { $this->parent = $this->loadTemplate("@base/Common/base.html", "@base/Index/index.html", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 2 public function block_title($context, array $blocks = []) { echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true); } // line 3 public function block_content($context, array $blocks = []) { // line 4 echo "

SQL:"; echo twig_escape_filter($this->env, ($context["query"] ?? null), "html", null, true); echo "

"; } public function getTemplateName() { return "@base/Index/index.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 77 => 9, 64 => 7, 60 => 6, 54 => 4, 51 => 3, 45 => 2, 35 => 1,); } public function getSourceContext() { return new Source("{% extends \"@base/Common/base.html\" %} {% block title %}{{ title }}{% endblock %} {% block content %}

SQL:{{ query }}

{% endblock %}", "@base/Index/index.html", "D:\\www\\TOP\\application\\home\\view\\Index\\index.html"); } }