• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/bitrix24.php
  • Класс: CBitrixPHPAppTransport
  • Вызов: CBitrixPHPAppTransport::getCurrentUser
public function getCurrentUser($signatureKey = '')
{
	if($signatureKey !== '')
	{
		$this->setSignatureKey($signatureKey);
	}

	if($this->signatureKey)
	{
		return $this->callSigned('user.current');
	}
	else
	{
		return $this->call('user.current');
	}
}