コード例 #1
0
ファイル: text.php プロジェクト: Atomox/benhelmerphotography
 /**
  * Constructor: calls parent constructor
  */
 function __construct($id = NULL)
 {
     parent::__construct($id);
 }
コード例 #2
0
 /**
  * Constructor: calls parent constructor
  */
 function __construct($id = NULL)
 {
     $db_config = Shutter::get_db_configuration();
     $this->has_many = array('text' => array('other_field' => 'featured_image'), 'album', 'tag', 'category', 'covers' => array('class' => 'album', 'join_table' => $db_config['prefix'] . 'join_albums_covers', 'other_field' => 'cover', 'join_self_as' => 'cover', 'join_other_as' => 'album'));
     parent::__construct($id);
 }