| Línea 161... |
Línea 161... |
| 161 |
} else {
|
161 |
} else {
|
| Línea 162... |
Línea 162... |
| 162 |
|
162 |
|
| Línea 163... |
Línea 163... |
| 163 |
$form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
|
163 |
$form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
|
| 164 |
|
- |
|
| 165 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
164 |
|
| 166 |
$jobsDescription = $jobDescriptionMapper->fetchAllByCompanyId($currentCompany->id);
|
- |
|
| 167 |
$industryMapper = industryMapper::getInstance($this->adapter);
|
165 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
| 168 |
$industry = $industryMapper->fetchAllActives();
|
- |
|
| Línea 169... |
Línea 166... |
| 169 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
166 |
$industryMapper = industryMapper::getInstance($this->adapter);
|
| 170 |
$jobCategory = $jobCategoryMapper->fetchAllActives();
|
167 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter); $jobCategory = $jobCategoryMapper->fetchAllActives();
|
| 171 |
|
168 |
|
| 172 |
$this->layout()->setTemplate('layout/layout-backend');
|
169 |
$this->layout()->setTemplate('layout/layout-backend');
|
| 173 |
$viewModel = new ViewModel();
|
170 |
$viewModel = new ViewModel();
|
| 174 |
$viewModel->setTemplate('leaders-linked/recruitment-and-selection-vacancies/index.phtml');
|
- |
|
| 175 |
$viewModel->setVariable('form', $form);
|
- |
|
| 176 |
$viewModel->setVariable('google_map_key', $google_map_key);
|
- |
|
| - |
|
171 |
$viewModel->setTemplate('leaders-linked/recruitment-and-selection-vacancies/index.phtml');
|
| Línea 177... |
Línea 172... |
| 177 |
$viewModel->setVariable('jobsDescription', $jobsDescription);
|
172 |
$viewModel->setVariable('form', $form);
|
| 178 |
$viewModel->setVariable('industry', $industry);
|
173 |
$viewModel->setVariable('google_map_key', $google_map_key);
|
| 179 |
$viewModel->setVariable('jobCategory', $jobCategory);
|
174 |
|
| 180 |
|
175 |
|