Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 12166 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 12166 Rev 15086
Línea 212... Línea 212...
212
    private function getDescriptionSelectOptions($adapter, $company_id)
212
    private function getDescriptionSelectOptions($adapter, $company_id)
213
    {
213
    {
214
        $options = [];
214
        $options = [];
Línea 215... Línea 215...
215
        
215
        
216
        $mapper = JobDescriptionMapper::getInstance($adapter);
216
        $mapper = JobDescriptionMapper::getInstance($adapter);
Línea 217... Línea 217...
217
        $records = $mapper->fetchAllActivesByCompanyId($company_id);
217
        $records = $mapper->fetchAllActiveByCompanyId($company_id);
218
        
218
        
219
 
219
 
Línea 227... Línea 227...
227
    function getCategorySelectOptions($adapter)
227
    function getCategorySelectOptions($adapter)
228
    {
228
    {
229
        $options = [];
229
        $options = [];
Línea 230... Línea 230...
230
 
230
 
231
        $mapper = JobCategoryMapper::getInstance($adapter);
231
        $mapper = JobCategoryMapper::getInstance($adapter);
Línea 232... Línea 232...
232
        $records = $mapper->fetchAllActives();
232
        $records = $mapper->fetchAllActive();
233
 
233
 
234
        foreach($records as $record)
234
        foreach($records as $record)
235
        {
235
        {
Línea 241... Línea 241...
241
    function getIndustrySelectOptions($adapter)
241
    function getIndustrySelectOptions($adapter)
242
    {
242
    {
243
        $options = [];
243
        $options = [];
Línea 244... Línea 244...
244
 
244
 
245
        $mapper = IndustryMapper::getInstance($adapter);
245
        $mapper = IndustryMapper::getInstance($adapter);
Línea 246... Línea 246...
246
        $records = $mapper->fetchAllActives();
246
        $records = $mapper->fetchAllActive();
247
 
247
 
248
        foreach($records as $record)
248
        foreach($records as $record)
249
        {
249
        {