Esempio n. 1
0
 /**
  * Store the specified media at the specified path
  *
  * @param string $path The path of the file to upload
  * @param MediaAsset $filedata The asset to upload
  */
 public function silo_put($path, $filedata)
 {
     $flickr = new Flickr($this->params);
     return $flickr->upload($path, $filedata['title'], $filedata['description'], $filedata['tags'], $filedata['perms'], 0);
 }