TYPO3
7.6
Users
bogdan
Projects
Kapeli
Resources
Dash
Docsets
TYPO3
src
typo3
sysext
fluid
Classes
Core
ViewHelper
ArgumentDefinition.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Fluid\Core\ViewHelper;
3
4
/* *
5
* This script is backported from the TYPO3 Flow package "TYPO3.Fluid". *
6
* *
7
* It is free software; you can redistribute it and/or modify it under *
8
* the terms of the GNU Lesser General Public License, either version 3 *
9
* of the License, or (at your option) any later version. *
10
* *
11
* The TYPO3 project - inspiring people to share! *
12
* */
13
17
class
ArgumentDefinition
18
{
24
protected
$name
;
25
31
protected
$type
;
32
38
protected
$description
;
39
45
protected
$required
=
false
;
46
52
protected
$defaultValue
= null;
53
59
protected
$isMethodParameter
=
false
;
60
71
public
function
__construct
(
$name
,
$type
,
$description
,
$required
,
$defaultValue
= null,
$isMethodParameter
=
false
)
72
{
73
$this->name =
$name
;
74
$this->type =
$type
;
75
$this->description =
$description
;
76
$this->required =
$required
;
77
$this->defaultValue =
$defaultValue
;
78
$this->
isMethodParameter
=
$isMethodParameter
;
79
}
80
86
public
function
getName
()
87
{
88
return
$this->name
;
89
}
90
96
public
function
getType
()
97
{
98
return
$this->type
;
99
}
100
106
public
function
getDescription
()
107
{
108
return
$this->description
;
109
}
110
116
public
function
isRequired
()
117
{
118
return
$this->required
;
119
}
120
126
public
function
getDefaultValue
()
127
{
128
return
$this->defaultValue
;
129
}
130
136
public
function
isMethodParameter
()
137
{
138
return
$this->isMethodParameter
;
139
}
140
}
Generated on Wed Nov 11 2015 01:51:50 for TYPO3 by
1.8.3