Listing all users

Permalink
Hey Guys,

I am trying to list all users in a Single page from the database.

You have any easy solution?.

Looking forward...

 
Remo replied on at Permalink Reply
Remo
check out concrete/models/search/user.php

this is what the dashboard uses to fetch all the users..

There's not easy example but I guess someone who wants to build something like that knows how to read and write php code.
mitnick replied on at Permalink Reply
Is there any simple solution for this?, i don't have much time to get this up and running....
Tony replied on at Permalink Reply
Tony
have a look at the user list class:

Loader::model('user_list');
$userList = new UserList(); 
$userList->sortBy('uName', 'asc'); 
$keywords = $this->get('keywords');
if ($keywords != '') {
$userList->filterByKeywords($keywords);
}
$users = $userList->getPage();