- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/Model/FieldContentTypeTable.php
- Класс: Bitrix\Crm\Model\FieldContentTypeTable
- Вызов: FieldContentTypeTable::getMap
static function getMap()
{
return [
(new IntegerField('ID'))
->configurePrimary()
->configureAutocomplete()
,
(new IntegerField('ENTITY_TYPE_ID'))
->configureRequired()
,
(new IntegerField('ENTITY_ID'))
->configureRequired()
,
(new StringField('FIELD_NAME'))
->configureRequired()
->configureSize(255)
,
(new EnumField('CONTENT_TYPE_ID'))
->configureRequired()
->configureValues([
\CCrmContentType::BBCode,
\CCrmContentType::Html,
])
->configureDefaultValue(self::getDefaultContentTypeId())
,
];
}