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

	if($appSecret === false)
	{
		$appSecret = trim(CSocServFacebook::GetOption("facebook_appsecret"));
	}

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