Exemplo n.º 1
0
 public function saveImage()
 {
     $this->unlinkAll('image', true);
     if (isset($this->_image) && is_array($this->_image)) {
         foreach ($this->_image as $path) {
             $image = new Image();
             $image->path = $path;
             $image->link('movie', $this);
         }
     }
 }