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
▼
ILIAS
Test List
Todo List
Deprecated List
►
Modules
►
Namespaces
►
Data Structures
▼
Files
►
File List
►
Globals
►
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilLikeUserDefinedFieldSearch.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
5
6
17
class
ilLikeUserDefinedFieldSearch
extends
ilUserDefinedFieldSearch
18
{
19
public
function
setFields
(array $a_fields): void
20
{
21
$fields
= [];
22
foreach
($a_fields as $field) {
23
$fields
[] =
'f_'
. $field;
24
}
25
parent::setFields(
$fields
);
26
}
27
28
29
public
function
__createWhereCondition
(): string
30
{
31
$fields
= $this->
getFields
();
32
$field =
$fields
[0];
33
34
$and =
" WHERE field_id = "
. $this->db->quote((
int
) substr($field, 2),
"integer"
) .
" AND ( "
;
35
$counter = 0;
36
foreach
($this->query_parser->getQuotedWords() as $word) {
37
if
($counter++) {
38
$and .=
" OR "
;
39
}
40
41
if
(strpos($word,
'^'
) === 0) {
42
$and .= $this->db->like(
"value"
,
"text"
, substr($word, 1) .
"%"
);
43
}
else
{
44
$and .= $this->db->like(
"value"
,
"text"
,
"%"
. $word .
"%"
);
45
}
46
}
47
return
$and .
") "
;
48
}
49
}
ilAbstractSearch\getFields
getFields()
Definition:
class.ilAbstractSearch.php:62
ilLikeUserDefinedFieldSearch
Definition:
class.ilLikeUserDefinedFieldSearch.php:17
ilAbstractSearch\$fields
array $fields
Definition:
class.ilAbstractSearch.php:41
ilUserDefinedFieldSearch
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilUserDefinedFieldSearch.php:29
ilLikeUserDefinedFieldSearch\setFields
setFields(array $a_fields)
Definition:
class.ilLikeUserDefinedFieldSearch.php:19
ilLikeUserDefinedFieldSearch\__createWhereCondition
__createWhereCondition()
Definition:
class.ilLikeUserDefinedFieldSearch.php:29
Services
Search
classes
Like
class.ilLikeUserDefinedFieldSearch.php
Generated on Fri Apr 4 2025 22:02:58 for ILIAS by
1.8.13 (using
Doxyfile
)