18 lines
425 B
PHP
18 lines
425 B
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
|
|
if (!function_exists('eng_img_url')) {
|
|
function eng_img_url($path = '')
|
|
{
|
|
$baseUrl = '/eng/img';
|
|
$cdnBaseUrl = '';
|
|
|
|
if ($cdnBaseUrl !== '') {
|
|
$baseUrl = rtrim($cdnBaseUrl, '/');
|
|
}
|
|
|
|
$path = ltrim((string) $path, '/');
|
|
|
|
return $path === '' ? $baseUrl : $baseUrl . '/' . $path;
|
|
}
|
|
} |