| Conditions | 1 |
| Paths | 1 |
| Total Lines | 32 |
| Code Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 29 | public function init() |
||
| 30 | { |
||
| 31 | parent::init(); |
||
| 32 | |||
| 33 | |||
| 34 | $this->add( |
||
| 35 | array( |
||
| 36 | 'type' => 'Jobs/StatusSelect', |
||
| 37 | 'options' => [ |
||
| 38 | 'include_all_option' => true, |
||
| 39 | ], |
||
| 40 | 'attributes' => array( |
||
| 41 | 'value' => 'all', |
||
| 42 | ) |
||
| 43 | ) |
||
| 44 | ); |
||
| 45 | |||
| 46 | $this->add( |
||
| 47 | array( |
||
| 48 | 'type' => 'Jobs/ActiveOrganizationSelect', |
||
| 49 | 'property' => true, |
||
| 50 | 'name' => 'companyId', |
||
| 51 | 'options' => array( |
||
| 52 | 'label' => /*@translate*/ 'Companyname', |
||
| 53 | ), |
||
| 54 | 'attributes' => array( |
||
| 55 | 'data-placeholder' => /*@translate*/ 'Select hiring organization', |
||
| 56 | 'class' => 'form-control', |
||
| 57 | ), |
||
| 58 | ) |
||
| 59 | ); |
||
| 60 | } |
||
| 61 | } |
||
| 62 |