Habari\Users::get_all PHP Method

get_all() public static method

Select all users from the database
public static get_all ( ) : Users
return Users
    public static function get_all()
    {
        $params = array('orderby' => 'LOWER(username) ASC');
        $params = Plugins::filter('users_get_all_params', $params);
        return self::get($params);
    }