History::clear

  1. Bitrix24 API (v. 23.675.0)
  2. landing
  3. History
  4. clear
  • Модуль: 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;
}

Добавить комментарий