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.ilQTIMatimage.php
Go to the documentation of this file.
1
<?php
2
/*
3
+-----------------------------------------------------------------------------+
4
| ILIAS open source |
5
+-----------------------------------------------------------------------------+
6
| Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7
| |
8
| This program is free software; you can redistribute it and/or |
9
| modify it under the terms of the GNU General Public License |
10
| as published by the Free Software Foundation; either version 2 |
11
| of the License, or (at your option) any later version. |
12
| |
13
| This program is distributed in the hope that it will be useful, |
14
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
15
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16
| GNU General Public License for more details. |
17
| |
18
| You should have received a copy of the GNU General Public License |
19
| along with this program; if not, write to the Free Software |
20
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21
+-----------------------------------------------------------------------------+
22
*/
23
32
class
ilQTIMatimage
33
{
34
var
$imagetype
;
35
var
$label
;
36
var
$height
;
37
var
$width
;
38
var
$uri
;
39
var
$embedded
;
40
var
$x0
;
41
var
$y0
;
42
var
$entityref
;
43
var
$content
;
44
45
function
ilQTIMatimage
()
46
{
47
}
48
49
function
setImagetype
($a_imagetype)
50
{
51
$this->imagetype = $a_imagetype;
52
}
53
54
function
getImagetype
()
55
{
56
return
$this->imagetype
;
57
}
58
59
function
setLabel
($a_label)
60
{
61
$this->label = $a_label;
62
}
63
64
function
getLabel
()
65
{
66
return
$this->label
;
67
}
68
69
function
setHeight
($a_height)
70
{
71
$this->height = $a_height;
72
}
73
74
function
getHeight
()
75
{
76
return
$this->height
;
77
}
78
79
function
setWidth
($a_width)
80
{
81
$this->width = $a_width;
82
}
83
84
function
getWidth
()
85
{
86
return
$this->width
;
87
}
88
89
function
setEmbedded
($a_embedded)
90
{
91
$this->embedded = $a_embedded;
92
}
93
94
function
getEmbedded
()
95
{
96
return
$this->embedded
;
97
}
98
99
function
setUri
($a_uri)
100
{
101
$this->uri = $a_uri;
102
}
103
104
function
getUri
()
105
{
106
return
$this->uri
;
107
}
108
109
function
setX0
($a_x0)
110
{
111
$this->x0 = $a_x0;
112
}
113
114
function
getX0
()
115
{
116
return
$this->x0
;
117
}
118
119
function
setY0
($a_y0)
120
{
121
$this->y0 = $a_y0;
122
}
123
124
function
getY0
()
125
{
126
return
$this->y0
;
127
}
128
129
function
setEntityref
($a_entityref)
130
{
131
$this->entityref = $a_entityref;
132
}
133
134
function
getEntityref
()
135
{
136
return
$this->entityref
;
137
}
138
139
function
setContent
($a_content)
140
{
141
$this->content = $a_content;
142
}
143
144
function
getContent
()
145
{
146
return
$this->content
;
147
}
148
}
149
?>
ilQTIMatimage\ilQTIMatimage
ilQTIMatimage()
Definition:
class.ilQTIMatimage.php:45
ilQTIMatimage\getLabel
getLabel()
Definition:
class.ilQTIMatimage.php:64
ilQTIMatimage\$embedded
$embedded
Definition:
class.ilQTIMatimage.php:39
ilQTIMatimage\$uri
$uri
Definition:
class.ilQTIMatimage.php:38
ilQTIMatimage\getEntityref
getEntityref()
Definition:
class.ilQTIMatimage.php:134
ilQTIMatimage\setX0
setX0($a_x0)
Definition:
class.ilQTIMatimage.php:109
ilQTIMatimage\setContent
setContent($a_content)
Definition:
class.ilQTIMatimage.php:139
ilQTIMatimage\$label
$label
Definition:
class.ilQTIMatimage.php:35
ilQTIMatimage\$entityref
$entityref
Definition:
class.ilQTIMatimage.php:42
ilQTIMatimage\$content
$content
Definition:
class.ilQTIMatimage.php:43
ilQTIMatimage\setWidth
setWidth($a_width)
Definition:
class.ilQTIMatimage.php:79
ilQTIMatimage\setUri
setUri($a_uri)
Definition:
class.ilQTIMatimage.php:99
ilQTIMatimage\getX0
getX0()
Definition:
class.ilQTIMatimage.php:114
ilQTIMatimage\setEntityref
setEntityref($a_entityref)
Definition:
class.ilQTIMatimage.php:129
ilQTIMatimage\$imagetype
$imagetype
Definition:
class.ilQTIMatimage.php:34
ilQTIMatimage\$y0
$y0
Definition:
class.ilQTIMatimage.php:41
ilQTIMatimage\$height
$height
Definition:
class.ilQTIMatimage.php:36
ilQTIMatimage\getY0
getY0()
Definition:
class.ilQTIMatimage.php:124
ilQTIMatimage\$x0
$x0
Definition:
class.ilQTIMatimage.php:40
ilQTIMatimage\setEmbedded
setEmbedded($a_embedded)
Definition:
class.ilQTIMatimage.php:89
ilQTIMatimage\getHeight
getHeight()
Definition:
class.ilQTIMatimage.php:74
ilQTIMatimage\setHeight
setHeight($a_height)
Definition:
class.ilQTIMatimage.php:69
ilQTIMatimage\setY0
setY0($a_y0)
Definition:
class.ilQTIMatimage.php:119
ilQTIMatimage\getUri
getUri()
Definition:
class.ilQTIMatimage.php:104
ilQTIMatimage\$width
$width
Definition:
class.ilQTIMatimage.php:37
ilQTIMatimage
Definition:
class.ilQTIMatimage.php:32
ilQTIMatimage\getWidth
getWidth()
Definition:
class.ilQTIMatimage.php:84
ilQTIMatimage\setImagetype
setImagetype($a_imagetype)
Definition:
class.ilQTIMatimage.php:49
ilQTIMatimage\getContent
getContent()
Definition:
class.ilQTIMatimage.php:144
ilQTIMatimage\setLabel
setLabel($a_label)
Definition:
class.ilQTIMatimage.php:59
ilQTIMatimage\getImagetype
getImagetype()
Definition:
class.ilQTIMatimage.php:54
ilQTIMatimage\getEmbedded
getEmbedded()
Definition:
class.ilQTIMatimage.php:94
Services
QTI
classes
class.ilQTIMatimage.php
Generated on Mon Dec 21 2020 19:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)