ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilObjStudyProgrammeReference.php
Go to the documentation of this file.
1
<?php
2
3
class
ilObjStudyProgrammeReference
extends
ilContainerReference
4
{
5
protected
$referenced_object
;
11
public
function
__construct
($a_id = 0, $a_call_by_reference =
true
)
12
{
13
global
$DIC
;
14
$this->type =
'prgr'
;
15
$this->tree = $DIC[
'tree'
];
16
parent::__construct
($a_id, $a_call_by_reference);
17
}
18
24
public
function
putInTree
($a_parent_ref)
25
{
26
$res
= parent::putInTree($a_parent_ref);
27
28
if
(
ilObject::_lookupType
($a_parent_ref,
true
) ==
"prg"
) {
29
$par =
ilObjStudyProgramme::getInstanceByRefId
($a_parent_ref);
30
$par->nodeInserted($this->
getReferencedObject
());
31
}
32
33
return
$res
;
34
}
35
36
public
function
getParent
() : ?\
ilObjStudyProgramme
37
{
38
$parent_data = $this->tree->getParentNodeData($this->
getRefId
());
39
if
($parent_data[
"type"
] ===
"prg"
&& !$parent_data[
"deleted"
]) {
40
return
ilObjStudyProgramme::getInstanceByRefId
($parent_data[
"ref_id"
]);
41
}
42
return
null;
43
}
44
45
public
function
getReferencedObject
()
46
{
47
if
(!$this->referenced_object) {
48
$this->referenced_object =
ilObjStudyProgramme::getInstanceByRefId
($this->target_ref_id);
49
}
50
return
$this->referenced_object
;
51
}
52
}
ilContainerReference
Definition:
class.ilContainerReference.php:34
ilObjStudyProgrammeReference
Definition:
class.ilObjStudyProgrammeReference.php:3
ilObjStudyProgrammeReference\getParent
getParent()
Definition:
class.ilObjStudyProgrammeReference.php:36
ilObjStudyProgrammeReference\getReferencedObject
getReferencedObject()
Definition:
class.ilObjStudyProgrammeReference.php:45
ilObjStudyProgramme\getInstanceByRefId
static getInstanceByRefId($a_ref_id)
Definition:
class.ilObjStudyProgramme.php:210
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ilObjStudyProgrammeReference\__construct
__construct($a_id=0, $a_call_by_reference=true)
Constructor.
Definition:
class.ilObjStudyProgrammeReference.php:11
ilObjStudyProgramme
Definition:
class.ilObjStudyProgramme.php:5
ilObjStudyProgrammeReference\$referenced_object
$referenced_object
Definition:
class.ilObjStudyProgrammeReference.php:5
$DIC
global $DIC
Definition:
goto.php:24
ilObject\_lookupType
static _lookupType($a_id, $a_reference=false)
lookup object type
Definition:
class.ilObject.php:1281
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
ilObject\getRefId
getRefId()
get reference id public
Definition:
class.ilObject.php:350
ilObjStudyProgrammeReference\putInTree
putInTree($a_parent_ref)
Overwritten from ilObject.
Definition:
class.ilObjStudyProgrammeReference.php:24
Modules
StudyProgrammeReference
classes
class.ilObjStudyProgrammeReference.php
Generated on Thu Apr 3 2025 21:01:00 for ILIAS by
1.8.13 (using
Doxyfile
)