‪TYPO3CMS  10.4
TableColumnType.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
19 
24 {
26 
30  const ‪INPUT = 'INPUT';
31  const ‪TEXT = 'TEXT';
32  const ‪CHECK = 'CHECK';
33  const ‪RADIO = 'RADIO';
34  const ‪SELECT = 'SELECT';
35  const ‪GROUP = 'GROUP';
36  const ‪NONE = 'NONE';
37  const ‪PASSTHROUGH = 'PASSTHROUGH';
38  const ‪USER = 'USER';
39  const ‪FLEX = 'FLEX';
40  const ‪INLINE = 'INLINE';
41  const ‪IMAGEMANIPULATION = 'IMAGEMANIPULATION';
42  const ‪SLUG = 'SLUG';
43 
47  public function ‪__construct($type = null)
48  {
49  if ($type !== null) {
50  $type = strtoupper((string)$type);
51  }
52 
53  parent::__construct($type);
54  }
55 }
‪TYPO3\CMS\Core\DataHandling\TableColumnType\SELECT
‪const SELECT
Definition: TableColumnType.php:34
‪TYPO3\CMS\Core\DataHandling\TableColumnType\INLINE
‪const INLINE
Definition: TableColumnType.php:40
‪TYPO3\CMS\Core\DataHandling\TableColumnType\IMAGEMANIPULATION
‪const IMAGEMANIPULATION
Definition: TableColumnType.php:41
‪TYPO3\CMS\Core\DataHandling\TableColumnType\GROUP
‪const GROUP
Definition: TableColumnType.php:35
‪TYPO3\CMS\Core\DataHandling
Definition: DataHandler.php:16
‪TYPO3\CMS\Core\DataHandling\TableColumnType\__default
‪const __default
Definition: TableColumnType.php:25
‪TYPO3\CMS\Core\DataHandling\TableColumnType\USER
‪const USER
Definition: TableColumnType.php:38
‪TYPO3\CMS\Core\DataHandling\TableColumnType\PASSTHROUGH
‪const PASSTHROUGH
Definition: TableColumnType.php:37
‪TYPO3\CMS\Core\DataHandling\TableColumnType\RADIO
‪const RADIO
Definition: TableColumnType.php:33
‪TYPO3\CMS\Core\DataHandling\TableColumnType\TEXT
‪const TEXT
Definition: TableColumnType.php:31
‪TYPO3\CMS\Core\DataHandling\TableColumnType\SLUG
‪const SLUG
Definition: TableColumnType.php:42
‪TYPO3\CMS\Core\DataHandling\TableColumnType\CHECK
‪const CHECK
Definition: TableColumnType.php:32
‪TYPO3\CMS\Core\DataHandling\TableColumnType\NONE
‪const NONE
Definition: TableColumnType.php:36
‪TYPO3\CMS\Core\Type\Enumeration
Definition: Enumeration.php:29
‪TYPO3\CMS\Core\DataHandling\TableColumnType\INPUT
‪const INPUT
Definition: TableColumnType.php:30
‪TYPO3\CMS\Core\DataHandling\TableColumnType
Definition: TableColumnType.php:24
‪TYPO3\CMS\Core\DataHandling\TableColumnType\__construct
‪__construct($type=null)
Definition: TableColumnType.php:47
‪TYPO3\CMS\Core\DataHandling\TableColumnType\FLEX
‪const FLEX
Definition: TableColumnType.php:39