- Модуль: rest
- Путь к файлу: ~/bitrix/modules/rest/lib/userfieldproxy.php
- Класс: BitrixRestUserFieldProxy
- Вызов: UserFieldProxy::getEnumerationElementFields
static function getEnumerationElementFields()
{
self::includeLangFile();
return array(
'ID' => array('type' => 'int', 'title' => GetMessage('REST_UF_ID'), 'isReadOnly'=> true),
'SORT' => array('type' => 'int', 'title' => GetMessage('REST_UF_SORT')),
'VALUE' => array('type' => 'string', 'title' => GetMessage('REST_UF_VALUE')),
'DEF' => array('type' => 'string', 'title' => GetMessage('REST_UF_IS_DEF')),
'DEL' => array('type' => 'string', 'title' => GetMessage('REST_UF_DEL')),
);
}