ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ImageMapGUIRequest.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\MediaObjects\ImageMap
;
20
21
use
ILIAS\Repository\BaseGUIRequest
;
22
23
class
ImageMapGUIRequest
24
{
25
use
BaseGUIRequest
;
26
27
public
function
__construct
(
28
\
ILIAS
\
HTTP
\
Services
$http
,
29
\
ILIAS
\
Refinery
\
Factory
$refinery
30
) {
31
$this->
initRequest
(
32
$http,
33
$refinery
34
);
35
}
36
37
public
function
getRefId
():
int
38
{
39
return
$this->
int
(
"ref_id"
);
40
}
41
42
public
function
getObjId
():
int
43
{
44
return
$this->
int
(
"obj_id"
);
45
}
46
47
public
function
getHierId
(): string
48
{
49
return
$this->
str
(
"hier_id"
);
50
}
51
52
public
function
getPCId
(): string
53
{
54
return
$this->
str
(
"pc_id"
);
55
}
56
57
public
function
getItemId
():
int
58
{
59
return
$this->
int
(
"item_id"
);
60
}
61
62
public
function
getLinkType
(): string
63
{
64
return
$this->
str
(
"linktype"
);
65
}
66
67
public
function
getLinkTarget
(): string
68
{
69
return
$this->
str
(
"linktarget"
);
70
}
71
72
public
function
getLinkTargetFrame
(): string
73
{
74
return
$this->
str
(
"linktargetframe"
);
75
}
76
77
public
function
getLinkAnchor
(): string
78
{
79
return
$this->
str
(
"linkanchor"
);
80
}
81
82
public
function
getX
(): string
83
{
84
return
$this->
str
(
"editImagemapForward_x"
);
85
}
86
87
public
function
getY
(): string
88
{
89
return
$this->
str
(
"editImagemapForward_y"
);
90
}
91
92
public
function
getAreaTitle
(
int
$nr): string
93
{
94
return
$this->
str
(
"name_"
. $nr);
95
}
96
97
public
function
getAreaName
(): string
98
{
99
return
$this->
str
(
"area_name"
);
100
}
101
102
public
function
getAreaHighlightMode
(
int
$nr): string
103
{
104
return
$this->
str
(
"hl_mode_"
. $nr);
105
}
106
107
public
function
getAreaHighlightClass
(
int
$nr): string
108
{
109
return
$this->
str
(
"hl_class_"
. $nr);
110
}
111
112
public
function
getHighlightMode
(): string
113
{
114
return
$this->
str
(
"highlight_mode"
);
115
}
116
117
public
function
getHighlightClass
(): string
118
{
119
return
$this->
str
(
"highlight_class"
);
120
}
121
122
public
function
getAreaShape
(): string
123
{
124
return
$this->
str
(
"shape"
);
125
}
126
127
public
function
getAreaLinkType
(): string
128
{
129
return
$this->
str
(
"area_link_type"
);
130
}
131
132
public
function
getExternalLink
(): string
133
{
134
return
$this->
str
(
"area_link_ext"
);
135
}
136
137
public
function
getArea
(): array
138
{
139
return
$this->
strArray
(
"area"
);
140
}
141
}
ILIAS\MediaObjects\ImageMap
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ImageMapEditSessionRepository.php:21
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getAreaName
getAreaName()
Definition:
class.ImageMapGUIRequest.php:97
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getPCId
getPCId()
Definition:
class.ImageMapGUIRequest.php:52
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getItemId
getItemId()
Definition:
class.ImageMapGUIRequest.php:57
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getLinkTargetFrame
getLinkTargetFrame()
Definition:
class.ImageMapGUIRequest.php:72
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getAreaTitle
getAreaTitle(int $nr)
Definition:
class.ImageMapGUIRequest.php:92
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getAreaShape
getAreaShape()
Definition:
class.ImageMapGUIRequest.php:122
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getAreaLinkType
getAreaLinkType()
Definition:
class.ImageMapGUIRequest.php:127
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getHighlightMode
getHighlightMode()
Definition:
class.ImageMapGUIRequest.php:112
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getLinkType
getLinkType()
Definition:
class.ImageMapGUIRequest.php:62
ILIAS
Class ChatMainBarProvider .
ILIAS\Repository\str
str(string $key)
Definition:
trait.BaseGUIRequest.php:106
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getObjId
getObjId()
Definition:
class.ImageMapGUIRequest.php:42
ILIAS\Repository\strArray
strArray(string $key)
Definition:
trait.BaseGUIRequest.php:116
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getArea
getArea()
Definition:
class.ImageMapGUIRequest.php:137
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getRefId
getRefId()
Definition:
class.ImageMapGUIRequest.php:37
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\__construct
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery)
Definition:
class.ImageMapGUIRequest.php:27
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getHighlightClass
getHighlightClass()
Definition:
class.ImageMapGUIRequest.php:117
Services
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
HTTP
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getX
getX()
Definition:
class.ImageMapGUIRequest.php:82
ILIAS\Repository\initRequest
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
Definition:
trait.BaseGUIRequest.php:48
Factory
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getLinkTarget
getLinkTarget()
Definition:
class.ImageMapGUIRequest.php:67
ILIAS\Repository\BaseGUIRequest
trait BaseGUIRequest
Base gui request wrapper.
Definition:
trait.BaseGUIRequest.php:34
$http
$http
Definition:
raiseError.php:7
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest
Definition:
class.ImageMapGUIRequest.php:23
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getLinkAnchor
getLinkAnchor()
Definition:
class.ImageMapGUIRequest.php:77
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getY
getY()
Definition:
class.ImageMapGUIRequest.php:87
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getAreaHighlightMode
getAreaHighlightMode(int $nr)
Definition:
class.ImageMapGUIRequest.php:102
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getExternalLink
getExternalLink()
Definition:
class.ImageMapGUIRequest.php:132
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getHierId
getHierId()
Definition:
class.ImageMapGUIRequest.php:47
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\MediaObjects\ImageMap\ImageMapGUIRequest\getAreaHighlightClass
getAreaHighlightClass(int $nr)
Definition:
class.ImageMapGUIRequest.php:107
ILIAS\Repository\$refinery
Refinery Factory $refinery
Definition:
trait.BaseGUIRequest.php:36
Services
MediaObjects
ImageMap
class.ImageMapGUIRequest.php
Generated on Thu Apr 3 2025 22:02:26 for ILIAS by
1.8.13 (using
Doxyfile
)