public function __construct()
 {
     parent::__construct();
     // Remove the layout.phtml wrapper for feeds
     $this->layout = null;
     $this->feed_type = (string) Pixelpost_Uri::fragment(1);
 }
 public function __construct()
 {
     parent::__construct();
     /**
      * If no title is set, create a generic title based off of the view's name.
      */
     if (empty($this->view->title)) {
         $title = ucwords($this->front->getView());
         Pixelpost_Plugin::executeFilter('filter_title', $title);
         $this->view->title = $title;
     }
 }
 public function __construct()
 {
     parent::__construct();
 }