• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/counter/group.php
  • Класс: BitrixTasksInternalsCounterGroup
  • Вызов: Group::getInstance
static function getInstance($groupId): self
{
	if (!array_key_exists($groupId, self::$instances))
	{
		self::$instances[$groupId] = new self($groupId);
	}

	return self::$instances[$groupId];
}