Exemplo n.º 1
0
 /**
  * @see UserProfile::__construct()
  */
 public function __construct($userID = null, $row = null, $username = null, $email = null)
 {
     $this->sqlSelects .= 'wbb_user.*,';
     $this->sqlJoins .= ' LEFT JOIN wbb' . WBB_N . '_user wbb_user ON (wbb_user.userID = user.userID) ';
     parent::__construct($userID, $row, $username, $email);
 }
Exemplo n.º 2
0
 function __construct()
 {
     parent::__construct($_SESSION['uid']);
 }