1 | <?php |
||
18 | class OrganizationLink extends Widget |
||
19 | { |
||
20 | /** |
||
21 | * @var string|array url to organization. |
||
22 | */ |
||
23 | public $url; |
||
24 | |||
25 | /** |
||
26 | * @var string name to display. |
||
27 | */ |
||
28 | public $name; |
||
29 | |||
30 | /** |
||
31 | * @var array html options. |
||
32 | */ |
||
33 | public $options = []; |
||
34 | |||
35 | public function run() |
||
43 | } |
||
44 |