Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2797 Rev 2798
Línea 885... Línea 885...
885
                    $select->where->like('title', '%' . $search . '%');
885
                    $select->where->like('title', '%' . $search . '%');
886
                }
886
                }
Línea 887... Línea 887...
887
                
887
                
Línea 888... Línea 888...
888
                $select->order('last_date_of_application DESC');
888
                $select->order('last_date_of_application DESC');
Línea 889... Línea 889...
889
 
889
 
890
                $selectString = $queryMapper->getSql()->buildSqlString($select);
890
                // $selectString = $queryMapper->getSql()->buildSqlString($select);
891
 
891
 
Línea 904... Línea 904...
904
                    $item = [
904
                    $item = [
905
                        'id' => $record['uuid'],
905
                        'id' => $record['uuid'],
906
                        'title' => $record['title'],
906
                        'title' => $record['title'],
907
                        'employment_type' => $employment_types[$record['employment_type']],
907
                        'employment_type' => $employment_types[$record['employment_type']],
908
                        'last_date_of_application' => $record['last_date_of_application'],
908
                        'last_date_of_application' => $record['last_date_of_application'],
-
 
909
                        'company_image'=> $record['image'];
909
                        'link_remove' => $this->url()->fromRoute('job/remove-save-job', ['id' => $record['uuid']  ]),
910
                        'link_remove' => $this->url()->fromRoute('job/remove-save-job', ['id' => $record['uuid']  ]),
910
                        'link_view' => $this->url()->fromRoute('job/view', ['id' => $record['uuid'] ]),
911
                        'link_view' => $this->url()->fromRoute('job/view', ['id' => $record['uuid'] ]),
911
                    ];
912
                    ];
Línea 912... Línea 913...
912
                    
913