mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 02:05:47 +00:00
32 lines
855 B
PHP
32 lines
855 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use CodeIgniter\HTTP\URI;
|
||
|
use Modules\Media\Config\Media;
|
||
|
|
||
|
if (! function_exists('media_url')) {
|
||
|
/**
|
||
|
* Returns a media URL as defined by the Media config.
|
||
|
*
|
||
|
* @param array|string $relativePath URI string or array of URI segments
|
||
|
*/
|
||
|
function media_url($relativePath = '', ?string $scheme = null): string
|
||
|
{
|
||
|
// Convert array of segments to a string
|
||
|
if (is_array($relativePath)) {
|
||
|
$relativePath = implode('/', $relativePath);
|
||
|
}
|
||
|
|
||
|
$uri = new URI(rtrim((string) config(Media::class)->baseURL, '/') . '/' . ltrim($relativePath));
|
||
|
|
||
|
return URI::createURIString(
|
||
|
$scheme ?? $uri->getScheme(),
|
||
|
$uri->getAuthority(),
|
||
|
$uri->getPath(),
|
||
|
$uri->getQuery(),
|
||
|
$uri->getFragment()
|
||
|
);
|
||
|
}
|
||
|
}
|