Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/ui/lib/entityform/control/ |
Upload File : |
<?php namespace Bitrix\UI\EntityForm\Control; class Type { public const COLUMN = 'column'; public const SECTION = 'section'; public const TEXT = 'text'; public const MULTI_TEXT = 'multitext'; public const TEXTAREA = 'textarea'; public const NUMBER = 'number'; public const MULTI_NUMBER = 'multinumber'; public const DATETIME = 'datetime'; public const MULTI_DATETIME = 'multidatetime'; public const BOOLEAN = 'boolean'; public const LIST = 'list'; public const MULTI_LIST = 'multilist'; public const HTML = 'html'; public const LINK = 'link'; public const IMAGE = 'image'; public const CUSTOM = 'custom'; public const MONEY = 'money'; public const MULTI_MONEY = 'multimoney'; public const USER = 'user'; public const INCLUDED_AREA = 'included_area'; }