Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function thumb($path, array $options = [], string $thumb = 'default'): string |
||
26 | { |
||
27 | if ($thumb !== 'default') { |
||
28 | $path = preg_replace('/default/', $thumb, $path); |
||
29 | } |
||
30 | |||
31 | if (!is_array($options)) { |
||
|
|||
32 | $options = []; |
||
33 | } |
||
34 | |||
35 | return $this->Html->image($path, $options); |
||
36 | } |
||
38 |