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

	switch ($this->type)
	{
		case EventDictionary::EVENT_WORKGROUP_USER_ADD:
		case EventDictionary::EVENT_WORKGROUP_USER_UPDATE:
		case EventDictionary::EVENT_WORKGROUP_USER_DELETE:
		$initiatedByType = $this->data['INITIATED_BY_TYPE'];
			break;
	}

	return $initiatedByType;
}