本文整理汇总了PHP中ElggFile::getOwnerGuid方法的典型用法代码示例。如果您正苦于以下问题:PHP ElggFile::getOwnerGuid方法的具体用法?PHP ElggFile::getOwnerGuid怎么用?PHP ElggFile::getOwnerGuid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ElggFile
的用法示例。
在下文中一共展示了ElggFile::getOwnerGuid方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getFilenameOnFilestore
/**
* Get the filename as saved on disk for an ElggFile object
*
* Returns an empty string if no filename set
*
* @param ElggFile $file File object
*
* @return string The full path of where the file is stored
* @throws InvalidParameterException
*/
public function getFilenameOnFilestore(ElggFile $file)
{
$owner_guid = $file->getOwnerGuid();
if (!$owner_guid) {
$owner_guid = elgg_get_logged_in_user_guid();
}
if (!$owner_guid) {
$msg = "File " . $file->getFilename() . " (file guid:" . $file->guid . ") is missing an owner!";
throw new InvalidParameterException($msg);
}
$filename = $file->getFilename();
if (!$filename) {
return '';
}
$dir = new Elgg_EntityDirLocator($owner_guid);
return $this->dir_root . $dir . $file->getFilename();
}
示例2: getFilenameOnFilestore
/**
* Get the filename as saved on disk for an \ElggFile object
*
* Returns an empty string if no filename set
*
* @param \ElggFile $file File object
*
* @return string The full path of where the file is stored
* @throws InvalidParameterException
*/
public function getFilenameOnFilestore(\ElggFile $file)
{
$owner_guid = $file->getOwnerGuid();
if (!$owner_guid) {
$owner_guid = _elgg_services()->session->getLoggedInUserGuid();
}
if (!$owner_guid) {
$msg = "File " . $file->getFilename() . " (file guid:" . $file->guid . ") is missing an owner!";
throw new \InvalidParameterException($msg);
}
$filename = $file->getFilename();
if (!$filename) {
return '';
}
$dir = new \Elgg\EntityDirLocator($owner_guid);
return $this->dir_root . $dir . $file->getFilename();
}
示例3: getFilenameOnFilestore
/**
* Get the filename as saved on disk for an ElggFile object
*
* Returns an empty string if no filename set
*
* @param ElggFile $file File object
*
* @return string The full path of where the file is stored
* @throws InvalidParameterException
*/
public function getFilenameOnFilestore(ElggFile $file)
{
$owner_guid = $file->getOwnerGuid();
if (!$owner_guid) {
$owner_guid = elgg_get_logged_in_user_guid();
}
if (!$owner_guid) {
$msg = elgg_echo('InvalidParameterException:MissingOwner', array($file->getFilename(), $file->guid));
throw new InvalidParameterException($msg);
}
$filename = $file->getFilename();
if (!$filename) {
return '';
}
return $this->dir_root . $this->makeFileMatrix($owner_guid) . $filename;
}