Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 7292 Rev 15086
Línea 198... Línea 198...
198
    private function getDescriptionSelectOptions($adapter, $company_id)
198
    private function getDescriptionSelectOptions($adapter, $company_id)
199
    {
199
    {
200
        $options = [];
200
        $options = [];
Línea 201... Línea 201...
201
        
201
        
202
        $mapper = JobDescriptionMapper::getInstance($adapter);
202
        $mapper = JobDescriptionMapper::getInstance($adapter);
Línea 203... Línea 203...
203
        $records = $mapper->fetchAllActivesByCompanyId($company_id);
203
        $records = $mapper->fetchAllActiveByCompanyId($company_id);
204
    
204
    
Línea 216... Línea 216...
216
    function getSkillSelectOptions($adapter)
216
    function getSkillSelectOptions($adapter)
217
    {
217
    {
218
        $options = [];
218
        $options = [];
Línea 219... Línea 219...
219
 
219
 
220
        $mapper = SkillMapper::getInstance($adapter);
220
        $mapper = SkillMapper::getInstance($adapter);
Línea 221... Línea 221...
221
        $records = $mapper->fetchAllActives();
221
        $records = $mapper->fetchAllActive();
222
 
222
 
223
        foreach($records as $record)
223
        foreach($records as $record)
224
        {
224
        {
Línea 230... Línea 230...
230
    function getIndustrySelectOptions($adapter)
230
    function getIndustrySelectOptions($adapter)
231
    {
231
    {
232
        $options = [];
232
        $options = [];
Línea 233... Línea 233...
233
 
233
 
234
        $mapper = IndustryMapper::getInstance($adapter);
234
        $mapper = IndustryMapper::getInstance($adapter);
Línea 235... Línea 235...
235
        $records = $mapper->fetchAllActives();
235
        $records = $mapper->fetchAllActive();
236
 
236
 
237
        foreach($records as $record)
237
        foreach($records as $record)
238
        {
238
        {