Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 1555 | Rev 1558 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

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