本文整理汇总了PHP中modMediaSource::getBaseUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP modMediaSource::getBaseUrl方法的具体用法?PHP modMediaSource::getBaseUrl怎么用?PHP modMediaSource::getBaseUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类modMediaSource
的用法示例。
在下文中一共展示了modMediaSource::getBaseUrl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createAsset
/**
* @param $new_name
* @param $file
* @return string $url_name
*/
protected function createAsset($new_name, $file, $remote = true)
{
//$this->modx->importx->log('error', 'Create Asset ');
if (is_object($this->mediaSource)) {
//$this->modx->importx->log('error', 'Yes: '.$file);
if ($remote && strpos($file, 'http') !== 0) {
$file = rtrim($this->config['link'], '/') . '/' . ltrim($file, '/');
}
// directory:
$object_path = '';
if (in_array(strtolower(pathinfo($new_name, PATHINFO_EXTENSION)), array('doc', 'pdf', 'docx', 'csv', 'xlsx'))) {
$object_path = 'docs' . DIRECTORY_SEPARATOR;
}
$content = $remote ? $this->getRemoteData($file) : file_get_contents($file);
$file = rawurldecode($this->mediaSource->createObject($object_path, $new_name, $content));
$basePath = $this->mediaSource->getBasePath($file);
$baseUrl = $this->mediaSource->getBaseUrl($file);
$file = str_replace($basePath, $baseUrl, $file);
if ($file !== false) {
$this->modx->importx->log('info', 'File transferred to: ' . $file);
}
return $file;
}
return false;
}