コード例 #1
0
 /**
  * stuff in this view doesnt need to be authed
  */
 public function __construct()
 {
     parent::__construct(false);
 }
コード例 #2
0
 public function __construct()
 {
     // ensure login
     parent::__construct(true);
 }
コード例 #3
0
 public function __construct()
 {
     // require user to be logged in for this view
     parent::__construct(true);
 }