• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/access/model/templatemodel.php
  • Класс: BitrixTasksAccessModelTemplateModel
  • Вызов: TemplateModel::getGroupId
public function getGroupId(): int
{
	if (is_null($this->groupId))
	{
		$template = $this->loadTemplate();
		$this->groupId = $template ? (int)$template['GROUP_ID'] : 0;
	}
	return $this->groupId;
}