19 lines
496 B
PHP
19 lines
496 B
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
|
|
if (!function_exists('egbim_img_url')) {
|
|
function egbim_img_url($path = '')
|
|
{
|
|
$baseUrl = '/egbim/img';
|
|
$cdnOrigin = 'https://cdn.eg-bim.com';
|
|
$cdnPathPrefix = '';
|
|
|
|
if ($cdnOrigin !== '') {
|
|
$baseUrl = rtrim($cdnOrigin, '/') . $cdnPathPrefix;
|
|
}
|
|
|
|
$path = ltrim((string) $path, '/');
|
|
|
|
return $path === '' ? $baseUrl : $baseUrl . '/' . $path;
|
|
}
|
|
} |