- Модуль: seo
- Путь к файлу: ~/bitrix/modules/seo/lib/adv/autolog.php
- Класс: BitrixSeoAdvAutologTable
- Вызов: AutologTable::getMap
static function getMap()
{
return array(
'ID' => array(
'data_type' => 'integer',
'primary' => true,
'autocomplete' => true,
),
'ENGINE_ID' => array(
'data_type' => 'integer',
'required' => true,
),
'TIMESTAMP_X' => array(
'data_type' => 'datetime',
'required' => true,
),
'CAMPAIGN_ID' => array(
'data_type' => 'integer',
'required' => true,
),
'CAMPAIGN_XML_ID' => array(
'data_type' => 'string',
'required' => true,
),
'BANNER_ID' => array(
'data_type' => 'integer',
'required' => true,
'title' => Loc::getMessage('ADV_AUTOLOG_ENTITY_BANNER_ID_FIELD'),
),
'BANNER_XML_ID' => array(
'data_type' => 'string',
'required' => true,
),
'CAUSE_CODE' => array(
'data_type' => 'integer',
),
'SUCCESS' => array(
'data_type' => 'boolean',
'values' => array(static::FAILURE, static::SUCCESS),
),
);
}