__construct() public method

public __construct ( array $data = null )
$data array Data to preload on object creation
コード例 #1
0
ファイル: todoLists.php プロジェクト: pgosselin82/todo
 /**
  * Run default constructor and define table name
  */
 function __construct()
 {
     parent::__construct();
     $this->table = 'list';
 }
コード例 #2
0
ファイル: semester.php プロジェクト: 7373Lacym/OrgWeb
 public function __construct($con = NULL)
 {
     parent::__construct(__CLASS__, $con);
 }
コード例 #3
0
ファイル: member.php プロジェクト: 7373Lacym/OrgWeb
 public function __construct()
 {
     parent::__construct(__CLASS__);
 }