• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/timeline/entity/customlogo.php
  • Класс: Bitrix\Crm\Timeline\Entity\CustomLogoTable
  • Вызов: CustomLogoTable::getMap
static function getMap()
{
	return [
		(new IntegerField('ID'))
			->configurePrimary()
			->configureAutocomplete(),
		(new StringField('CODE', [
			'required' => true,
			'validation' => fn() => [
				new UniqueValidator('Code must be unique'),
				self::checkIsSystemCodeValidator(),
			],
		])),
		(new IntegerField('FILE_ID', [
			'required' => true,
		]))
	];
}