1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 13:11:52 +02:00

Work-in-progress for user selectize result filtering.

This commit is contained in:
Cameron 2016-05-16 18:42:29 -07:00
parent 572a4bb8be
commit 4116ddde1e

View File

@ -1110,6 +1110,7 @@ class e_form
* @param string $options['classes'] - single or comma-separated list of user-classes members to include.
* @param string $options['excludeSelf'] = exlude logged in user from list.
* @param string $options['return'] if == 'array' an array is returned.
* @param string $options['return'] if == 'sqlWhere' an sql query is returned.
* @return string select form element.
*/
public function userlist($name, $val=null, $options=array())
@ -1153,6 +1154,10 @@ class e_form
}
if(!empty($options['return']) && $options['return'] == 'sqlWhere') // can be used by user.php ajax method..
{
return $where;
}
$users = e107::getDb()->retrieve("user",$fields, "WHERE ".$where." ORDER BY user_name LIMIT 1000",true);