• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/model/locationfieldtable.php
  • Класс: BitrixLocationModelLocationFieldTable
  • Вызов: LocationFieldTable::getMap
static function getMap()
{
	return [

		(new FieldsIntegerField('LOCATION_ID'))
			->configureRequired(true)
			->configurePrimary(true),

		(new FieldsIntegerField('TYPE'))
			->configureRequired(true)
			->configurePrimary(true),

		(new FieldsStringField('VALUE'))
			->addValidator(new MainORMFieldsValidatorsLengthValidator(null, 255)),

		// Ref

		(new FieldsRelationsReference('LOCATION', LocationTable::class,
			Join::on('this.LOCATION_ID', 'ref.ID')))
			->configureJoinType('inner')
	];
}