ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilSubmitButton.php
Go to the documentation of this file.
1
<?php
2
25
class
ilSubmitButton
extends
ilButtonBase
26
{
27
protected
string
$cmd
=
""
;
28
29
public
static
function
getInstance
(): self
30
{
31
return
new
self
(self::TYPE_SUBMIT);
32
}
33
34
35
//
36
// properties
37
//
38
42
public
function
setCommand
(
string
$a_value): void
43
{
44
$this->cmd = trim($a_value);
45
}
46
47
public
function
getCommand
(): string
48
{
49
return
$this->cmd
;
50
}
51
52
53
//
54
// render
55
//
56
57
public
function
render
(): string
58
{
59
$this->
prepareRender
();
60
61
$attr = array();
62
$attr[
"type"
] =
"submit"
;
63
$attr[
"name"
] =
"cmd["
. $this->
getCommand
() .
"]"
;
64
$attr[
"value"
] = $this->
getCaption
();
65
66
return
'<input'
. $this->
renderAttributes
($attr) .
' />'
;
67
}
68
}
ilSubmitButton
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilSubmitButton.php:25
ilSubmitButton\getCommand
getCommand()
Definition:
class.ilSubmitButton.php:47
ilSubmitButton\setCommand
setCommand(string $a_value)
Set submit command.
Definition:
class.ilSubmitButton.php:42
ilButtonBase\prepareRender
prepareRender()
Definition:
class.ilButtonBase.php:213
ilSubmitButton\getInstance
static getInstance()
Definition:
class.ilSubmitButton.php:29
ilSubmitButton\$cmd
string $cmd
Definition:
class.ilSubmitButton.php:27
ilButtonBase
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilButtonBase.php:25
ilButtonBase\renderAttributes
renderAttributes(?array $a_additional_attr=null)
Render current HTML attributes.
Definition:
class.ilButtonBase.php:195
ilSubmitButton\render
render()
Definition:
class.ilSubmitButton.php:57
ilButtonBase\getCaption
getCaption(bool $a_translate=true)
Definition:
class.ilButtonBase.php:90
components
ILIAS
UIComponent
Button
classes
class.ilSubmitButton.php
Generated on Wed Apr 2 2025 23:04:05 for ILIAS by
1.8.13 (using
Doxyfile
)