1.สร้างตัวแปรใน common/models/Teacher.php เพื่อเก็บไฟล์ upload
public $teacher_image;
2.เพิ่ม code ใน rule(){ }
[['teacher_image'],'file','skipOnEmpty'=>true,'on'=>'update','extensions'=>'jpg,png,gif']
3.สร้างโฟลดเดอร์สำหรับเก็บภาพ upload ใน /report_grade/backend/web/uploads/teacher/
และตั้ง permission chmod 777 teacher ใน terminal
4.เพิ่ม code ใน /views/teacher/_form.php
ส่วนที่1
<? $form = ActiveForm::begin( [ 'options'=>['enctype'=>'multipart/form-data']] ); ?>
ส่วนที่2
<? if(!$model->isNewRecord){?> <?= Html::img('@web/uploads/teacher/'.$model->image_path ,['class'=>'img-responsive thumbnail','width'=>250]);?>
<?}?> <?= $form->field($model,'teacher_image')->fileInput()?>
5.ใน controller เพิ่ม code ใน action create และ update ดังนี้
Action 'Create'
use yii\web\UploadedFile; if($model->save()){ $file =UploadedFile::getInstance($model,'teacher_image'); if($file!=null){ if($file->size!=0){ $model->image_path =$model->id.'.'.$file->extension; $file->saveAs('uploads/teacher/'.$model->id.'.'.$file->extension); } } $model->save(); return $this->redirect(['view', 'id' => $model->id]); }
Action 'Update'
use yii\web\UploadedFile; $file =UploadedFile::getInstance($model,'teacher_image'); if($file!=null){ if($file->size!=0){ $model->image_path =$model->id.'.'.$file->extension; $file->saveAs('uploads/teacher/'.$model->id.'.'.$file->extension); } } $model->save(); return $this->redirect(['view', 'id' => $model->id]);
6.เพิ่ม code ใน views/teacher/view.php
<?= Html::img('@web/uploads/teacher/'.$model->image_path ,['class'=>'img-responsive thumbnail','width'=>250]); ?>
7.เพิ่ม code ใน views/teacher/index.php ใน gridviews
[ 'attribute'=>'teacher_image', 'format' =>'html', 'value'=>function($model){ return Html::img('@web/uploads/teacher/'.$model->image_path,['class'=>'thumbnail','width'=>150]); } ],