/**
  * stuff in this view doesnt need to be authed
  */
 public function __construct()
 {
     parent::__construct(false);
 }
 public function __construct()
 {
     // ensure login
     parent::__construct(true);
 }
 public function __construct()
 {
     // require user to be logged in for this view
     parent::__construct(true);
 }