ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
class.ilExcCronFeedbackNotification.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\Cron\Job\Schedule\JobScheduleType
;
20
use
ILIAS\Cron\Job\JobResult
;
21
use
ILIAS\Cron\CronJob
;
22
29
class
ilExcCronFeedbackNotification
extends
CronJob
30
{
31
protected
ilLanguage
$lng
;
32
33
34
public
function
__construct
()
35
{
36
global
$DIC
;
37
38
$this->
lng
= $DIC->language();
39
}
40
41
public
function
getId
(): string
42
{
43
return
"exc_feedback_notification"
;
44
}
45
46
public
function
getTitle
(): string
47
{
48
$lng =
$this->lng
;
49
50
$lng->
loadLanguageModule
(
"exc"
);
51
return
$lng->
txt
(
"exc_global_feedback_file_cron"
);
52
}
53
54
public
function
getDescription
(): string
55
{
56
$lng =
$this->lng
;
57
58
$lng->
loadLanguageModule
(
"exc"
);
59
return
$lng->
txt
(
"exc_global_feedback_file_cron_info"
);
60
}
61
62
public
function
getDefaultScheduleType
():
JobScheduleType
63
{
64
return
JobScheduleType::DAILY;
65
}
66
67
public
function
getDefaultScheduleValue
(): ?
int
68
{
69
return
null
;
70
}
71
72
public
function
hasAutoActivation
(): bool
73
{
74
return
true
;
75
}
76
77
public
function
hasFlexibleSchedule
(): bool
78
{
79
return
false
;
80
}
81
85
public
function
run
():
JobResult
86
{
87
$status = JobResult::STATUS_NO_ACTION;
88
89
$count = 0;
90
91
foreach
(
ilExAssignment::getPendingFeedbackNotifications
() as
$ass_id
) {
92
if
(
ilExAssignment::sendFeedbackNotifications
($ass_id)) {
93
$count++;
94
}
95
}
96
97
if
($count !== 0) {
98
$status = JobResult::STATUS_OK;
99
}
100
101
$result =
new
JobResult
();
102
$result->setStatus($status);
103
104
return
$result;
105
}
106
}
CronJob
ilLanguage
ILIAS\Cron\CronJob
Definition:
CronJob.php:26
$ass_id
int $ass_id
Definition:
trait.ilExAssignmentTypeGUIBase.php:37
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:170
ilExcCronFeedbackNotification\getDescription
getDescription()
Definition:
class.ilExcCronFeedbackNotification.php:54
ilExAssignment\getPendingFeedbackNotifications
static getPendingFeedbackNotifications()
Definition:
class.ilExAssignment.php:1421
ilExcCronFeedbackNotification\__construct
__construct()
Definition:
class.ilExcCronFeedbackNotification.php:34
ILIAS\BackgroundTasks\Task\Job\JobResult
Definition:
JobResult.php:23
ilLanguage\loadLanguageModule
loadLanguageModule(string $a_module)
Load language module.
Definition:
class.ilLanguage.php:226
ilExcCronFeedbackNotification
Cron for exercise feedback notification.
Definition:
class.ilExcCronFeedbackNotification.php:29
ilExcCronFeedbackNotification\getTitle
getTitle()
Definition:
class.ilExcCronFeedbackNotification.php:46
ilExcCronFeedbackNotification\$lng
ilLanguage $lng
Definition:
class.ilExcCronFeedbackNotification.php:31
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilExAssignment\sendFeedbackNotifications
static sendFeedbackNotifications(int $a_ass_id, ?int $a_user_id=null)
Definition:
class.ilExAssignment.php:1469
ilExcCronFeedbackNotification\getDefaultScheduleValue
getDefaultScheduleValue()
Definition:
class.ilExcCronFeedbackNotification.php:67
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
ilExcCronFeedbackNotification\run
run()
Definition:
class.ilExcCronFeedbackNotification.php:85
JobResult
$DIC
global $DIC
Definition:
shib_login.php:22
ilExcCronFeedbackNotification\getId
getId()
Definition:
class.ilExcCronFeedbackNotification.php:41
ilExcCronFeedbackNotification\getDefaultScheduleType
getDefaultScheduleType()
Definition:
class.ilExcCronFeedbackNotification.php:62
ilExcCronFeedbackNotification\hasFlexibleSchedule
hasFlexibleSchedule()
Definition:
class.ilExcCronFeedbackNotification.php:77
ILIAS\Cron\Job\Schedule\JobScheduleType
JobScheduleType
Definition:
JobScheduleType.php:23
ilExcCronFeedbackNotification\hasAutoActivation
hasAutoActivation()
Definition:
class.ilExcCronFeedbackNotification.php:72
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
Exercise
classes
class.ilExcCronFeedbackNotification.php
Generated on Thu Apr 3 2025 23:02:49 for ILIAS by
1.8.13 (using
Doxyfile
)