コード例 #1
0
 public function deletePhoto($photo)
 {
     // delete original here and rest in s3
     $myPhoto = array('pathOriginal' => $photo['pathOriginal']);
     $parentPhoto = $myPhoto;
     unset($parentPhoto['pathOriginal']);
     return $this->archiveOrg->deletePhoto($myPhoto) && parent::deletePhoto($parentPhoto);
 }
コード例 #2
0
ファイル: FileSystemS3Box.php プロジェクト: gg1977/frontend
 public function deletePhoto($photo)
 {
     return $this->box->deletePhoto($photo) && parent::deletePhoto($photo);
 }