• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/urlrewrite.php
  • Класс: BitrixLandingUrlRewrite
  • Вызов: UrlRewrite::removeForLanding
static function removeForLanding($landingId)
{
	$res = UrlRewriteTable::getList([
		'select' => [
			'ID'
		],
		'filter' => [
			'LANDING_ID' => $landingId
		]
	]);
	while ($row = $res->fetch())
	{
		UrlRewriteTable::delete($row['ID']);
	}
}