• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/landing.php
  • Класс: BitrixLandingLanding
  • Вызов: Landing::touch
public function touch()
{
	static $touched = [];

	if (isset($touched[$this->id]))
	{
		return;
	}

	$touched[$this->id] = true;

	if (self::update($this->id, ['PUBLIC' => 'N'])->isSuccess())
	{
		Site::touch($this->siteId);
	}
}