ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilCmiXapiUserAutocomplete.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
30
class
ilCmiXapiUserAutocomplete
extends
ilUserAutoComplete
31
{
32
protected
int
$objId
;
33
34
public
function
__construct
(
int
$objId)
35
{
36
parent::__construct
();
37
$this->objId =
$objId
;
38
}
39
40
protected
function
getFromPart
(): string
41
{
42
global
$DIC
;
43
44
$fromPart = parent::getFromPart();
45
return
$fromPart .
"
46
INNER JOIN (SELECT DISTINCT usr_id, obj_id FROM cmix_users) c
47
ON c.obj_id = {$DIC->database()->quote($this->objId, 'integer')}
48
AND c.usr_id = ud.usr_id
49
"
;
50
}
51
}
ilCmiXapiUserAutocomplete\__construct
__construct(int $objId)
Definition:
class.ilCmiXapiUserAutocomplete.php:34
ilCmiXapiUserAutocomplete
Definition:
class.ilCmiXapiUserAutocomplete.php:30
ilUserAutoComplete
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilUserAutoComplete.php:22
$DIC
global $DIC
Definition:
feed.php:28
ilCmiXapiUserAutocomplete\$objId
int $objId
Definition:
class.ilCmiXapiUserAutocomplete.php:32
ilCmiXapiUserAutocomplete\getFromPart
getFromPart()
Definition:
class.ilCmiXapiUserAutocomplete.php:40
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
Modules
CmiXapi
classes
class.ilCmiXapiUserAutocomplete.php
Generated on Fri Apr 4 2025 22:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)