1 | <?php |
||
19 | class PoweredBy extends Widget |
||
20 | { |
||
21 | /** |
||
22 | * @var string|array url to empowerer |
||
23 | */ |
||
24 | public $url; |
||
25 | |||
26 | /** |
||
27 | * @var string name to display |
||
28 | */ |
||
29 | public $name; |
||
30 | |||
31 | /** |
||
32 | * @var string version to display if given |
||
33 | */ |
||
34 | public $version; |
||
35 | |||
36 | /** |
||
37 | * @var array html options |
||
38 | */ |
||
39 | public $options = []; |
||
40 | |||
41 | public function run() |
||
50 | } |
||
51 |