Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1 Rev 3454
Línea 255... Línea 255...
255
                                array_push($company_sizes, $companySize->id);
255
                                array_push($company_sizes, $companySize->id);
256
                            }
256
                            }
257
                        }
257
                        }
Línea 258... Línea 258...
258
                        
258
                        
259
                        $industryMapper = IndustryMapper::getInstance($this->adapter);
259
                        $industryMapper = IndustryMapper::getInstance($this->adapter);
Línea 260... Línea 260...
260
                        $industries = $industryMapper->fetchAllActives();
260
                        $industries = $industryMapper->fetchAllActive();
261
                        
261
                        
262
                        $industry_ids = [];
262
                        $industry_ids = [];
263
                        foreach($industries as $industry)
263
                        foreach($industries as $industry)
Línea 324... Línea 324...
324
                        break;
324
                        break;
Línea 325... Línea 325...
325
                        
325
                        
Línea 326... Línea 326...
326
                    case 'group' : 
326
                    case 'group' : 
327
                        
327
                        
Línea 328... Línea 328...
328
                        $groupTypeMapper = GroupTypeMapper::getInstance($this->adapter);
328
                        $groupTypeMapper = GroupTypeMapper::getInstance($this->adapter);
329
                        $groupTypes = $groupTypeMapper->fetchAllActives();
329
                        $groupTypes = $groupTypeMapper->fetchAllActive();
330
                        
330
                        
Línea 340... Línea 340...
340
                                }
340
                                }
341
                            }
341
                            }
342
                        }
342
                        }
Línea 343... Línea 343...
343
                        
343
                        
344
                        $industryMapper = IndustryMapper::getInstance($this->adapter);
344
                        $industryMapper = IndustryMapper::getInstance($this->adapter);
Línea 345... Línea 345...
345
                        $industries = $industryMapper->fetchAllActives();
345
                        $industries = $industryMapper->fetchAllActive();
346
                        
346
                        
347
                        $industry_ids = [];
347
                        $industry_ids = [];
348
                        foreach($industries as $industry)
348
                        foreach($industries as $industry)
Línea 421... Línea 421...
421
                                array_push($company_sizes, $companySize->id);
421
                                array_push($company_sizes, $companySize->id);
422
                            }
422
                            }
423
                        }
423
                        }
Línea 424... Línea 424...
424
                        
424
                        
425
                        $industryMapper = IndustryMapper::getInstance($this->adapter);
425
                        $industryMapper = IndustryMapper::getInstance($this->adapter);
Línea 426... Línea 426...
426
                        $industries = $industryMapper->fetchAllActives();
426
                        $industries = $industryMapper->fetchAllActive();
427
                        
427
                        
428
                        $industry_ids = [];
428
                        $industry_ids = [];
429
                        foreach($industries as $industry)
429
                        foreach($industries as $industry)
Línea 703... Línea 703...
703
                    $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
703
                    $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
704
                }
704
                }
Línea 705... Línea 705...
705
                
705
                
706
                $groupTypes = [];
706
                $groupTypes = [];
707
                $groupTypeMapper = GroupTypeMapper::getInstance($this->adapter);
707
                $groupTypeMapper = GroupTypeMapper::getInstance($this->adapter);
708
                $records = $groupTypeMapper->fetchAllActives();
708
                $records = $groupTypeMapper->fetchAllActive();
709
                foreach($records as $record) 
709
                foreach($records as $record) 
710
                {
710
                {
711
                    $groupTypes[$record->uuid] = $record->name;
711
                    $groupTypes[$record->uuid] = $record->name;
Línea 712... Línea 712...
712
                }
712
                }
713
                
713
                
714
                
714
                
715
                $industries = [];
715
                $industries = [];
716
                $industryMapper = IndustryMapper::getInstance($this->adapter);
716
                $industryMapper = IndustryMapper::getInstance($this->adapter);
717
                $records = $industryMapper->fetchAllActives();
717
                $records = $industryMapper->fetchAllActive();
718
                foreach($records as $record)
718
                foreach($records as $record)
Línea 719... Línea 719...
719
                {
719
                {
720
                    $industries[$record->uuid] = $record->name;
720
                    $industries[$record->uuid] = $record->name;
721
                }
721
                }
722
                
722
                
723
                $companySizes = [];
723
                $companySizes = [];
724
                $companySizeMapper = CompanySizeMapper::getInstance($this->adapter);
724
                $companySizeMapper = CompanySizeMapper::getInstance($this->adapter);
725
                $records = $companySizeMapper->fetchAllActives();
725
                $records = $companySizeMapper->fetchAllActive();