mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
10 lines
276 B
PHP
10 lines
276 B
PHP
<?php
|
|
|
|
if (!function_exists('versioned_asset')) {
|
|
function versioned_asset(string $path): string
|
|
{
|
|
$fullPath = FCPATH . $path;
|
|
$version = file_exists($fullPath) ? filemtime($fullPath) : time();
|
|
return site_url($path) . '?v=' . $version;
|
|
}
|
|
} |