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