public function __construct($inputId = "", $inputMSRP = "", $inputName = "", $inputDomain = "", $inputManufacturer = "", $inputPurchasePrice = "", $inputOwnedItemId = "", $inputDesc = "")
 {
     parent::__construct($inputId, $inputMSRP, $inputName, $inputDomain, $inputManufacturer);
     $this->purchase_price = $inputPurchasePrice;
     $this->owned_item_id = $inputOwnedItemId;
     $this->description = $inputDesc;
 }
Exemple #2
0
 function init($id, $name = "", $username = "", $password = "", $level = "", $dateRegistered = "", $email = "")
 {
     parent::init($id, $name, $dateRegistered);
     $this->_username = $username;
     $this->_password = $password;
     $this->_privLevel = $level;
     $this->_dateRegistered = $dateRegistered;
     $this->_userEmail = $email;
 }
Exemple #3
0
 function __construct($id)
 {
     parent::__construct($id);
 }