‪TYPO3CMS  10.4
TableColumnSubType.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 ‪DEFAULT_TYPE = '';
31 
32  const ‪DB = 'DB';
33  const ‪FOLDER = 'FOLDER';
34 
38  public function ‪__construct($subType = null)
39  {
40  if ($subType !== null) {
41  $subType = strtoupper((string)$subType);
42  }
43 
44  parent::__construct($subType);
45  }
46 }
‪TYPO3\CMS\Core\DataHandling\TableColumnSubType\DB
‪const DB
Definition: TableColumnSubType.php:32
‪TYPO3\CMS\Core\DataHandling
Definition: DataHandler.php:16
‪TYPO3\CMS\Core\DataHandling\TableColumnSubType\DEFAULT_TYPE
‪const DEFAULT_TYPE
Definition: TableColumnSubType.php:30
‪TYPO3\CMS\Core\DataHandling\TableColumnSubType\__construct
‪__construct($subType=null)
Definition: TableColumnSubType.php:38
‪TYPO3\CMS\Core\DataHandling\TableColumnSubType\__default
‪const __default
Definition: TableColumnSubType.php:25
‪TYPO3\CMS\Core\DataHandling\TableColumnSubType\FOLDER
‪const FOLDER
Definition: TableColumnSubType.php:33
‪TYPO3\CMS\Core\DataHandling\TableColumnSubType
Definition: TableColumnSubType.php:24
‪TYPO3\CMS\Core\Type\Enumeration
Definition: Enumeration.php:29