• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/test/typography/storetable.php
  • Класс: BitrixMainTestTypographyStoreTable
  • Вызов: StoreTable::getMap
static function getMap()
{
	return [
		(new IntegerField('ID'))
			->configurePrimary()
			->configureAutocomplete(),

		(new StringField('ADDRESS')),

		(new OneToMany('BOOK_ITEMS', StoreBookTable::class, 'STORE'))
	];
}