• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/model/chatindex.php
  • Класс: BitrixImOpenLinesModelChatIndexTable
  • Вызов: ChatIndexTable::getMap
static function getMap()
{
	return [
		'CHAT_ID' => new IntegerField(
			'CHAT_ID',
			[
				'primary' => true,
			]
		),
		'SEARCH_TITLE' => new StringField(
			'SEARCH_TITLE',
			[
				'validation' => function()
				{
					return[
						new LengthValidator(null, 511),
					];
				},
			]
		),
	];
}