• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/mailru2.php
  • Класс: CMailRu2Interface
  • Вызов: CMailRu2Interface::__construct
public function __construct($appID = false, $appSecret = false, $code = false)
{
	if ($appID === false)
	{
		$appID = trim(CSocServAuth::GetOption("mailru2_client_id"));
	}

	if ($appSecret === false)
	{
		$appSecret = trim(CSocServAuth::GetOption("mailru2_client_secret"));
	}

	parent::__construct($appID, $appSecret, $code);
}