• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/im/notification/usecase/taskexpiressoon.php
  • Класс: BitrixTasksIntegrationIMNotificationUseCaseTaskExpiresSoon
  • Вызов: TaskExpiresSoon::expiresSoonForAccomplice
private function expiresSoonForAccomplice(Message $message, TaskObject $task): Notification
{
	$messageKey = ($message->getRecepient()->getId() === $task->getCreatedBy())
		? 'TASKS_TASK_EXPIRED_SOON_RESPONSIBLE_SAME_CREATOR_MESSAGE'
		: 'TASKS_TASK_EXPIRED_SOON_RESPONSIBLE_MESSAGE'
	;

	return $this->createNotification($messageKey, $message, $task);
}