コード例 #1
0
ファイル: Role.php プロジェクト: arjint2004/12516
 /**
  * 	Construct Class
  *
  * 	@param array $data An array with the data of a Role
  */
 public function __construct($data, $ipPerson)
 {
     parent::__construct($data);
     $this->_data['person_id'] = $person_id;
 }
コード例 #2
0
ファイル: Episode.php プロジェクト: arjint2004/12516
 /**
  * 	Construct Class
  *
  * 	@param array $data An array with the data of the Episode
  */
 public function __construct($data, $idTVShow)
 {
     parent::__construct($data);
     $this->_data['tvshow_id'] = $idTVShow;
 }