Exemplo n.º 1
0
 public function load(ObjectManager $manager)
 {
     $faker = \Faker\Factory::create();
     $x = 0;
     while ($x++ < 25) {
         $contryname = $faker->country($x);
         $slug = str_replace(' ', '-', $contryname);
         $slug = preg_replace('/[^A-Za-z\\-]/', '', $slug);
         $country = new Country();
         $country->setName($contryname);
         $country->setSlug(strtolower($slug));
         $country->setDescription($faker->text);
         $country->setImage($faker->imageUrl(22, 15));
         $manager->persist($country);
         $manager->flush();
         $this->addReference("country-{$x}", $country);
     }
 }
Exemplo n.º 2
0
 public function load(ObjectManager $manager)
 {
     $faker = \Faker\Factory::create();
     $countries = ['France', 'England', 'Czech Republic', 'Iceland', 'Austria', 'Northern Ireland', 'Portugal', 'Spain', 'Switzerland', 'Italy', 'Belgium', 'Wales', 'Romania', 'Albania', 'Germany', 'Poland', 'Russia', ' Slovakia', 'Croatia', 'Turkey', 'Hungary', 'Republic of Ireland', 'Sweden', 'Ukraine'];
     $x = -1;
     foreach ($countries as $x => $value) {
         $contryname = $value;
         $slug = str_replace(' ', '-', $contryname);
         $slug = preg_replace('/[^A-Za-z\\-]/', '', $slug);
         $country = new Country();
         $country->setName($contryname);
         $country->setSlug(strtolower($slug));
         $country->setDescription($faker->text);
         $country->setImage($faker->imageUrl(22, 15));
         $manager->persist($country);
         $manager->flush();
         $this->addReference("country-{$x}", $country);
     }
 }