TYPO3 CMS  TYPO3_6-2
TableColumnType.php
Go to the documentation of this file.
1 <?php
22  const __default = self::INPUT;
23 
27  const INPUT = 'INPUT';
28  const TEXT = 'TEXT';
29  const CHECK = 'CHECK';
30  const RADIO = 'RADIO';
31  const SELECT = 'SELECT';
32  const GROUP = 'GROUP';
33  const NONE = 'NONE';
34  const PASSTHROUGH = 'PASSTHROUGH';
35  const USER = 'USER';
36  const FLEX = 'FLEX';
37  const INLINE = 'INLINE';
38 
42  public function __construct($type = NULL) {
43  if ($type !== NULL) {
44  $type = strtoupper((string) $type);
45  }
46 
47  parent::__construct($type);
48  }
49 }