- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/volume/contact.php
- Класс: Bitrix\Crm\Volume\Contact
- Вызов: Contact::getActionList
public function getActionList($componentCommandAlias)
{
$queueList = $this->prepareRangeActionList(
Crm\ContactTable::class,
'DATE_CREATE',
array(
'MEASURE_ENTITY' => $componentCommandAlias['MEASURE_ENTITY'],
'MEASURE_FILE' => $componentCommandAlias['MEASURE_FILE'],
)
);
$queueList = array_merge(
$queueList,
$this->prepareRangeActionList(
Crm\ActivityTable::class,
'CREATED',
array(
'MEASURE_ACTIVITY' => $componentCommandAlias['MEASURE_ACTIVITY'],
)
)
);
$queueList = array_merge(
$queueList,
$this->prepareRangeActionList(
Crm\EventTable::class,
'DATE_CREATE',
array(
'MEASURE_EVENT' => $componentCommandAlias['MEASURE_EVENT'],
)
)
);
return $queueList;
}