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.ilSCUtils.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
include_once
'./Services/SystemCheck/classes/class.ilSCTask.php'
;
6
12
class
ilSCUtils
13
{
14
public
static
function
taskStatus2Text
($a_status)
15
{
16
global
$DIC
;
17
18
$lng
= $DIC[
'lng'
];
19
20
switch
($a_status) {
21
case
ilSCTask::STATUS_NOT_ATTEMPTED
:
22
return
$lng
->txt(
'sysc_status_na'
);
23
24
case
ilSCTask::STATUS_IN_PROGRESS
:
25
return
$lng
->txt(
'sysc_status_running'
);
26
27
case
ilSCTask::STATUS_FAILED
:
28
return
$lng
->txt(
'sysc_status_failed'
);
29
30
case
ilSCTask::STATUS_COMPLETED
:
31
return
$lng
->txt(
'sysc_status_completed'
);
32
33
}
34
}
35
}
ilSCUtils
Utilities for system check.
Definition:
class.ilSCUtils.php:12
ilSCTask\STATUS_FAILED
const STATUS_FAILED
Definition:
class.ilSCTask.php:17
$lng
$lng
Definition:
save_question_post_data.php:23
ilSCTask\STATUS_IN_PROGRESS
const STATUS_IN_PROGRESS
Definition:
class.ilSCTask.php:15
ilSCTask\STATUS_COMPLETED
const STATUS_COMPLETED
Definition:
class.ilSCTask.php:16
$DIC
$DIC
Definition:
xapitoken.php:46
ilSCUtils\taskStatus2Text
static taskStatus2Text($a_status)
Definition:
class.ilSCUtils.php:14
ilSCTask\STATUS_NOT_ATTEMPTED
const STATUS_NOT_ATTEMPTED
Definition:
class.ilSCTask.php:14
Services
SystemCheck
classes
class.ilSCUtils.php
Generated on Thu Apr 3 2025 20:01:14 for ILIAS by
1.8.13 (using
Doxyfile
)