• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/internals/queue.php
  • Класс: Bitrix\Sender\Internals\Queue
  • Вызов: Queue::restore
public function restore()
{
	$row = QueueTable::getRow([
		'select' => ['LAST_ITEM'],
		'filter' => ['=ENTITY_TYPE' => $this->type, '=ENTITY_ID' => $this->id]
	]);
	$this->setLastItem($row ? $row['LAST_ITEM'] : null);

	return $this;
}