abhijit

Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

Activity

  • abhijit added a new discussion topic Plugin to search/sort blog entries by Author's name? in the group Elgg Technical Support
    Is there any plugin that can help me sort or search blog entries made by a particular user? I need this feature for Group blogs aswellas other blogs.
    • i don't know if such a plugin exsists, but you need to call only one function to do that!

      $options = array('owner_id'=>integer, 'type'=>'object', 'subtype'=>'blog', 'count'=>false, 'limit'=>integer, 'offset'=>integer);

      elgg_get_entities($options);

      Now you need to figure out a way to obtain the owner_id, that can be made by a search or a user picker

      you can include the code in the blog plugin, or better create another plugin with that code, you can for example add a menu button in the blog plugin that redirect to a page that shows the blog entries obtained by the search

  • abhijit joined the group Elgg Technical Support