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.ilExcCronFeedbackNotification.php
Go to the documentation of this file.
1
<?php
2
25
class
ilExcCronFeedbackNotification
extends
ilCronJob
26
{
27
protected
ilLanguage
$lng
;
28
29
30
public
function
__construct
()
31
{
32
global
$DIC
;
33
34
$this->
lng
= $DIC->language();
35
}
36
37
public
function
getId
(): string
38
{
39
return
"exc_feedback_notification"
;
40
}
41
42
public
function
getTitle
(): string
43
{
44
$lng =
$this->lng
;
45
46
$lng->
loadLanguageModule
(
"exc"
);
47
return
$lng->
txt
(
"exc_global_feedback_file_cron"
);
48
}
49
50
public
function
getDescription
(): string
51
{
52
$lng =
$this->lng
;
53
54
$lng->
loadLanguageModule
(
"exc"
);
55
return
$lng->
txt
(
"exc_global_feedback_file_cron_info"
);
56
}
57
58
public
function
getDefaultScheduleType
():
int
59
{
60
return
self::SCHEDULE_TYPE_DAILY;
61
}
62
63
public
function
getDefaultScheduleValue
(): ?
int
64
{
65
return
null;
66
}
67
68
public
function
hasAutoActivation
(): bool
69
{
70
return
true
;
71
}
72
73
public
function
hasFlexibleSchedule
(): bool
74
{
75
return
false
;
76
}
77
81
public
function
run
():
ilCronJobResult
82
{
83
$status =
ilCronJobResult::STATUS_NO_ACTION
;
84
85
$count = 0;
86
87
foreach
(
ilExAssignment::getPendingFeedbackNotifications
() as $ass_id) {
88
if
(
ilExAssignment::sendFeedbackNotifications
($ass_id)) {
89
$count++;
90
}
91
}
92
93
if
($count !== 0) {
94
$status =
ilCronJobResult::STATUS_OK
;
95
}
96
97
$result =
new
ilCronJobResult
();
98
$result->setStatus($status);
99
100
return
$result;
101
}
102
}
ilLanguage
ilLanguage\txt
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Definition:
class.ilLanguage.php:172
ilExcCronFeedbackNotification\getDescription
getDescription()
Definition:
class.ilExcCronFeedbackNotification.php:50
ilExAssignment\getPendingFeedbackNotifications
static getPendingFeedbackNotifications()
Definition:
class.ilExAssignment.php:1630
ilCronJob
Definition:
class.ilCronJob.php:21
ilExcCronFeedbackNotification\__construct
__construct()
Definition:
class.ilExcCronFeedbackNotification.php:30
ilLanguage\loadLanguageModule
loadLanguageModule(string $a_module)
Load language module.
Definition:
class.ilLanguage.php:228
ilExcCronFeedbackNotification
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilExcCronFeedbackNotification.php:25
ilExcCronFeedbackNotification\getTitle
getTitle()
Definition:
class.ilExcCronFeedbackNotification.php:42
ilExcCronFeedbackNotification\$lng
ilLanguage $lng
Definition:
class.ilExcCronFeedbackNotification.php:27
$DIC
global $DIC
Definition:
feed.php:28
ilExcCronFeedbackNotification\getDefaultScheduleValue
getDefaultScheduleValue()
Definition:
class.ilExcCronFeedbackNotification.php:63
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:56
ilExcCronFeedbackNotification\run
run()
Definition:
class.ilExcCronFeedbackNotification.php:81
ilExcCronFeedbackNotification\getId
getId()
Definition:
class.ilExcCronFeedbackNotification.php:37
ilExcCronFeedbackNotification\getDefaultScheduleType
getDefaultScheduleType()
Definition:
class.ilExcCronFeedbackNotification.php:58
ilExcCronFeedbackNotification\hasFlexibleSchedule
hasFlexibleSchedule()
Definition:
class.ilExcCronFeedbackNotification.php:73
ilCronJobResult\STATUS_OK
const STATUS_OK
Definition:
class.ilCronJobResult.php:25
ilCronJobResult
Definition:
class.ilCronJobResult.php:21
ilExcCronFeedbackNotification\hasAutoActivation
hasAutoActivation()
Definition:
class.ilExcCronFeedbackNotification.php:68
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilCronJobResult\STATUS_NO_ACTION
const STATUS_NO_ACTION
Definition:
class.ilCronJobResult.php:24
ilExAssignment\sendFeedbackNotifications
static sendFeedbackNotifications(int $a_ass_id, int $a_user_id=null)
Definition:
class.ilExAssignment.php:1672
Modules
Exercise
classes
class.ilExcCronFeedbackNotification.php
Generated on Fri Apr 4 2025 22:01:46 for ILIAS by
1.8.13 (using
Doxyfile
)