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.ilExcCronFeedbackNotification.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
11
class
ilExcCronFeedbackNotification
extends
ilCronJob
12
{
16
protected
$lng
;
17
18
22
public
function
__construct
()
23
{
24
global
$DIC
;
25
26
$this->lng = $DIC->language();
27
}
28
29
public
function
getId
()
30
{
31
return
"exc_feedback_notification"
;
32
}
33
34
public
function
getTitle
()
35
{
36
$lng
=
$this->lng
;
37
38
$lng
->loadLanguageModule(
"exc"
);
39
return
$lng
->txt(
"exc_global_feedback_file_cron"
);
40
}
41
42
public
function
getDescription
()
43
{
44
$lng
=
$this->lng
;
45
46
$lng
->loadLanguageModule(
"exc"
);
47
return
$lng
->txt(
"exc_global_feedback_file_cron_info"
);
48
}
49
50
public
function
getDefaultScheduleType
()
51
{
52
return
self::SCHEDULE_TYPE_DAILY;
53
}
54
55
public
function
getDefaultScheduleValue
()
56
{
57
return
;
58
}
59
60
public
function
hasAutoActivation
()
61
{
62
return
true
;
63
}
64
65
public
function
hasFlexibleSchedule
()
66
{
67
return
false
;
68
}
69
70
public
function
run
()
71
{
72
$status =
ilCronJobResult::STATUS_NO_ACTION
;
73
$message
= array();
74
75
$count = 0;
76
77
foreach
(
ilExAssignment::getPendingFeedbackNotifications
() as $ass_id) {
78
if
(
ilExAssignment::sendFeedbackNotifications
($ass_id)) {
79
$count++;
80
}
81
}
82
83
if
($count) {
84
$status =
ilCronJobResult::STATUS_OK
;
85
}
86
87
$result
=
new
ilCronJobResult
();
88
$result
->setStatus($status);
89
90
return
$result
;
91
}
92
}
ilExAssignment\sendFeedbackNotifications
static sendFeedbackNotifications($a_ass_id, $a_user_id=null)
Definition:
class.ilExAssignment.php:2036
$result
$result
Definition:
CleanUpTest.php:463
ilExcCronFeedbackNotification\getDescription
getDescription()
Definition:
class.ilExcCronFeedbackNotification.php:42
ilExAssignment\getPendingFeedbackNotifications
static getPendingFeedbackNotifications()
Definition:
class.ilExAssignment.php:1997
ilCronJob
Cron job application base class.
Definition:
class.ilCronJob.php:11
ilExcCronFeedbackNotification\__construct
__construct()
Constructor.
Definition:
class.ilExcCronFeedbackNotification.php:22
ilExcCronFeedbackNotification
Cron for exercise feedback notification.
Definition:
class.ilExcCronFeedbackNotification.php:11
ilExcCronFeedbackNotification\getTitle
getTitle()
Definition:
class.ilExcCronFeedbackNotification.php:34
ilExcCronFeedbackNotification\getDefaultScheduleValue
getDefaultScheduleValue()
Definition:
class.ilExcCronFeedbackNotification.php:55
ilExcCronFeedbackNotification\run
run()
Definition:
class.ilExcCronFeedbackNotification.php:70
ilExcCronFeedbackNotification\getId
getId()
Definition:
class.ilExcCronFeedbackNotification.php:29
ilExcCronFeedbackNotification\getDefaultScheduleType
getDefaultScheduleType()
Definition:
class.ilExcCronFeedbackNotification.php:50
ilExcCronFeedbackNotification\hasFlexibleSchedule
hasFlexibleSchedule()
Definition:
class.ilExcCronFeedbackNotification.php:65
ilCronJobResult\STATUS_OK
const STATUS_OK
Definition:
class.ilCronJobResult.php:15
ilExcCronFeedbackNotification\$lng
$lng
Definition:
class.ilExcCronFeedbackNotification.php:16
$DIC
$DIC
Definition:
xapitoken.php:46
$message
$message
Definition:
xapiexit.php:14
ilCronJobResult
Cron job result data container.
Definition:
class.ilCronJobResult.php:11
ilExcCronFeedbackNotification\hasAutoActivation
hasAutoActivation()
Definition:
class.ilExcCronFeedbackNotification.php:60
ilCronJobResult\STATUS_NO_ACTION
const STATUS_NO_ACTION
Definition:
class.ilCronJobResult.php:14
Modules
Exercise
classes
class.ilExcCronFeedbackNotification.php
Generated on Thu Apr 3 2025 20:00:49 for ILIAS by
1.8.13 (using
Doxyfile
)