• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/placement.php
  • Класс: BitrixLandingPlacement
  • Вызов: Placement::deleteByAppId
static function deleteByAppId($id)
{
	$res = self::getList(array(
		'select' => array(
			'ID'
		),
		'filter' => array(
			'=APP_ID' => $id
		)
 		));
	while ($row = $res->fetch())
	{
		self::delete($row['ID']);
	}
}