예제 #1
0
파일: Image.php 프로젝트: kingsj/core
 /**
  * Get storage path
  *
  * @param string $path Path to use OPTIONAL
  *
  * @return string
  */
 public function getStoragePath($path = null)
 {
     if (self::STORAGE_S3 == $this->getStorageType()) {
         $result = $this->generateS3Path($path);
     } else {
         $result = parent::getStoragePath($path);
     }
     return $result;
 }