Auto completion class for user lists.
More...
Auto completion class for user lists.
- Author
- Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Definition at line 8 of file class.ilRoleAutoComplete.php.
◆ getList()
static ilRoleAutoComplete::getList |
( |
|
$a_str | ) |
|
|
static |
Get completion list.
Definition at line 13 of file class.ilRoleAutoComplete.php.
References $counter, $ilDB, $query, $res, $result, $row, array, ilJsonUtil\encode(), and ilDBConstants\FETCHMODE_OBJECT.
Referenced by ilRoleAutoCompleteInputGUI\echoAutoCompleteList(), and ilRegistrationSettingsGUI\getLocalRoleAutoComplete().
18 $query =
"SELECT o1.title role,o2.title container FROM object_data o1 " .
19 "JOIN rbac_fa fa ON o1.obj_id = rol_id " .
20 "JOIN tree t1 ON fa.parent = t1.child " .
21 "JOIN object_reference obr ON ref_id = t1.parent " .
22 "JOIN object_data o2 ON obr.obj_id = o2.obj_id " .
23 "WHERE o1.type = 'role' " .
25 "AND " . $ilDB->like(
'o1.title',
'text',
'%' . $a_str .
'%') .
" " .
26 "AND fa.parent != 8 " .
27 "ORDER BY role,container";
40 return self::getListByObject($a_str);
43 include_once
'./Services/JSON/classes/class.ilJsonUtil.php';
static encode($mixed, $suppress_native=false)
foreach($_POST as $key=> $value) $res
Create styles array
The data for the language used.
◆ getListByObject()
static ilRoleAutoComplete::getListByObject |
( |
|
$a_str | ) |
|
|
static |
Get list of roles assigned to an object.
- Returns
- Parameters
-
Definition at line 52 of file class.ilRoleAutoComplete.php.
References $counter, $ilDB, $query, $res, $result, $row, ilObject\_lookupTitle(), array, ilJsonUtil\encode(), and ilDBConstants\FETCHMODE_OBJECT.
54 global $rbacreview,
$ilDB;
56 include_once
'./Services/JSON/classes/class.ilJsonUtil.php';
59 if (strpos($a_str,
'@') !== 0) {
63 $a_str = substr($a_str, 1);
66 $query =
"SELECT ref_id, title FROM object_data ode " .
67 "JOIN object_reference ore ON ode.obj_id = ore.obj_id " .
68 "WHERE " . $ilDB->like(
'title',
'text', $a_str .
'%') .
' ' .
73 foreach ($rbacreview->getRolesOfRoleFolder(
$row->ref_id,
false) as $rol_id) {
static _lookupTitle($a_id)
lookup object title
static encode($mixed, $suppress_native=false)
foreach($_POST as $key=> $value) $res
Create styles array
The data for the language used.
The documentation for this class was generated from the following file: