Skip to content

Instantly share code, notes, and snippets.

@alexsoin
Created April 25, 2020 20:07
Show Gist options
  • Save alexsoin/0829fa5538262eef7ce99c3f4777dfc6 to your computer and use it in GitHub Desktop.
Save alexsoin/0829fa5538262eef7ce99c3f4777dfc6 to your computer and use it in GitHub Desktop.
Вывод версии покдключаемого файла в modx
И использовать его как-то так:
<link rel="stylesheet" href="{'public/template/css/styles.css' | version}" type="text/css"/>
<script src="{'public/template/js/scripts.min.js' | version}" type="text/javascript"></script>
<?php
$filepath = MODX_BASE_PATH . $input;
if (file_exists($filepath)) {
return $input . '?v=' . date('dmYHis', filemtime($filepath));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment