Ocs-server/Gfx4/User management: Difference between revisions

From KDE Community Wiki
(Created page with "The EUser static class (with static methods) allows you to easily handle user management on your website. Admin panel will support also for easy gfx users management. Small r...")
 
No edit summary
 
Line 8: Line 8:
* '''void EUser::gallow($group)''' -> Allows access to this page to all users belonging to $group
* '''void EUser::gallow($group)''' -> Allows access to this page to all users belonging to $group
* '''bool EUser::logged()''' -> returns true if user is logged else false
* '''bool EUser::logged()''' -> returns true if user is logged else false
* '''bool EUser::is_already_present_login()''' -> returns true if login is already present else false
* '''bool EUser::is_already_present_email()''' -> returns true if email is already present else false
* '''string EUser::password()''' -> returns user's password  
* '''string EUser::password()''' -> returns user's password  
* '''string EUser::mail()''' -> returns user's mail
* '''string EUser::mail()''' -> returns user's mail

Latest revision as of 15:10, 18 May 2016

The EUser static class (with static methods) allows you to easily handle user management on your website. Admin panel will support also for easy gfx users management.

Small reference:

  • bool EUser::login($nick,$pass) -> attempts a login with given credentials
  • void EUser::logout() -> Performs a logout() call on whatever user is logged.
  • void EUser::gdeny($group) -> Denies access to this page to all users belonging to $group
  • void EUser::gallow($group) -> Allows access to this page to all users belonging to $group
  • bool EUser::logged() -> returns true if user is logged else false
  • bool EUser::is_already_present_login() -> returns true if login is already present else false
  • bool EUser::is_already_present_email() -> returns true if email is already present else false
  • string EUser::password() -> returns user's password
  • string EUser::mail() -> returns user's mail
  • string EUser::id() -> returns user's id
  • string EUser::group() -> returns user's group
  • void EUser::register($nick, $pass, $group) -> attempts a registration to gfx user system with given $nick, $pass and $group