ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilTermsOfServiceTableDataProviderFactory.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
class
ilTermsOfServiceTableDataProviderFactory
9
{
10
const
CONTEXT_ACCEPTANCE_HISTORY
=
'acceptance_history'
;
11
const
CONTEXT_DOCUMENTS
=
'documents'
;
12
14
protected
$db
;
15
22
public
function
getByContext
(
string
$context
) :
ilTermsOfServiceTableDataProvider
23
{
24
switch
($context) {
25
case
self::CONTEXT_ACCEPTANCE_HISTORY:
26
$this->
validateConfiguration
([
'db'
]);
27
return
new
ilTermsOfServiceAcceptanceHistoryProvider
($this->
getDatabaseAdapter
());
28
29
case
self::CONTEXT_DOCUMENTS:
30
return
new
ilTermsOfServiceDocumentTableDataProvider
();
31
32
default
:
33
throw
new
InvalidArgumentException
(
'Provider not supported'
);
34
}
35
}
36
41
protected
function
validateConfiguration
(array $mandatoryMemberVariables) : void
42
{
43
foreach
($mandatoryMemberVariables as $member) {
44
if
(null === $this->{$member}) {
45
$exception = $this->
getExceptionByMember
($member);
46
throw
$exception;
47
}
48
}
49
}
50
56
protected
function
getExceptionByMember
(
string
$member)
57
{
58
switch
($member) {
59
case
'db'
:
60
return
new
ilTermsOfServiceMissingDatabaseAdapterException
(
61
'Incomplete factory configuration. Please inject a database adapter.'
62
);
63
64
default
:
65
throw
new
InvalidArgumentException
(
"Exception for member {$member} not supported"
);
66
}
67
}
68
72
public
function
setDatabaseAdapter
(?
ilDBInterface
$db
)
73
{
74
$this->db =
$db
;
75
}
76
80
public
function
getDatabaseAdapter
() : ?
ilDBInterface
81
{
82
return
$this->db
;
83
}
84
}
ilTermsOfServiceTableDataProviderFactory\CONTEXT_ACCEPTANCE_HISTORY
const CONTEXT_ACCEPTANCE_HISTORY
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:10
ilTermsOfServiceAcceptanceHistoryProvider
Class ilTermsOfServiceAcceptanceHistoryProvider.
Definition:
class.ilTermsOfServiceAcceptanceHistoryProvider.php:8
$context
$context
Definition:
webdav.php:26
ilTermsOfServiceTableDataProviderFactory\setDatabaseAdapter
setDatabaseAdapter(?ilDBInterface $db)
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:72
ilTermsOfServiceDocumentTableDataProvider
Class ilTermsOfServiceDocumentTableDataProvider.
Definition:
class.ilTermsOfServiceDocumentTableDataProvider.php:8
ilTermsOfServiceTableDataProviderFactory\getByContext
getByContext(string $context)
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:22
ilTermsOfServiceTableDataProviderFactory\getDatabaseAdapter
getDatabaseAdapter()
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:80
ilTermsOfServiceTableDataProvider
Interface ilTermsOfServiceTableDataProvider.
Definition:
interface.ilTermsOfServiceTableDataProvider.php:8
ilTermsOfServiceTableDataProviderFactory\getExceptionByMember
getExceptionByMember(string $member)
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:56
ilDBInterface
Interface ilDBInterface.
Definition:
interface.ilDBInterface.php:9
ilTermsOfServiceTableDataProviderFactory
Class ilTermsOfServiceTableDataProviderFactory.
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:8
ilTermsOfServiceTableDataProviderFactory\validateConfiguration
validateConfiguration(array $mandatoryMemberVariables)
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:41
ilTermsOfServiceMissingDatabaseAdapterException
Class ilTermsOfServiceMissingDatabaseAdapterException.
Definition:
class.ilTermsOfServiceMissingDatabaseAdapterException.php:8
ilTermsOfServiceTableDataProviderFactory\$db
$db
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:14
InvalidArgumentException
ilTermsOfServiceTableDataProviderFactory\CONTEXT_DOCUMENTS
const CONTEXT_DOCUMENTS
Definition:
class.ilTermsOfServiceTableDataProviderFactory.php:11
Services
TermsOfService
classes
class.ilTermsOfServiceTableDataProviderFactory.php
Generated on Thu Apr 3 2025 20:01:14 for ILIAS by
1.8.13 (using
Doxyfile
)