Conditions | 4 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
29 | public function run(): ?string |
||
30 | { |
||
31 | if (empty($this->model) || !in_array($this->model->type, [FileType::IMAGE, FileType::VIDEO])) |
||
32 | return null; |
||
33 | |||
34 | if (is_array($this->width)) |
||
35 | $this->view = 'mediaPictureWidget'; |
||
36 | |||
37 | return $this->render($this->view, [ |
||
38 | 'model' => $this->model, |
||
39 | 'width' => $this->width, |
||
40 | 'alt' => $this->alt, |
||
41 | 'classPicture' => $this->classPicture, |
||
42 | 'classImg' => $this->classImg, |
||
43 | ]); |
||
46 |