1 | <?php |
||
20 | class ResultListWidget extends Widget |
||
21 | { |
||
22 | /** |
||
23 | * @var AbstractResultWidget[] |
||
24 | */ |
||
25 | public $items = []; |
||
26 | |||
27 | /** |
||
28 | * Hit view path hint |
||
29 | * @var string |
||
30 | */ |
||
31 | public $resultViewPath = null; |
||
32 | |||
33 | /** |
||
34 | * Custom view params |
||
35 | * @var array |
||
36 | */ |
||
37 | public $params = []; |
||
38 | |||
39 | /** |
||
40 | * Applies template hint to hit and renders it |
||
41 | * @return null|string |
||
42 | */ |
||
43 | public function run() |
||
52 | |||
53 | } |
||
54 |