$User
- is system object, that provides users manipulating interface, instance can be obtained in such way:
<?php
$User = \cs\User::instance();
$User
object has next public methods:
- get()
- set()
- get_data()
- set_data()
- del_data()
- admin()
- user()
- guest()
- get_id()
- avatar()
- username()
- search_users()
- get_permission()
- set_permission()
- del_permission()
- get_permissions()
- set_permissions()
- del_permissions_all()
- add_groups()
- get_groups()
- set_groups()
- del_groups()
- registration()
- registration_confirmation()
- registration_cancel()
- set_password()
- validate_password()
- restore_password()
- restore_password_confirmation()
- del_user()
- get_users_columns()
- dnt()
- disable_memory_cache()
get($item : string|string[], $user = false : false|int) : false|int|mixed[]|string|cs\User\Properties
Get data item of specified user. If $item
is integer - instance of cs\User\Properties
will be returned.
List of possible item may be found in properties section.
Also there is simplified way to get item - to get it as property of object:
<?php
$User = \cs\User::instance();
$login = $User->login;
Set data item of specified user, like get() also works with items as properties.
List of possible items may be found in properties section (except login_hash
and email_hash
- they changes automatically with login
and email
respectively).
<?php
$User = \cs\User::instance();
$User->about = 'Some about info';
Getting additional data item(s) of specified user
Setting additional data item(s) of specified user
Deletion of additional data item(s) of specified user
Is admin
Is user
Is guest
Get user id by login or email hash (sha224) (hash from lowercase string)
Get user avatar, if no one present - uses Gravatar
Get user name or login or email, depending on existing information
Search keyword in login, username and email
Get permission state for specified user.
Group - usually module name, or module name plus some section. Label - usually page route (without module), id of some item or section + id. Such structure is made for simpler managing of permissions.
Set permission state for specified user.
Delete permission state for specified user.
Get array of all permissions states for specified user
Set user's permissions according to the given array
Delete all user's permissions
Add user's groups
Get user's groups
Set user's groups
Delete user's groups
registration($email : string, $confirmation = true : bool, $auto_sign_in = true : bool) : array|false|string
User registration
Confirmation of registration process
Canceling of bad/failed registration
set_password($new_password : string, $user = false : false|int, $already_prepared = false : bool) : bool
Proper password setting without any need to deal with low-level implementation
validate_password($new_password : string, $user = false : false|int, $already_prepared = false : bool) : bool
Proper password validation without any need to deal with low-level implementation
Restoring of password
Confirmation of password restoring process
Delete specified user or array of users
Returns array of users columns, available for getting of data
Do not track checking
Disable memory cache to decrease RAM usage when working with large number of users.
###[Up](#) Properties$User
object has next public properties:
- id
- login
- login_hash
- username
- password_hash
- email_hash
- language
- timezone
- reg_date
- reg_ip
- reg_key
- status
- avatar
All properties are accessed through "magic" methods. Every property have PhpDoc section, so, type and format you can see there. All properties have simple scalar values.
###[Up](#) ConstantsUser
class has several constants:
- GUEST_ID
- ROOT_ID
- ADMIN_GROUP_ID
- USER_GROUP_ID
- STATUS_ACTIVE
- STATUS_INACTIVE
- STATUS_NOT_ACTIVATED
Id of system guest user
Id of first, primary system administrator
Id of system group for administrators
Id of system group for users
Status of active user
Status of inactive user
Status of not activated user
###[Up](#) Events$User
object supports next events:
- System/User/construct/before
- System/User/construct/after
- System/User/registration/before
- System/User/registration/after
- System/User/registration/confirmation/before
- System/User/registration/confirmation/after
- System/User/del/before
- System/User/del/after
Event is fired at the beginning of constructor
Event is fired at the end of constructor
Is running before registration, return false
stops and cancels registration process. Parameters array:
[
'email' => email
]
Is running after registration, return false
stops and cancels registration process. Parameters array:
[
'id' => user_id
]
Is running before registration confirmation, return false
stops and cancels registration process. Parameters array:
[
'reg_key' => reg_key
]
Is running after registration confirmation, return false
stops and cancels registration process. Parameters array:
[
'id' => user_id
]
Is running before user deletion. Parameters array:
[
'id' => user_id //id or array of ids
]
Is running after user deletion. Parameters array:
[
'id' => user_id //id or array of ids
]
This is abstract class, that is used for simplified access for various information about particular user.
This class has next public methods:
- get()
- set()
- avatar()
- username()
- get_data()
- set_data()
- del_data()
All methods are similar to the same methods of User class, except they do not require/support specifying of user id.
This class has next public properties:
- id
- login
- login_hash
- username
- password_hash
- email_hash
- language
- timezone
- reg_date
- reg_ip
- reg_key
- status
- avatar
All properties are accessed through "magic" methods. Every property have PhpDoc section, so, type and format you can see there. All properties have simple scalar values.