コード例 #1
0
 protected function findModel($id)
 {
     if (($model = Thumbnail::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
コード例 #2
0
ファイル: Product.php プロジェクト: phucnv206/thoitrang
 public function getThumbnails()
 {
     return $this->hasMany(Thumbnail::className(), ['product_id' => 'id'])->limit(3);
 }