ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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.ilCronUpdateOrgUnitPaths.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
28
class
ilCronUpdateOrgUnitPaths
extends
CronJob
29
{
30
public
const
ID
=
"orgunit_paths"
;
31
protected
ilDBInterface
$db
;
32
protected
ilLogger
$log
;
33
protected
ilTree
$tree
;
34
35
private
ilLanguage
$lng
;
36
37
public
function
__construct
()
38
{
39
global
$DIC
;
40
41
$this->
lng
= $DIC->language();
42
}
43
44
public
function
getId
(): string
45
{
46
return
self::ID;
47
}
48
49
public
function
getTitle
(): string
50
{
51
return
$this->
lng
->txt(
"update_orgunits"
);
52
}
53
54
public
function
getDescription
(): string
55
{
56
return
$this->
lng
->txt(
"update_orgunits_desc"
);
57
}
58
59
public
function
hasAutoActivation
(): bool
60
{
61
return
true
;
62
}
63
64
public
function
hasFlexibleSchedule
(): bool
65
{
66
return
true
;
67
}
68
69
public
function
getDefaultScheduleType
():
JobScheduleType
70
{
71
return
JobScheduleType::DAILY;
72
}
73
74
public
function
getDefaultScheduleValue
(): ?
int
75
{
76
return
null
;
77
}
78
79
public
function
run
():
JobResult
80
{
81
foreach
(
ilOrgUnitPathStorage::getAllOrguRefIds
() as
$ref_id
) {
82
ilOrgUnitPathStorage::writePathByRefId($ref_id);
83
}
84
ilOrgUnitPathStorage::clearDeleted();
85
$result =
new
JobResult
();
86
$result->setStatus(JobResult::STATUS_OK);
87
88
return
$result;
89
}
90
}
ilLogger
CronJob
ilCronUpdateOrgUnitPaths\getId
getId()
Definition:
class.ilCronUpdateOrgUnitPaths.php:44
ilTree
ilLanguage
ILIAS\Cron\CronJob
Definition:
CronJob.php:26
ilCronUpdateOrgUnitPaths\hasAutoActivation
hasAutoActivation()
Definition:
class.ilCronUpdateOrgUnitPaths.php:59
ilCronUpdateOrgUnitPaths\ID
const ID
Definition:
class.ilCronUpdateOrgUnitPaths.php:30
ILIAS\BackgroundTasks\Task\Job\JobResult
Definition:
JobResult.php:23
ilCronUpdateOrgUnitPaths\$db
ilDBInterface $db
Definition:
class.ilCronUpdateOrgUnitPaths.php:31
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilCronUpdateOrgUnitPaths\getDefaultScheduleType
getDefaultScheduleType()
Definition:
class.ilCronUpdateOrgUnitPaths.php:69
ilCronUpdateOrgUnitPaths\run
run()
Definition:
class.ilCronUpdateOrgUnitPaths.php:79
ilCronUpdateOrgUnitPaths
Class ilCronUpdateOrgUnitPaths.
Definition:
class.ilCronUpdateOrgUnitPaths.php:28
ilCronUpdateOrgUnitPaths\$tree
ilTree $tree
Definition:
class.ilCronUpdateOrgUnitPaths.php:33
$ref_id
$ref_id
Definition:
ltiauth.php:65
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
JobResult
ilCronUpdateOrgUnitPaths\hasFlexibleSchedule
hasFlexibleSchedule()
Definition:
class.ilCronUpdateOrgUnitPaths.php:64
$DIC
global $DIC
Definition:
shib_login.php:22
ilCronUpdateOrgUnitPaths\__construct
__construct()
Definition:
class.ilCronUpdateOrgUnitPaths.php:37
ilDBInterface
ilCronUpdateOrgUnitPaths\getDescription
getDescription()
Definition:
class.ilCronUpdateOrgUnitPaths.php:54
ilOrgUnitPathStorage\getAllOrguRefIds
static getAllOrguRefIds()
Definition:
class.ilOrgUnitPathStorage.php:60
ilCronUpdateOrgUnitPaths\$lng
ilLanguage $lng
Definition:
class.ilCronUpdateOrgUnitPaths.php:35
ilCronUpdateOrgUnitPaths\getTitle
getTitle()
Definition:
class.ilCronUpdateOrgUnitPaths.php:49
ILIAS\Cron\Job\Schedule\JobScheduleType
JobScheduleType
Definition:
JobScheduleType.php:23
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilCronUpdateOrgUnitPaths\getDefaultScheduleValue
getDefaultScheduleValue()
Definition:
class.ilCronUpdateOrgUnitPaths.php:74
ilCronUpdateOrgUnitPaths\$log
ilLogger $log
Definition:
class.ilCronUpdateOrgUnitPaths.php:32
components
ILIAS
OrgUnit
classes
class.ilCronUpdateOrgUnitPaths.php
Generated on Wed Apr 2 2025 23:03:22 for ILIAS by
1.8.13 (using
Doxyfile
)