Ejemplo n.º 1
0
 /**
  * {@inheritDoc}
  */
 public function load(ObjectManager $om)
 {
     $p = 0;
     foreach ($this->getData('AdPrice') as $o) {
         $obj = new AdPrice();
         $obj->setMainpage($o['mainpage']);
         $obj->setSubpages($o['subpages']);
         $obj->setPeriod($o['period']);
         $obj->setDuration($o['duration']);
         $obj->setPrice($o['price']);
         $om->persist($obj);
         $this->setReference('ad-price-' . ++$p, $obj);
     }
     $om->flush();
     foreach ($this->getData('AdType') as $o) {
         $obj = new AdType();
         $obj->setId($o['id']);
         $obj->setName($o['name']);
         $obj->setDefinition($o['definition']);
         foreach (range(1, $p) as $i) {
             $obj->addPrice($this->getReference('ad-price-' . $i));
         }
         $this->setReference('ad-type-' . $o['id'], $obj);
         $om->persist($obj);
     }
     $om->flush();
     foreach ($this->getData('Client') as $o) {
         $obj = new Client();
         $obj->setName($o['name']);
         $obj->setEmail($o['email']);
         $obj->setPhone($o['phone']);
         $obj->setInvoiceName($o['invoice_name']);
         $obj->setInvoiceNip($o['invoice_nip']);
         $obj->setInvoiceAddress($o['invoice_address']);
         $this->setReference('ad-client-' . $o['name'], $obj);
         $om->persist($obj);
     }
     $om->flush();
     foreach ($this->getData('Ad') as $o) {
         $obj = new Ad();
         $obj->setEnabled($o['enabled']);
         $obj->setType($this->getReference('ad-type-' . $o['type']));
         $obj->setOption($this->getReference('ad-price-' . $o['option']));
         $obj->setClient($this->getReference('ad-client-' . $o['client']));
         $obj->setLeadsTo($o['leads_to']);
         $def = $obj->getType()->getDefinition();
         $forig = sprintf('%s%dx%d/%s', $this->getBinariesPath(), $def['width'], $def['height'], $o['uploaded_file']);
         $fcopy = $this->getBinariesPath() . 'copy.' . $o['uploaded_file'];
         copy($forig, $fcopy);
         $file = new UploadedFile($fcopy, $o['uploaded_file'], mime_content_type($fcopy), filesize($fcopy), null, true);
         $obj->setUploadRootDir($this->container->get('kernel')->getRootDir() . '/../web/');
         $obj->setUploadedFile($file);
         $om->persist($obj);
         $title = sprintf('%s - %s landing page', strtoupper($file->getExtension()), $obj->getLeadsTo() === null ? 'NO' : 'WITH');
         $obj->setTitle($title);
         $om->persist($obj);
     }
     $om->flush();
 }
Ejemplo n.º 2
0
 /**
  * Remove prices
  *
  * @param \Siciarek\AdRotatorBundle\Entity\AdPrice $prices
  */
 public function removePrice(\Siciarek\AdRotatorBundle\Entity\AdPrice $prices)
 {
     $prices->removeType($this);
     $this->prices->removeElement($prices);
 }
Ejemplo n.º 3
0
 /**
  * Remove click
  *
  * @param \Siciarek\AdRotatorBundle\Entity\AdClick $click
  */
 public function removeClick(\Siciarek\AdRotatorBundle\Entity\AdPrice $click)
 {
     $click->removeType($this);
     $this->clicks->removeElement($click);
 }