Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
attributes.php
1<?php
2
3
5
6
8{
9 const UNDEFINED = '';
10 const HIDDEN = 'HID';
11 const IMMUTABLE = 'IM';// User can define field value only on create
12 const READONLY = 'R-O';// attributes R-O + IM look like REQ_ADD for the update operation. But then the value of this field will not change for update
13 const REQUIRED = 'REQ';// attribute is the sum of attributes REQ_ADD + REQ_UPD
14 const REQUIRED_ADD = 'REQ_ADD';
15 const REQUIRED_UPDATE = 'REQ_UPD';
16 const MULTIPLE = 'MUL';
17 const DYNAMIC = 'DYN';
18 const COMPUTABLE = 'COM';
19 const DEPRECATED = 'DEP';
20}