Beispiel #1
0
 function __construct($ID)
 {
     parent::__construct("wannabeComment", "ID", $ID);
 }
Beispiel #2
0
 function __construct($ID)
 {
     parent::__construct("wannabeResponse", "ID", $ID);
 }
Beispiel #3
0
 public function __construct($id)
 {
     parent::__construct("kiosk_wares", "ID", $id);
 }
Beispiel #4
0
 function __construct($articleID = -1)
 {
     parent::__construct("news", "ID", $articleID);
 }
Beispiel #5
0
 function __construct($id)
 {
     $this->_tickets = null;
     parent::__construct("users", "ID", $id);
 }
Beispiel #6
0
 function __construct($id)
 {
     parent::__construct("ticketTypes", "ticketTypeID", $id);
 }
Beispiel #7
0
 /**
  * Create new group instance.
  */
 function __construct($id)
 {
     parent::__construct("groups", "ID", $id);
 }
Beispiel #8
0
 /**
  * Question constructor.
  * 
  * @param int $questionID
  */
 public function __construct($questionID)
 {
     parent::__construct("wannabeQuestions", "ID", $questionID);
     $this->_responses = null;
 }
Beispiel #9
0
 function __construct($id)
 {
     $this->_seat = -1;
     // Initial value, used to determine if there is a runtime cached seat object.
     parent::__construct("tickets", "ticketID", $id);
 }
Beispiel #10
0
 function __construct()
 {
     parent::__construct("wannabeCrewResponse", null, -1);
 }
Beispiel #11
0
 function __construct($id)
 {
     parent::__construct("seatReg_seatings", "seatID", $id);
 }