ILIAS
release_4-4 Revision
◀ 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
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
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.ilSoapRepositoryStructureObject.php
Go to the documentation of this file.
1
<?php
2
3
/*
4
+-----------------------------------------------------------------------------+
5
| ILIAS open source |
6
+-----------------------------------------------------------------------------+
7
| Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
8
| |
9
| This program is free software; you can redistribute it and/or |
10
| modify it under the terms of the GNU General Public License |
11
| as published by the Free Software Foundation; either version 2 |
12
| of the License, or (at your option) any later version. |
13
| |
14
| This program is distributed in the hope that it will be useful, |
15
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
16
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17
| GNU General Public License for more details. |
18
| |
19
| You should have received a copy of the GNU General Public License |
20
| along with this program; if not, write to the Free Software |
21
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
22
+-----------------------------------------------------------------------------+
23
*/
24
25
36
include_once
"./webservice/soap/classes/class.ilSoapStructureObject.php"
;
37
38
class
ilSoapRepositoryStructureObject
extends
ilSoapStructureObject
{
39
var
$ref_id
;
40
41
function
ilSoapRepositoryStructureObject
($objId,
$type
,
$title
,
$description
, $refId) {
42
parent::ilSoapStructureObject($objId,
$type
,
$title
,
$description
);
43
$this->
setRefId
($refId);
44
}
45
50
function
setRefId
($value) {
51
$this->ref_id= $value;
52
}
53
54
59
function
getRefId
()
60
{
61
return
$this->ref_id
;
62
}
63
64
function
getInternalLink
() {
65
return
"[iln "
.$this->getType().
"=\""
.$this->
getRefId
().
"\"]"
.$this->
getTitle
().
"[/iln]"
;
66
}
67
68
function
getGotoLink
(){
69
return
ILIAS_HTTP_PATH.
"/"
.
"goto.php?target="
.$this->getType().
"_"
.$this->
getRefId
().
"&client_id="
.CLIENT_ID;
70
}
71
72
function
_getXMLAttributes
() {
73
$attrs = array(
'type'
=> $this->
getType
(),
74
'obj_id'
=> $this->
getObjId
(),
75
'ref_id'
=> $this->
getRefId
());
76
77
return
$attrs;
78
79
}
80
81
function
_getTagName
() {
82
return
"RepositoryObject"
;
83
}
84
85
86
}
87
88
?>
ilSoapStructureObject\$description
$description
Definition:
class.ilSoapStructureObject.php:39
ilSoapRepositoryStructureObject\getGotoLink
getGotoLink()
Definition:
class.ilSoapRepositoryStructureObject.php:68
ilSoapStructureObject\getTitle
getTitle()
return current title
Definition:
class.ilSoapStructureObject.php:103
ilSoapRepositoryStructureObject\ilSoapRepositoryStructureObject
ilSoapRepositoryStructureObject($objId, $type, $title, $description, $refId)
Definition:
class.ilSoapRepositoryStructureObject.php:41
ilSoapStructureObject\$type
$type
Definition:
class.ilSoapStructureObject.php:38
ilSoapRepositoryStructureObject\setRefId
setRefId($value)
set current refId
Definition:
class.ilSoapRepositoryStructureObject.php:50
ilSoapRepositoryStructureObject\_getTagName
_getTagName()
Definition:
class.ilSoapRepositoryStructureObject.php:81
ilSoapRepositoryStructureObject
Definition:
class.ilSoapRepositoryStructureObject.php:38
ilSoapRepositoryStructureObject\getInternalLink
getInternalLink()
Definition:
class.ilSoapRepositoryStructureObject.php:64
ilSoapRepositoryStructureObject\_getXMLAttributes
_getXMLAttributes()
Definition:
class.ilSoapRepositoryStructureObject.php:72
ilSoapStructureObject
Definition:
class.ilSoapStructureObject.php:34
ilSoapStructureObject\$title
$title
Definition:
class.ilSoapStructureObject.php:37
ilSoapStructureObject\getObjId
getObjId()
return current object id
Definition:
class.ilSoapStructureObject.php:83
ilSoapRepositoryStructureObject\getRefId
getRefId()
return current ref id
Definition:
class.ilSoapRepositoryStructureObject.php:59
ilSoapRepositoryStructureObject\$ref_id
$ref_id
Definition:
class.ilSoapRepositoryStructureObject.php:39
ilSoapStructureObject\getType
getType()
return current type
Definition:
class.ilSoapStructureObject.php:139
webservice
soap
classes
class.ilSoapRepositoryStructureObject.php
Generated on Mon Dec 21 2020 19:01:27 for ILIAS by
1.8.13 (using
Doxyfile
)