• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/posting/builder.php
  • Класс: BitrixSenderPostingBuilder
  • Вызов: Builder::incGroupCounters
protected function incGroupCounters($groupId = null, $count = 0)
{
	if (!$groupId)
	{
		return;
	}

	if (array_key_exists($groupId, $this->groupCount))
	{
		$this->groupCount[$groupId] += $count;
	}
	else
	{
		$this->groupCount[$groupId] = $count;
	}

}