Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function afterUpload() |
||
12 | { |
||
13 | $path = $this->getUploadPath($this->attribute); |
||
14 | if (file_exists($path)) { |
||
15 | $model = $this->owner; |
||
16 | /* @var $model \zacksleo\yii2\romrelease\models\RomRelease */ |
||
17 | $model->md5 = md5_file($path); |
||
18 | $model->setScenario('save'); |
||
19 | $model->save(); |
||
20 | } |
||
21 | } |
||
22 | |||
44 |