function __construct($characterID)
 {
     parent::__construct(NULL, NULL, $characterID);
     $this->scope = "eve";
     $this->page = "CharacterInfo.xml.aspx";
     $this->fetch();
 }
 function __construct($id)
 {
     parent::__construct(NULL, NULL);
     $this->scope = "eve";
     $this->page = "CharacterName.xml.aspx";
     $this->args = array("ids" => $id);
     $this->fetch();
 }
 function __construct($names)
 {
     parent::__construct(NULL, NULL);
     $this->scope = "eve";
     $this->page = "CharacterID.xml.aspx";
     $this->args = array('names' => $names);
     $this->fetch();
 }
 function __construct($keyID, $vCode, $characterID)
 {
     parent::__construct($keyID, $vCode, $characterID);
     $this->scope = "char";
     $this->page = "WalletJournal.xml.aspx";
     $this->expires = null;
     $this->transactions = array();
     $this->fetch();
 }
示例#5
0
 function __construct($keyID, $vCode, $characterID = null)
 {
     parent::__construct($keyID, $vCode);
     $this->scope = "account";
     $this->page = "APIKeyInfo.xml.aspx";
     $this->char = array();
     $this->kam = null;
     $this->expires = null;
 }