1 | <?php |
||
25 | class AdBanner extends Widget |
||
26 | { |
||
27 | /** |
||
28 | * @var array |
||
29 | */ |
||
30 | public $items = []; |
||
31 | |||
32 | /** |
||
33 | * @var array |
||
34 | */ |
||
35 | public $imgOptions = []; |
||
36 | |||
37 | /** |
||
38 | * @var array |
||
39 | */ |
||
40 | public $linkOptions = [ |
||
41 | 'target' => '_blank', |
||
42 | 'rel' => 'noopener noreferrer', |
||
43 | ]; |
||
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | public function run(): string |
||
57 | |||
58 | /** |
||
59 | * @return array |
||
60 | */ |
||
61 | protected function getItems(): array |
||
69 | } |
||
70 |