1 | <?php |
||
23 | class UserProfileSearchWidget extends Widget |
||
24 | { |
||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | public $formId = 'user-profile-search-form'; |
||
29 | /** |
||
30 | * @var null|array |
||
31 | */ |
||
32 | public $formConfig = null; |
||
33 | /** |
||
34 | * @var UserSearch |
||
35 | */ |
||
36 | public $model; |
||
37 | /** |
||
38 | * @var string The filename of view which displays all the search fields. |
||
39 | */ |
||
40 | public $fieldsView = 'user-profile-search-fields'; |
||
41 | |||
42 | /** |
||
43 | * @throws InvalidConfigException |
||
44 | */ |
||
45 | public function init() |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | public function run() |
||
75 | } |
||
76 |