• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/service/groupqueueservice.php
  • Класс: Bitrix\Sender\Service\GroupQueueService
  • Вызов: GroupQueueService::releaseGroup
public function releaseGroup(int $type, int $entityId, int $groupId)
{
	$current = $this->getCurrentRow($type, $entityId, $groupId)[0];
	if (!isset($current['ID']))
	{
		return;
	}
	
	GroupQueueTable::delete($current['ID']);
	
	$this->isReleased($groupId);
}