Skip to content

Instantly share code, notes, and snippets.

@leopro
Created June 21, 2012 13:56
Show Gist options
  • Save leopro/2965890 to your computer and use it in GitHub Desktop.
Save leopro/2965890 to your computer and use it in GitHub Desktop.
Sonata admin
<?php
protected function attachImages($object)
{
foreach ($object->getImages() as $image) {
$image->setArticolo($object);
}
}
public function prePersist($object)
{
$this->attachImages($object);
}
public function preUpdate($object)
{
$this->attachImages($object);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment