Пример #1
0
   public function __construct($url=NULL,$outputType=NULL)
        {
	            if($outputType == NULL) $this->output_type = 'xml';
	            else $this->output_type='json';
	         
                parent::new_request(($url?$url:self::$api_url));
	}
Пример #2
0
        public function __construct($url=NULL)
        {
                $this->output_type = 'xml';
                parent::new_request(($url?$url:self::$api_url));
	}
Пример #3
0
 public function __construct($url = null)
 {
     $this->output_type = 'xml';
     parent::new_request($url ? $url : self::$api_url);
     //	self::discover_api();
 }
Пример #4
0
	public function __construct($url=NULL)
	{
		parent::new_request(($url?$url:self::$api_url));
	}