• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/internals/counter/event/event.php
  • Класс: Bitrix\Socialnetwork\Internals\Counter\Event\Event
  • Вызов: Event::getGroupId
public function getGroupId(): int
{
	$groupId = 0;

	switch ($this->type)
	{
		case EventDictionary::EVENT_WORKGROUP_DELETE:
		case EventDictionary::EVENT_WORKGROUP_USER_ADD:
		case EventDictionary::EVENT_WORKGROUP_USER_UPDATE:
		case EventDictionary::EVENT_WORKGROUP_USER_DELETE:
			$groupId = (int)$this->data['GROUP_ID'];
			break;
	}

	return $groupId;
}