Code: Select all
$this->acl_get( 'u_hide_verified_badge' )
acl_get
function.I'm sure this is possible. I just don't know how to do it
Code: Select all
$this->acl_get( 'u_hide_verified_badge' )
acl_get
function.$row
is our user array.Code: Select all
$auth2 = new \phpbb\auth\auth();
$auth2->acl($row);
$s_in_group = $auth2->acl_get('some_permission') ? true : false;
unset($auth2);