ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ 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
Ignore.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\components\Database\Integrity
;
22
23
class
Ignore
24
{
28
private
const
IS_NOT_NULL
=
'IS NOT NULL'
;
32
private
const
NOT_EQUALS
=
'!='
;
33
37
private
array
$values_to_ignore
;
38
39
public
function
__construct
(?
string
...$values_to_ignore)
40
{
41
$this->values_to_ignore =
array_map
(
static
fn(?
string
$value_to_ignore):
string
=>
null
=== $value_to_ignore ? self::IS_NOT_NULL : self::NOT_EQUALS .
' '
. $value_to_ignore, $values_to_ignore);
42
}
43
47
public
function
values
(): array
48
{
49
return
$this->values_to_ignore
;
50
}
51
}
ILIAS\components\Database\Integrity
Definition:
Association.php:21
ILIAS\components\Database\Integrity\Ignore\NOT_EQUALS
const NOT_EQUALS
Definition:
Ignore.php:32
array_map
ILIAS\components\Database\Integrity\Ignore\values
values()
Definition:
Ignore.php:47
ILIAS\components\Database\Integrity\Ignore\IS_NOT_NULL
const IS_NOT_NULL
Definition:
Ignore.php:28
ILIAS\components\Database\Integrity\Ignore
Definition:
Ignore.php:23
ILIAS\components\Database\Integrity\Ignore\__construct
__construct(?string ... $values_to_ignore)
Definition:
Ignore.php:39
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\components\Database\Integrity\Ignore\$values_to_ignore
array $values_to_ignore
Definition:
Ignore.php:37
components
ILIAS
Database
classes
Integrity
Ignore.php
Generated on Sun Apr 6 2025 23:03:03 for ILIAS by
1.8.13 (using
Doxyfile
)