1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
attributes.php
См. документацию.
1<?php
2
4
6{
7 public const UNDEFINED = '';
8 public const HIDDEN = 'HID';
9 public const IMMUTABLE = 'IM';// User can define field value only on create
10 public 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
11 public const REQUIRED = 'REQ';// attribute is the sum of attributes REQ_ADD + REQ_UPD
12 public const REQUIRED_ADD = 'REQ_ADD';
13 public const REQUIRED_UPDATE = 'REQ_UPD';
14 public const MULTIPLE = 'MUL';
15 public const DYNAMIC = 'DYN';
16 public const COMPUTABLE = 'COM';
17 public const DEPRECATED = 'DEP';
18 public const DISABLED_FILTER = 'DIS_FLT'; // can't use field in filter
19 public const DISABLED_ORDER = 'DIS_ORD'; // can't use field in order
20 public const SELECT_ONLY = 'S-O'; // attribute is the sum of attributes DISABLED_FILTER and DISABLED_ORDER
21}