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