‪TYPO3CMS  ‪main
TableColumnType.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
23 enum ‪TableColumnType: string
24 {
25  case INPUT = 'input';
26  case TEXT = 'text';
27  case CHECK = 'check';
28  case RADIO = 'radio';
29  case SELECT = 'select';
30  case GROUP = 'group';
31  case FOLDER = 'folder';
32  case NONE = 'none';
33  case LANGUAGE = 'language';
34  case PASSTHROUGH = 'passthrough';
35  case USER = 'user';
36  case FLEX = 'flex';
37  case INLINE = 'inline';
38  case IMAGEMANIPULATION = 'imagemanipulation';
39  case SLUG = 'slug';
40  case CATEGORY = 'category';
41  case EMAIL = 'email';
42  case LINK = 'link';
43  case PASSWORD = 'password';
44  case DATETIME = 'datetime';
45  case COLOR = 'color';
46  case NUMBER = 'number';
47  case FILE = 'file';
48  case JSON = 'json';
49  case ‪UUID = 'uuid';
50 }
‪TYPO3\CMS\Core\DataHandling\UUID
‪@ UUID
Definition: TableColumnType.php:49
‪TYPO3\CMS\Core\DataHandling
Definition: DataHandler.php:16
‪TYPO3\CMS\Core\DataHandling\TableColumnType
‪TableColumnType
Definition: TableColumnType.php:24