ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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.ilPCMyCourses.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
require_once(
"./Services/COPage/classes/class.ilPageContent.php"
);
5
16
class
ilPCMyCourses
extends
ilPageContent
17
{
18
var
$dom
;
19
23
function
init
()
24
{
25
$this->
setType
(
"mcrs"
);
26
}
27
32
static
function
getLangVars
()
33
{
34
return
array(
"ed_insert_my_courses"
,
"pc_mcrs"
);
35
}
36
40
function
setNode
(&$a_node)
41
{
42
parent::setNode($a_node);
// this is the PageContent node
43
$this->cach_node =& $a_node->first_child();
// this is the courses node
44
}
45
52
function
create
(&$a_pg_obj, $a_hier_id, $a_pc_id =
""
)
53
{
54
$this->node = $this->
createPageContentNode
();
55
$a_pg_obj->insertContent($this, $a_hier_id,
IL_INSERT_AFTER
, $a_pc_id);
56
$this->mcrs_node = $this->dom->create_element(
"MyCourses"
);
57
$this->mcrs_node = $this->node->append_child($this->mcrs_node);
58
}
59
63
function
setData
()
64
{
65
global
$ilUser
;
66
67
$this->mcrs_node->set_attribute(
"User"
, $ilUser->getId());
68
69
/* remove all children first
70
$children = $this->cach_node->child_nodes();
71
if($children)
72
{
73
foreach($children as $child)
74
{
75
$this->cach_node->remove_child($child);
76
}
77
}
78
*/
79
}
80
}
81
82
?>
ilPCMyCourses\create
create(&$a_pg_obj, $a_hier_id, $a_pc_id="")
Create courses node in xml.
Definition:
class.ilPCMyCourses.php:52
ilPCMyCourses\init
init()
Init page content component.
Definition:
class.ilPCMyCourses.php:23
ilPCMyCourses\setData
setData()
Set courses settings.
Definition:
class.ilPCMyCourses.php:63
ilPageContent\setType
setType($a_type)
Set Type.
Definition:
class.ilPageContent.php:72
ilPCMyCourses\getLangVars
static getLangVars()
Get lang vars needed for editing.
Definition:
class.ilPCMyCourses.php:32
ilPageContent
Class ilPageContent.
Definition:
class.ilPageContent.php:17
ilPCMyCourses\setNode
setNode(&$a_node)
Set node.
Definition:
class.ilPCMyCourses.php:40
ilPCMyCourses\$dom
$dom
Definition:
class.ilPCMyCourses.php:18
IL_INSERT_AFTER
const IL_INSERT_AFTER
Definition:
class.ilPageObject.php:5
ilPCMyCourses
Class ilPCMyCourses.
Definition:
class.ilPCMyCourses.php:16
ilPageContent\createPageContentNode
createPageContentNode($a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
Definition:
class.ilPageContent.php:358
$ilUser
global $ilUser
Definition:
imgupload.php:15
Modules
Portfolio
classes
class.ilPCMyCourses.php
Generated on Mon Mar 31 2025 19:00:37 for ILIAS by
1.8.13 (using
Doxyfile
)