本文整理汇总了PHP中AssetFileModel::getPath方法的典型用法代码示例。如果您正苦于以下问题:PHP AssetFileModel::getPath方法的具体用法?PHP AssetFileModel::getPath怎么用?PHP AssetFileModel::getPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AssetFileModel
的用法示例。
在下文中一共展示了AssetFileModel::getPath方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: finalizeTransfer
/**
* Finalize a file transfer between sources for the provided file.
*
* @param AssetFileModel $file The assetFileModel representing the file we're finalizing the transfer for.
*
* @return null
*/
public function finalizeTransfer(AssetFileModel $file)
{
$this->deleteSourceFile($file->getPath());
}
示例2: _getFileSystemPath
/**
* Get a file's system path.
*
* @param AssetFileModel $file
*
* @return string
*/
private function _getFileSystemPath(AssetFileModel $file)
{
$fileSourceType = craft()->assetSources->getSourceTypeById($file->sourceId);
return $this->getSourceFileSystemPath($fileSourceType) . $file->getPath();
}
示例3: _getRackspacePath
/**
* Get a file's Rackspace path.
*
* @param AssetFileModel $file
*
* @return string
*/
private function _getRackspacePath(AssetFileModel $file)
{
return $this->_getPathPrefix() . $file->getPath();
}
示例4: _getS3Path
/**
* Get a file's S3 path.
*
* @param AssetFileModel $file
* @param $settings The source settings to use.
*
* @return string
*/
private function _getS3Path(AssetFileModel $file, $settings = null)
{
return $this->_getPathPrefix($settings) . $file->getPath();
}