Beispiel #1
0
 /**
  * TODO Comments.
  */
 public function saveBinary($filename, $binary, $mimeType)
 {
     $response = Media_Uploader::saveBinary($filename, $binary, $mimeType, 'image');
     if (!$response) {
         $this->_error = Media_Uploader::getError();
     } else {
         $this->_id = $response;
     }
     return $this;
 }