| Conditions | 1 |
| Paths | 1 |
| Total Lines | 32 |
| Code Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 41 | public function init() |
||
| 42 | { |
||
| 43 | |||
| 44 | $this->setName('Workflow'); |
||
| 45 | |||
| 46 | $this->add( |
||
| 47 | array( |
||
| 48 | 'type' => 'checkbox', |
||
| 49 | 'name' => 'acceptApplicationByDepartmentManager', |
||
| 50 | 'label' => 'accept', |
||
| 51 | 'options' => [ |
||
| 52 | 'label' => /* @translate */ 'accept Applications by Department Managers', |
||
| 53 | 'long_label' => /* @translate */ 'if checked, department managers are informed about new applications first.', |
||
| 54 | 'description' => /* @translate */ 'Department managers are notified of incoming applications and must accept this. Only then the recruiter can start his work with the application' |
||
| 55 | ], |
||
| 56 | ) |
||
| 57 | ); |
||
| 58 | |||
| 59 | $this->add( |
||
| 60 | array( |
||
| 61 | 'type' => 'checkbox', |
||
| 62 | 'name' => 'assignDepartmentManagersToJobs', |
||
| 63 | 'label' => 'assign', |
||
| 64 | 'options' => [ |
||
| 65 | 'label' => /* @translate */ 'assign department managers to jobs', |
||
| 66 | 'long_label' => /* @translate */ 'if checked, department managers have to be assigned to job postings.', |
||
| 67 | 'description' => /* @translate */ 'if you have more them one department managers, you can assign them to a job posting. If nobody is assigned, all department managers will be informed about new applications', |
||
| 68 | ], |
||
| 69 | ) |
||
| 70 | ); |
||
| 71 | |||
| 72 | } |
||
| 73 | } |
||
| 74 |