• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/history.php
  • Класс: BitrixLandingHistory
  • Вызов: History::clear
public function clear(): bool
{
	$count = $this->getStackCount();
	for ($i = 0; $i < $count; $i++)
	{
		if (!$this->deleteStep(1))
		{
			return false;
		}
	}

	$this->stack = [];

	return true;
}