public function __construct(Twig_Environment $env)
 {
     parent::__construct($env);
     $this->parent = false;
     $this->blocks = array();
 }
 public function __construct(Twig_Environment $env)
 {
     parent::__construct($env);
     $this->parent = $this->env->loadTemplate("_layouts/cp");
     $this->blocks = array();
 }
 public function __construct(Twig_Environment $env)
 {
     parent::__construct($env);
     $this->parent = $this->env->loadTemplate("_layout");
     $this->blocks = array('content' => array($this, 'block_content'));
 }
 public function __construct(Twig_Environment $env)
 {
     parent::__construct($env);
     $this->parent = $this->env->loadTemplate("_layouts/elementindex");
     $this->blocks = array('sidebar' => array($this, 'block_sidebar'));
 }
 public function __construct(Twig_Environment $env)
 {
     parent::__construct($env);
     $this->parent = false;
     $this->blocks = array('head' => array($this, 'block_head'), 'body' => array($this, 'block_body'), 'foot' => array($this, 'block_foot'));
 }
 public function __construct(Twig_Environment $env)
 {
     parent::__construct($env);
     $this->parent = $this->env->loadTemplate("_layouts/basecp");
     $this->blocks = array('body' => array($this, 'block_body'), 'pageHeader' => array($this, 'block_pageHeader'), 'main' => array($this, 'block_main'), 'content' => array($this, 'block_content'));
 }
 public function __construct(Twig_Environment $env)
 {
     parent::__construct($env);
     $this->parent = false;
     $this->blocks = array('metaDescription' => array($this, 'block_metaDescription'), 'head_end' => array($this, 'block_head_end'), 'body_start' => array($this, 'block_body_start'), 'header' => array($this, 'block_header'), 'content' => array($this, 'block_content'), 'footer' => array($this, 'block_footer'), 'scripts_start' => array($this, 'block_scripts_start'), 'body_end' => array($this, 'block_body_end'));
 }