• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/counter.php
  • Класс: BitrixImCounter
  • Вызов: Counter::getNotifyCounter
static function getNotifyCounter($userId = null)
{
	$userId = Common::getUserId($userId);
	if ($userId <= 0)
	{
		return false;
	}

	$counters = self::get($userId);

	return intval($counters['TYPE']['NOTIFY']);
}