- Модуль: location
- Путь к файлу: ~/bitrix/modules/location/lib/model/addressfieldtable.php
- Класс: BitrixLocationModelAddressFieldTable
- Вызов: AddressFieldTable::getMap
static function getMap()
{
return [
(new FieldsIntegerField('ADDRESS_ID'))
->configureRequired(true)
->configurePrimary(true),
(new FieldsIntegerField('TYPE'))
->configureRequired(true)
->configurePrimary(true),
(new FieldsStringField('VALUE'))
->addValidator(new MainORMFieldsValidatorsLengthValidator(null, 1024)),
(new FieldsStringField('VALUE_NORMALIZED'))
->addValidator(new MainORMFieldsValidatorsLengthValidator(null, 1024)),
// Ref
(new FieldsRelationsReference('ADDRESS', AddressTable::class,
Join::on('this.ADDRESS_ID', 'ref.ID')))
->configureJoinType('inner')
];
}