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

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

	$touched[$id] = true;

	self::update($id, [
		'TOUCH' => 'Y'
	]);
}