本文整理汇总了PHP中JUDirectoryHelper::getPhysicalPath方法的典型用法代码示例。如果您正苦于以下问题:PHP JUDirectoryHelper::getPhysicalPath方法的具体用法?PHP JUDirectoryHelper::getPhysicalPath怎么用?PHP JUDirectoryHelper::getPhysicalPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JUDirectoryHelper
的用法示例。
在下文中一共展示了JUDirectoryHelper::getPhysicalPath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onImport
public function onImport($value, &$message = '')
{
$imageDir = JPATH_ROOT . '/' . JUDirectoryFrontHelper::getDirectory('listing_image_directory', 'media/com_judirectory/images/listing/');
$originalDir = $imageDir . 'original/';
$imagePath = JUDirectoryHelper::getPhysicalPath($value);
$oldImagePath = '';
if (!$this->is_new && $this->listing->image) {
$oldImagePath = JPath::clean($originalDir . $this->listing->image);
}
if ($imagePath != $oldImagePath) {
if ($imagePath && JFile::exists($imagePath)) {
if (JFile::exists($oldImagePath)) {
JFile::delete($imageDir . $this->listing->image);
JFile::delete($originalDir . $this->listing->image);
}
$imageName = basename($imagePath);
$imageName = $this->listing_id . "_" . JUDirectoryHelper::fileNameFilter($imageName);
JFile::copy($imagePath, $originalDir . $imageName);
JUDirectoryHelper::renderImages($originalDir . $imageName, $imageDir . $imageName, 'listing_image', true, null, $this->listing_id);
$value = $imageName;
return basename($value);
} else {
$message = $value . JText::_(' does not exist');
}
}
return false;
}