1 | <?php |
||
19 | class InputWidget extends \yii\widgets\InputWidget |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | public $loadUrl; |
||
25 | |||
26 | /** |
||
27 | * @var string the parameter name |
||
28 | */ |
||
29 | public $queryParam = 'query'; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | public $clientOptions; |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | 6 | public function run() |
|
43 | |||
44 | /** |
||
45 | * Registers the needed JavaScript. |
||
46 | */ |
||
47 | 6 | public function registerClientScript() |
|
61 | } |
||
62 |