‪TYPO3CMS  11.5
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 {
25  public const ‪__default = ‪self::INPUT;
26 
30  public const ‪INPUT = 'INPUT';
31  public const ‪TEXT = 'TEXT';
32  public const ‪CHECK = 'CHECK';
33  public const ‪RADIO = 'RADIO';
34  public const ‪SELECT = 'SELECT';
35  public const ‪GROUP = 'GROUP';
36  public const ‪NONE = 'NONE';
37  public const ‪LANGUAGE = 'LANGUAGE';
38  public const ‪PASSTHROUGH = 'PASSTHROUGH';
39  public const ‪USER = 'USER';
40  public const ‪FLEX = 'FLEX';
41  public const ‪INLINE = 'INLINE';
42  public const ‪IMAGEMANIPULATION = 'IMAGEMANIPULATION';
43  public const ‪SLUG = 'SLUG';
44  public const ‪CATEGORY = 'CATEGORY';
45 
49  public function ‪__construct($type = null)
50  {
51  if ($type !== null) {
52  $type = strtoupper((string)$type);
53  }
54 
55  parent::__construct($type);
56  }
57 }
‪TYPO3\CMS\Core\DataHandling\TableColumnType\SELECT
‪const SELECT
Definition: TableColumnType.php:34
‪TYPO3\CMS\Core\DataHandling\TableColumnType\INLINE
‪const INLINE
Definition: TableColumnType.php:41
‪TYPO3\CMS\Core\DataHandling\TableColumnType\IMAGEMANIPULATION
‪const IMAGEMANIPULATION
Definition: TableColumnType.php:42
‪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:39
‪TYPO3\CMS\Core\DataHandling\TableColumnType\PASSTHROUGH
‪const PASSTHROUGH
Definition: TableColumnType.php:38
‪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\LANGUAGE
‪const LANGUAGE
Definition: TableColumnType.php:37
‪TYPO3\CMS\Core\DataHandling\TableColumnType\SLUG
‪const SLUG
Definition: TableColumnType.php:43
‪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:49
‪TYPO3\CMS\Core\DataHandling\TableColumnType\FLEX
‪const FLEX
Definition: TableColumnType.php:40
‪TYPO3\CMS\Core\DataHandling\TableColumnType\CATEGORY
‪const CATEGORY
Definition: TableColumnType.php:44