コード例 #1
0
ファイル: News.php プロジェクト: dmstr/yii2-news-module
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getImageGalleries()
 {
     return $this->hasMany(\dmstr\modules\news\models\ImageGallery::className(), ['news_id' => 'id']);
 }
コード例 #2
0
ファイル: Image.php プロジェクト: dmstr/yii2-news-module
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPhotoGallery()
 {
     return $this->hasOne(\dmstr\modules\news\models\ImageGallery::className(), ['id' => 'photo_gallery_id']);
 }