Пример #1
0
		function __construct($accountid, $curl = null)
		{
			parent::__construct($curl);
			
			$ProfileURL = sprintf(self::PROFILE_URL_TEMPLATE, $accountid);

			$this->Fetch($ProfileURL);
			$this->AccountID = $accountid;
		}
Пример #2
0
 /**
  * RPC Client Constructor
  * 
  * @param string hostname
  * @param string xml rpc username (optional)
  * @param string xml rpc password (optional)
  */
 function __construct($host, $user = "", $pass = "")
 {
     parent::__construct();
     $host = str_replace("http://", "", $host);
     if ($user) {
         $host = "{$user}:{$pass}@{$host}";
     }
     $this->Host = "http://{$host}";
 }
Пример #3
0
 /**
  * Constructor.
  *
  * @author Andreas Gohr <*****@*****.**>
  */
 function __construct()
 {
     global $conf;
     // call parent constructor
     parent::__construct();
     // set some values from the config
     $this->proxy_host = $conf['proxy']['host'];
     $this->proxy_port = $conf['proxy']['port'];
     $this->proxy_user = $conf['proxy']['user'];
     $this->proxy_pass = $conf['proxy']['pass'];
     $this->proxy_ssl = $conf['proxy']['ssl'];
 }
		/**
		 * Constructor
		 * 
		 * @var int account ID
		 * @var resource CURL handler
		 */
		function __construct($accountid, $curl = null)
		{
			parent::__construct($curl);
			
			$ProfileURL = sprintf(self::PROFILE_URL_TEMPLATE, $accountid);
			
			$this->SetHeaders(array('Accept-Language: en-us,en;q=0.5'));
			
			$this->SetTimeouts(60, 30);
			$this->Fetch($ProfileURL);
			$this->AccountID = $accountid;
		}
Пример #5
0
 /**
  * Constructor.
  *
  * @author Andreas Gohr <*****@*****.**>
  */
 function __construct()
 {
     global $conf;
     // call parent constructor
     parent::__construct();
     // set some values from the config
     $this->proxy_host = $conf['proxy']['host'];
     $this->proxy_port = $conf['proxy']['port'];
     $this->proxy_user = $conf['proxy']['user'];
     $this->proxy_pass = conf_decodeString($conf['proxy']['pass']);
     $this->proxy_ssl = $conf['proxy']['ssl'];
     $this->proxy_except = $conf['proxy']['except'];
     // allow enabling debugging via URL parameter (if debugging allowed)
     if ($conf['allowdebug']) {
         if (isset($_REQUEST['httpdebug']) || isset($_SERVER['HTTP_REFERER']) && strpos($_SERVER['HTTP_REFERER'], 'httpdebug') !== false) {
             $this->debug = true;
         }
     }
 }
Пример #6
0
		/**
		 * Constructor
		 */
		function __construct()
		{
			parent::__construct();
		}
 /**
  * @param string $username API username allowed to post notification for this Manialink
  * @param string $password API password
  * @param string $manialink Short Manialink code
  */
 function __construct($username, $password, $manialink)
 {
     parent::__construct($username, $password);
     $this->manialink = $manialink;
 }
Пример #8
0
 /**
  * Sets shorter timeout
  */
 function __construct()
 {
     parent::__construct();
     $this->timeout = 8;
     // slightly faster timeouts
 }
Пример #9
0
	/**
	 * Create the client.
	 * @param string $session_key if you haven't gotten a session key yet, leave
	 * this as null and then set it later by just directly accessing the
	 * $session_key member variable.
	 * @param bool   $desktop     set to true if you are a desktop client
	 */
	public function __construct($url, $api_key, $secret, $session_key = null, $desktop = false, $throw_errors = true) 
	{
	    parent::__construct();
	    
	    $this->URL 		= $url;
	    $this->Secret 	= $secret;
	    $this->SessionKey = $session_key;
	    $this->API_Key 	= $api_key;
	    $this->IsDesktop 	= $desktop;
	    $this->ThrowErrors = $throw_errors;
	    $this->IsLastCallSuccess = true;
	    $this->LastError = array();
	
		$this->ProfileFields = array("about_me", "affiliations", "birthday", "books",
		    "clubs", "current_location", "first_name", "gender", "hometown_location",
		    "hs_info", "interests", "last_name", "meeting_for", "meeting_sex", "pic",
		    "movies", "music", "name", "notes_count", "political", "profile_update_time",
		    "quote", "relationship_status", "religion", "school_info", "work_history", 
			"significant_other_id", "status", "timezone", "tv", "wall_count"	    
		);
		    
	    if ($this->DebugMode) 
	    {
			$this->CurID = 0;
			echo "
				<script type=\"text/javascript\">
				var types = ['params', 'xml', 'php', 'sxml'];
				function toggleDisplay(id, type) {
				  for each (var t in types) {
				    if (t != type || document.getElementById(t + id).style.display == 'block') {
				      document.getElementById(t + id).style.display = 'none';
				    } else {
				      document.getElementById(t + id).style.display = 'block';
				    }
				  }
				  return false;
				}
				</script>
			";
	    }
	}
Пример #10
0
		/**
		 * Constructor
		 * 
		 * @var int account ID
		 * @var resource CURL handler
		 */
		function __construct($accountid, $curl = null)
		{
			parent::__construct($curl);
			$this->AccountID = $accountid;
		}