• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/internals/binding.php
  • Класс: BitrixLandingInternalsBindingTable
  • Вызов: BindingTable::entityClear
static function entityClear($entityId, $entityType)
{
	$res = self::getList([
		'select' => [
			'ID'
		],
		'filter' => [
			'=ENTITY_TYPE' => $entityType,
			'ENTITY_ID' => $entityId
		]
	]);
	while ($row = $res->fetch())
	{
		self::delete($row['ID'])->isSuccess();
	}
}