• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/tracking/internals/siteb24.php
  • Класс: Bitrix\Crm\Tracking\Internals\SiteB24Table
  • Вызов: SiteB24Table::deleteByShopField
static function deleteByShopField(string $value)
{
	$helper = Application::getConnection()->getSqlHelper();
	$tableName = $helper->forSql(static::getTableName());
	$value = $helper->forSql($value);
	$sql = "delete from {$tableName} where IS_SHOP = '$value'";
	Application::getConnection()->query($sql);
}