hypejunction / user_sort
User list sorting for Elgg
Installs: 84
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:elgg-plugin
Requires
- php: >=5.5
- composer/installers: ~1.0
README
*** NO LONGER MAINTAINED *** The functionality of this plugin has been moved to hypeLists
Features
- Implements generic API and UI for sorting user lists
- By default, provides sorting by Name, Friend count, Registration date, and Last seen
- Extendable via hooks
Usage
List users
// display a sortable list of friends $options = array( 'relationship' => 'friend', 'relationship_guid' => $user->guid, ); echo elgg_view('lists/users', array( 'options' => $options, 'callback' => 'elgg_list_entities_from_relationship', ));
Custom sort fields
Use 'sort_fields','user'
plugin hook to add new fields to the sort select input.
Use 'sort_options', 'user'
to add custom queries to ege* options.