Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 7539 Rev 15086
Línea 286... Línea 286...
286
    private function getDescriptionSelectOptions($adapter, $company_id)
286
    private function getDescriptionSelectOptions($adapter, $company_id)
287
    {
287
    {
288
        $options = [];
288
        $options = [];
Línea 289... Línea 289...
289
        
289
        
290
        $mapper = JobDescriptionMapper::getInstance($adapter);
290
        $mapper = JobDescriptionMapper::getInstance($adapter);
Línea 291... Línea 291...
291
        $records = $mapper->fetchAllActivesByCompanyId($company_id);
291
        $records = $mapper->fetchAllActiveByCompanyId($company_id);
292
    
292
    
Línea 304... Línea 304...
304
    function getSkillSelectOptions($adapter)
304
    function getSkillSelectOptions($adapter)
305
    {
305
    {
306
        $options = [];
306
        $options = [];
Línea 307... Línea 307...
307
 
307
 
308
        $mapper = SkillMapper::getInstance($adapter);
308
        $mapper = SkillMapper::getInstance($adapter);
Línea 309... Línea 309...
309
        $records = $mapper->fetchAllActives();
309
        $records = $mapper->fetchAllActive();
310
 
310
 
311
        foreach($records as $record)
311
        foreach($records as $record)
312
        {
312
        {
Línea 318... Línea 318...
318
    function getIndustrySelectOptions($adapter)
318
    function getIndustrySelectOptions($adapter)
319
    {
319
    {
320
        $options = [];
320
        $options = [];
Línea 321... Línea 321...
321
 
321
 
322
        $mapper = IndustryMapper::getInstance($adapter);
322
        $mapper = IndustryMapper::getInstance($adapter);
Línea 323... Línea 323...
323
        $records = $mapper->fetchAllActives();
323
        $records = $mapper->fetchAllActive();
324
 
324
 
325
        foreach($records as $record)
325
        foreach($records as $record)
326
        {
326
        {