- Модуль: market
- Путь к файлу: ~/bitrix/modules/market/lib/AppFavorites.php
- Класс: BitrixMarketAppFavoritesTable
- Вызов: AppFavoritesTable::getMap
static function getMap()
{
return [
new IntegerField(
'ID',
[
'primary' => true,
'autocomplete' => true,
]
),
new StringField(
'APP_CODE',
[
'required' => true,
'validation' => [__CLASS__, 'validateAppCode'],
]
),
new IntegerField(
'USER_ID',
[
'required' => true,
]
),
];
}