Пример #1
0
 function getImageMain($imageId)
 {
     $imageName = Items::findOne($imageId);
     return $imageName->main_image ? '/upload/items_images_main/' . $imageName->main_image : '/image/default.jpg';
 }
Пример #2
0
 /**
  * Finds the Items model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Items the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Items::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }