| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | protected function getContents(VirtualPage $vp) |
||
| 34 | { |
||
| 35 | $vp->add([ |
||
| 36 | new LaunchButton([ |
||
| 37 | 'label' => 'Test Button 1', |
||
| 38 | 'icon' => 'user' |
||
| 39 | ]) |
||
| 40 | ])->link(URL::to('/')); |
||
| 41 | $vp->add([ |
||
| 42 | new LaunchButton([ |
||
| 43 | 'label' => 'Test Button 2', |
||
| 44 | 'icon' => 'car' |
||
| 45 | ]) |
||
| 46 | ]); |
||
| 47 | $vp->add([ |
||
| 48 | new LaunchButton([ |
||
| 49 | 'label' => 'Test Button 3', |
||
| 50 | 'icon' => 'bus' |
||
| 51 | ]) |
||
| 55 |