ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilUserSearch.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
29
class
ilUserSearch
extends
ilAbstractSearch
30
{
31
private
bool
$active_check
=
false
;
32
private
bool
$inactive_check
=
false
;
33
34
public
function
enableActiveCheck
(
bool
$a_enabled): void
35
{
36
$this->active_check = $a_enabled;
37
}
38
39
public
function
enableInactiveCheck
(
bool
$a_enabled): void
40
{
41
$this->inactive_check = $a_enabled;
42
}
43
44
public
function
performSearch
():
ilSearchResult
45
{
46
$where = $this->__createWhereCondition();
47
$locate = $this->
__createLocateString
();
48
49
$query =
"SELECT usr_id "
.
50
$locate .
51
"FROM usr_data "
.
52
$where;
53
if
($this->active_check) {
54
$query .=
'AND active = 1 '
;
55
} elseif ($this->inactive_check) {
56
$query .=
'AND active = 0 '
;
57
}
58
59
60
$res
= $this->db->query($query);
61
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
62
$this->search_result->addEntry((
int
) $row->usr_id,
'usr'
, $this->__prepareFound($row));
63
}
64
return
$this->search_result
;
65
}
66
}
$res
$res
Definition:
ltiservices.php:66
ilAbstractSearch
Definition:
class.ilAbstractSearch.php:32
ilUserSearch
Definition:
class.ilUserSearch.php:29
ilAbstractSearch\__createLocateString
__createLocateString()
Definition:
class.ilAbstractSearch.php:138
ilUserSearch\enableInactiveCheck
enableInactiveCheck(bool $a_enabled)
Definition:
class.ilUserSearch.php:39
ilUserSearch\enableActiveCheck
enableActiveCheck(bool $a_enabled)
Definition:
class.ilUserSearch.php:34
ilUserSearch\$inactive_check
bool $inactive_check
Definition:
class.ilUserSearch.php:32
ilUserSearch\performSearch
performSearch()
Definition:
class.ilUserSearch.php:44
ilUserSearch\$active_check
bool $active_check
Definition:
class.ilUserSearch.php:31
ilAbstractSearch\$search_result
ilSearchResult $search_result
Definition:
class.ilAbstractSearch.php:36
ilDBConstants\FETCHMODE_OBJECT
const FETCHMODE_OBJECT
Definition:
class.ilDBConstants.php:29
ilSearchResult
Definition:
class.ilSearchResult.php:28
components
ILIAS
Search
classes
class.ilUserSearch.php
Generated on Wed Apr 2 2025 23:03:31 for ILIAS by
1.8.13 (using
Doxyfile
)