1. makers
  2. General
  3. Friday, August 08 2014, 09:32 AM
Hi easy profile. Im using your social network plugin for a site im building. I have made 5 user groups, that i would like to display in a certain order in the dropdown that shows when im trying to asign a role to a user in the user manager. Currently I have given the userroles id numbers in the databse to correspond with the order id like, but the site doesnt seem to sort them by id. Is there a way I can change how it sorts?

thanks
Attachments (1)
admin Accepted Answer
Admin
Hi,
strange we have not set any order but for default Mysql Query should be ordering by id.

on file /plugins/jsn/socialnetwork/app/Controller/UsersController.php replace lines 1398 e 1399 from
if ( !$cuser['Role']['is_super']) $roles = $this->Role->find('list', array('conditions' => array('is_super' => 0) ,'field' => array('name')));
else $roles = $this->Role->find('list', 'field' => array('name')));

with
if ( !$cuser['Role']['is_super']) $roles = $this->Role->find('list', array('order' => 'id' ,'conditions' => array('is_super' => 0) ,'field' => array('name')));
else $roles = $this->Role->find('list', array('order' => 'id','field' => array('name')));
  1. more than a month ago
  2. General
  3. # 1
makers Accepted Answer
Content Protected
  1. more than a month ago
  2. General
  3. # 2
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.