• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Factory.php
  • Класс: Bitrix\Crm\Service\Factory
  • Вызов: Factory::isLastActivityEnabled
public function isLastActivityEnabled(): bool
{
	if (!$this->isLastActivitySupported())
	{
		return false;
	}

	$isEnabled = Option::get('crm', 'enable_last_activity_for_' . mb_strtolower($this->getEntityName()), 'Y');

	return ($isEnabled === 'Y');
}