[ad_1]
Hi @samuelashbrook,
Please find the following constant
const APPROVED = 1;
const PENDING = 0;
const DENIED = - 1;
UR_Admin_User_Manager::APPROVED
UR_Admin_User_Manager::DENIED
UR_Admin_User_Manager::PENDING
You can write code using these constants to get the user status. If you prefer to pull data from the database, use the following code.
$user_status = get_user_meta( $this->user->ID, 'ur_user_status', true );
Regards!