• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/dispatcher/publicaction/ui/counters.php
  • Класс: BitrixTasksDispatcherPublicActionUiCounters
  • Вызов: Counters::get
public function get($userId, $groupId = 0, $type = 'view_all')
{
	$result = new Result();

	$type = ($type ?: 'view_all');
	$counterInstance = InternalsCounter::getInstance((int) $userId);
	$result->setData($counterInstance->getCounters($type, (int) $groupId));

	return $result;
}