parent = array(); $this->blocks = array( 'title' => array($this, 'block_title'), 'head' => array($this, 'block_head'), 'body' => array($this, 'block_body'), ); } protected function doDisplay(array $context, array $blocks = array()) { $context = array_merge($this->env->getGlobals(), $context); // line 1 echo " "; // line 6 $this->displayBlock('title', $context, $blocks); echo " env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/favicon.ico"), "html"); echo "\" /> "; // line 8 $this->displayBlock('head', $context, $blocks); // line 12 echo " "; // line 14 $this->displayBlock('body', $context, $blocks); // line 15 echo " "; } // line 6 public function block_title($context, array $blocks = array()) { echo "Profiler"; } // line 8 public function block_head($context, array $blocks = array()) { // line 9 echo " env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/css/toolbar.css"), "html"); echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" /> env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/css/profiler.css"), "html"); echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" /> "; } // line 14 public function block_body($context, array $blocks = array()) { echo ""; } public function getTemplateName() { return "WebProfilerBundle:Profiler:base.html.twig"; } public function isTraitable() { return false; } }