• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/publicaction/landing.php
  • Класс: Bitrix\Landing\PublicAction\Landing
  • Вызов: Landing::move
static function move(int $lid, ?int $toSiteId = null, ?int $toFolderId = null): PublicActionResult
{
	$result = new PublicActionResult();
	$landing = LandingCore::createInstance($lid);
	$result->setResult($landing->move($toSiteId ?: null, $toFolderId ?: null));
	$result->setError($landing->getError());
	return $result;
}