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.ilMathJaxSetupAgent.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
use
ILIAS\Setup
;
21
use
ILIAS\Refinery
;
22
23
class
ilMathJaxSetupAgent
implements
Setup\Agent
24
{
25
use
Setup\Agent\HasNoNamedObjective
;
26
27
protected
Refinery\Factory
$refinery
;
28
29
public
function
__construct
(
Refinery
\
Factory
$refinery)
30
{
31
$this->
refinery
=
$refinery
;
32
}
33
37
public
function
hasConfig
(): bool
38
{
39
return
true
;
40
}
41
45
public
function
getArrayToConfigTransformation
():
Refinery
\
Transformation
46
{
47
return
$this->
refinery
->custom()->transformation(
function
(
$data
) {
48
return
new
ilMathJaxSetupConfig
((array)
$data
);
49
});
50
}
51
55
public
function
getInstallObjective(Setup\
Config
$config
= null): Setup\Objective
56
{
58
return
new
ilMathJaxConfigStoredObjective
(
$config
);
59
}
60
64
public
function
getUpdateObjective(Setup\
Config
$config
= null): Setup\Objective
65
{
67
if
(
$config
!== null) {
68
return
new
Setup\ObjectiveCollection(
69
'MathJax configuration and database update'
,
70
false
,
71
new
ilMathJaxConfigStoredObjective
(
$config
),
72
new
ilMathJaxConfigCheckedObjective
(
$config
)
73
);
74
}
else
{
75
return
new
ilMathJaxConfigCheckedObjective
();
76
}
77
}
78
82
public
function
getBuildArtifactObjective
(): Setup\
Objective
83
{
84
return
new
Setup\Objective\NullObjective();
85
}
86
90
public
function
getStatusObjective
(Setup\Metrics\Storage $storage): Setup\
Objective
91
{
92
return
new
ilMathJaxMetricsCollectedObjective
($storage);
93
}
94
98
public
function
getMigrations
(): array
99
{
100
return
[];
101
}
102
}
$data
$data
Definition:
ltiregistration.php:31
ilMathJaxSetupAgent
Definition:
class.ilMathJaxSetupAgent.php:23
ILIAS\Setup\Objective
An objective is a desired state of the system that is supposed to be created by the setup...
Definition:
Objective.php:30
ILIAS\Refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
ByTrying.php:21
ilMathJaxConfigCheckedObjective
Definition:
class.ilMathJaxConfigCheckedObjective.php:23
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:85
ilMathJaxSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilMathJaxSetupAgent.php:82
ilMathJaxSetupAgent\getStatusObjective
getStatusObjective(Setup\Metrics\Storage $storage)
Definition:
class.ilMathJaxSetupAgent.php:90
ilMathJaxConfigStoredObjective
Definition:
class.ilMathJaxConfigStoredObjective.php:22
ilMathJaxMetricsCollectedObjective
Definition:
class.ilMathJaxMetricsCollectedObjective.php:23
ILIAS\Repository\refinery
refinery()
Definition:
trait.GlobalDICDomainServices.php:71
ilMathJaxSetupAgent\__construct
__construct(Refinery\Factory $refinery)
Definition:
class.ilMathJaxSetupAgent.php:29
ilMathJaxSetupAgent\hasConfig
hasConfig()
Definition:
class.ilMathJaxSetupAgent.php:37
Factory
ilMathJaxSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilMathJaxSetupAgent.php:45
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilMysqlMyIsamToInnoDbMigration.php:19
ilMathJaxSetupAgent\$refinery
Refinery Factory $refinery
Definition:
class.ilMathJaxSetupAgent.php:27
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:34
HasNoNamedObjective
ilMathJaxSetupConfig
Definition:
class.ilMathJaxSetupConfig.php:23
ilMathJaxSetupAgent\getMigrations
getMigrations()
Definition:
class.ilMathJaxSetupAgent.php:98
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:26
Services
MathJax
classes
Setup
class.ilMathJaxSetupAgent.php
Generated on Fri Apr 4 2025 22:02:51 for ILIAS by
1.8.13 (using
Doxyfile
)