Updating v6 User code to v7
Permalink
I need to update some code that fetches member's information, including the associated image to version 7.
Where in the documentation can I find the equivalent coding?
Many thanks...
Todd
/* Get the Member data */ $ih = Loader::helper('image'); // For image $av = Loader::helper('concrete/avatar'); Loader::model('user_list'); $list = new UserList(); // Get only users who are in the Member group $list->filterByGroup("Member"); // Sort by last name $list->sortBy("last_name", "asc"); // Fetch 200...only 119 members $users = $list->get(200); $attribs = UserAttributeKey::getPublicProfileList(); $userData = array();
Where in the documentation can I find the equivalent coding?
Many thanks...
Todd