/**
  * Construct this object by extending the basic Controller class.
  */
 public function __construct()
 {
     parent::__construct();
     // VERY IMPORTANT: All controllers/areas that should only be usable by logged-in users
     // need this line! Otherwise not-logged in users could do actions.
     \Huge\Core\Auth::checkAuthentication();
 }
 /**
  * Construct this object by extending the basic Controller class
  */
 public function __construct()
 {
     parent::__construct();
     // VERY IMPORTANT: All controllers/areas that should only be usable by logged-in users
     // need this line! Otherwise not-logged in users could do actions. If all of your pages should only
     // be usable by logged-in users: Put this line into libs/Controller->__construct
     \Huge\Core\Auth::checkAuthentication();
 }
 /**
  * Construct this object by extending the basic Controller class
  */
 public function __construct()
 {
     parent::__construct();
     // this entire controller should only be visible/usable by logged in users, so we put authentication-check here
     \Huge\Core\Auth::checkAuthentication();
 }