• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Model/FieldMultiPhoneCountryTable.php
  • Класс: Bitrix\Crm\Model\FieldMultiPhoneCountryTable
  • Вызов: FieldMultiPhoneCountryTable::deleteByByMultiFieldId
static function deleteByByMultiFieldId(int $fmId): void
{
	$connection = Application::getConnection();
	$helper = $connection->getSqlHelper();

	$connection->query(
		sprintf(
			'DELETE FROM %s WHERE FM_ID = %d',
			$helper->quote(static::getTableName()),
			$helper->convertToDbInteger($fmId)
		)
	);
	self::cleanCache();
}