• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/measureratio.php
  • Класс: BitrixCatalogMeasureRatioTable
  • Вызов: MeasureRatioTable::deleteByProduct
static function deleteByProduct($id)
{
	$id = (int)$id;
	if ($id <= 0)
		return;

	$conn = MainApplication::getConnection();
	$helper = $conn->getSqlHelper();
	$conn->queryExecute(
		'delete from '.$helper->quote(self::getTableName()).' where '.$helper->quote('PRODUCT_ID').' = '.$id
	);
	unset($helper, $conn);
}