Свойство | Тип | Описание | |
---|---|---|---|
$db | phpbb\db\driver\driver_interface | ||
$php_ext | string | ||
$phpbb_root_path | string | ||
$users | Users loaded from the DB | ||
$users_table | string |
Метод | Описание | |
---|---|---|
__construct ( phpbb\db\driver\driver_interface $db, string $phpbb_root_path, string $php_ext, string $users_table ) | User loader constructor | |
get_avatar ( integer $user_id, boolean $query = false ) : string | Get avatar | |
get_rank ( integer $user_id, boolean $query = false ) : array | Get rank | |
get_user ( integer $user_id, boolean $query = false ) : array | boolean | Get a user row from our users cache | |
get_username ( integer $user_id, string $mode, string $guest_username = false, string $custom_profile_url = false, boolean $query = false ) : string | Get username | |
load_user_by_username ( string $username ) : integer | Load a user by username | |
load_users ( array $user_ids ) | Load user helper |
public __construct ( phpbb\db\driver\driver_interface $db, string $phpbb_root_path, string $php_ext, string $users_table ) | ||
$db | phpbb\db\driver\driver_interface | A database connection |
$phpbb_root_path | string | Path to the phpbb includes directory. |
$php_ext | string | php file extension |
$users_table | string | The name of the database table (phpbb_users) |
public get_avatar ( integer $user_id, boolean $query = false ) : string | ||
$user_id | integer | User ID of the user you want to retrieve the avatar for |
$query | boolean | Should we query the database if this user has not yet been loaded? Typically this should be left as false and you should make sure you load users ahead of time with load_users() |
Результат | string |
public get_rank ( integer $user_id, boolean $query = false ) : array | ||
$user_id | integer | User ID of the user you want to retreive the rank for |
$query | boolean | Should we query the database if this user has not yet been loaded? Typically this should be left as false and you should make sure you load users ahead of time with load_users() |
Результат | array | Array with keys 'rank_title', 'rank_img', and 'rank_img_src' |
public get_user ( integer $user_id, boolean $query = false ) : array | boolean | ||
$user_id | integer | User ID of the user you want to retreive |
$query | boolean | Should we query the database if this user has not yet been loaded? Typically this should be left as false and you should make sure you load users ahead of time with load_users() |
Результат | array | boolean | Row from the database of the user or Anonymous if the user wasn't loaded/does not exist or bool False if the anonymous user was not loaded |
public get_username ( integer $user_id, string $mode, string $guest_username = false, string $custom_profile_url = false, boolean $query = false ) : string | ||
$user_id | integer | User ID of the user you want to retreive the username for |
$mode | string | The mode to load (same as get_username_string). One of the following: profile (for getting an url to the profile) username (for obtaining the username) colour (for obtaining the user colour) full (for obtaining a html string representing a coloured link to the users profile) no_profile (the same as full but forcing no profile link) |
$guest_username | string | Optional parameter to specify the guest username. It will be used in favor of the GUEST language variable then. |
$custom_profile_url | string | Optional parameter to specify a profile url. The user id get appended to this url as &u={user_id} |
$query | boolean | Should we query the database if this user has not yet been loaded? Typically this should be left as false and you should make sure you load users ahead of time with load_users() |
Результат | string |
public load_user_by_username ( string $username ) : integer | ||
$username | string | Raw username to load (will be cleaned) |
Результат | integer | User ID for the username |
protected driver_interface,phpbb\db\driver $db | ||
Результат | phpbb\db\driver\driver_interface |