• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entityaddress.php
  • Класс: Bitrix\Crm\EntityAddress
  • Вызов: EntityAddress::deleteLocationAddress
static function deleteLocationAddress($locationAddressId)
{
	if (static::isLocationModuleIncluded() && $locationAddressId > 0)
	{
		// TODO: ... [LOC_ADDR_DELETE_1] - Need delete by ID
		$addr = Address::load((int)$locationAddressId);
		if ($addr instanceof Address)
		{
			$addr->delete();
		}
	}
}