Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function init() |
||
41 | { |
||
42 | if ($this->model == null) { |
||
43 | throw new InvalidConfigException("The search model should not be empty."); |
||
44 | } |
||
45 | if ($this->formConfig == null) { |
||
46 | $this->formConfig = [ |
||
47 | 'id' => !empty($this->formId) ? $this->formId : 'organization-search-form', |
||
48 | 'action' => ['index'], |
||
49 | 'method' => 'post', |
||
50 | ]; |
||
51 | } |
||
52 | } |
||
53 | |||
66 |