TYPO3 CMS
TYPO3_6-2
Main Page
Related Pages
+
Classes
Class List
Class Index
Class Hierarchy
+
Class 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
+
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
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
+
Files
File List
+
File Members
+
All
$
(
_
a
c
d
e
f
h
i
l
o
p
r
s
t
u
x
+
Functions
_
a
c
d
e
f
i
l
o
p
r
s
u
x
+
Variables
$
(
_
a
d
e
h
i
p
r
s
t
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
TableColumnType.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Core\DataHandling
;
21
class
TableColumnType
extends
\TYPO3\CMS\Core\Type\Enumeration
{
22
const
__default
= self::INPUT;
23
27
const
INPUT
=
'INPUT'
;
28
const
TEXT
=
'TEXT'
;
29
const
CHECK
=
'CHECK'
;
30
const
RADIO
=
'RADIO'
;
31
const
SELECT
=
'SELECT'
;
32
const
GROUP
=
'GROUP'
;
33
const
NONE
=
'NONE'
;
34
const
PASSTHROUGH
=
'PASSTHROUGH'
;
35
const
USER
=
'USER'
;
36
const
FLEX
=
'FLEX'
;
37
const
INLINE
=
'INLINE'
;
38
42
public
function
__construct
($type = NULL) {
43
if
($type !== NULL) {
44
$type = strtoupper((
string
) $type);
45
}
46
47
parent::__construct($type);
48
}
49
}
TYPO3\CMS\Core\DataHandling\TableColumnType\RADIO
const RADIO
Definition:
TableColumnType.php:30
TYPO3\CMS\Core\DataHandling\TableColumnType\TEXT
const TEXT
Definition:
TableColumnType.php:28
TYPO3\CMS\Core\DataHandling\TableColumnType\__construct
__construct($type=NULL)
Definition:
TableColumnType.php:42
TYPO3\CMS\Core\DataHandling\TableColumnType\SELECT
const SELECT
Definition:
TableColumnType.php:31
TYPO3\CMS\Core\DataHandling\TableColumnType\PASSTHROUGH
const PASSTHROUGH
Definition:
TableColumnType.php:34
TYPO3\CMS\Core\DataHandling\TableColumnType\INPUT
const INPUT
Definition:
TableColumnType.php:27
TYPO3\CMS\Core\DataHandling\TableColumnType\GROUP
const GROUP
Definition:
TableColumnType.php:32
TYPO3\CMS\Core\DataHandling\TableColumnType\FLEX
const FLEX
Definition:
TableColumnType.php:36
TYPO3\CMS\Core\DataHandling\TableColumnType\USER
const USER
Definition:
TableColumnType.php:35
TYPO3\CMS\Core\DataHandling\TableColumnType
Definition:
TableColumnType.php:21
TYPO3\CMS\Core\Type\Enumeration
Definition:
Enumeration.php:26
TYPO3\CMS\Core\DataHandling\TableColumnType\__default
const __default
Definition:
TableColumnType.php:22
TYPO3\CMS\Core\DataHandling
Definition:
DataHandler.php:2
TYPO3\CMS\Core\DataHandling\TableColumnType\NONE
const NONE
Definition:
TableColumnType.php:33
TYPO3\CMS\Core\DataHandling\TableColumnType\CHECK
const CHECK
Definition:
TableColumnType.php:29
TYPO3\CMS\Core\DataHandling\TableColumnType\INLINE
const INLINE
Definition:
TableColumnType.php:37
typo3
sysext
core
Classes
DataHandling
TableColumnType.php
Generated on Wed Aug 7 2019 09:52:20 for TYPO3 CMS by
1.8.13