__construct() public method

public __construct ( $db, $user = null, $torrent = null, $subtitles = null, $requests = null, $forum = null, $mailbox = null, $comments = null, $log = null )
コード例 #1
0
 public function __construct($adb, $user, $reportid = "")
 {
     $this->db = $adb;
     $this->user = $user;
     $this->id = $reportid;
     parent::__construct($reportid);
 }
コード例 #2
0
ファイル: ClientList.php プロジェクト: igez/gaiaehr
 function __construct()
 {
     parent::__construct();
     $this->user = new \User();
     $this->patient = new \Patient();
     $this->encounter = new \Encounter();
     return;
 }
コード例 #3
0
 function __construct()
 {
     parent::__construct();
     $this->db = new dbHelper();
     $this->user = new User();
     $this->patient = new Patient();
     $this->encounter = new Encounter();
     return;
 }
コード例 #4
0
ファイル: Appointments.php プロジェクト: igez/gaiaehr
 function __construct()
 {
     parent::__construct();
     $this->db = new \MatchaHelper();
     $this->user = new \User();
     $this->patient = new \Patient();
     $this->encounter = new \Encounter();
     $this->facilities = new \Facilities();
     return;
 }