• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/internals/model/counter.php
  • Класс: Bitrix\Sender\Internals\Model\CounterTable
  • Вызов: CounterTable::incrementByCode
static function incrementByCode($code, $increment = 1)
{
	$date = new DateTime();
	$insert = ['CODE' => $code, 'VALUE' => $increment, 'DATE_UPDATE' => $date];
	$update = [
		'VALUE' => new DB\SqlExpression("?# + ?i", 'VALUE', $increment),
		'DATE_UPDATE' => $date
	];

	static::mergeData($insert, $update);
}