Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
type.php
1<?php
2
4
5class Type
6{
7 public const COLUMN = 'column';
8 public const SECTION = 'section';
9 public const TEXT = 'text';
10 public const MULTI_TEXT = 'multitext';
11 public const TEXTAREA = 'textarea';
12 public const NUMBER = 'number';
13 public const MULTI_NUMBER = 'multinumber';
14 public const DATETIME = 'datetime';
15 public const MULTI_DATETIME = 'multidatetime';
16 public const BOOLEAN = 'boolean';
17 public const LIST = 'list';
18 public const MULTI_LIST = 'multilist';
19 public const HTML = 'html';
20 public const LINK = 'link';
21 public const IMAGE = 'image';
22 public const CUSTOM = 'custom';
23 public const MONEY = 'money';
24 public const MULTI_MONEY = 'multimoney';
25 public const USER = 'user';
26 public const INCLUDED_AREA = 'included_area';
27}