• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/publicaction/landing.php
  • Класс: Bitrix\Landing\PublicAction\Landing
  • Вызов: Landing::delete
static function delete($lid)
{
	$result = new PublicActionResult();
	$error = new \Bitrix\Landing\Error;

	$res = LandingCore::delete($lid);

	if ($res->isSuccess())
	{
		$result->setResult(true);
	}
	else
	{
		$error->addFromResult($res);
		$result->setError($error);
	}

	return $result;
}