• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/update/entity/lastactivityfields.php
  • Класс: Bitrix\Crm\Update\Entity\LastActivityFields
  • Вызов: LastActivityFields::bindForType
static function bindForType(int $entityTypeId): void
{
	Option::set(
		'crm',
		'enable_last_activity_for_' . mb_strtolower(\CCrmOwnerType::ResolveName($entityTypeId)),
		'N'
	);

	$currentTypes = self::getTypesToProcess();
	if (!in_array($entityTypeId, $currentTypes, true))
	{
		$currentTypes[] = $entityTypeId;
		Option::set('crm', self::OPTION_PREFIX . 'types', serialize($currentTypes));
	}

	self::addAgent();
}