Created
November 5, 2019 14:52
-
-
Save delphinpro/e99f1637176fd17eafd5ba356e97c6f2 to your computer and use it in GitHub Desktop.
Антикэш стилей для Modx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Usage: | |
[[includeStylesheet? &file=`/path/to/style.css` ]] | |
*/ | |
if (!isset($file)) { | |
return ''; | |
} | |
$filePath = MODX_BASE_PATH.$file; | |
if (!is_file($filePath) or !is_readable($filePath)) { | |
return '<!-- FILE NOT FOUND: '.$file.' --><script>console.error("FILE NOT FOUND: '.$file.'")</script>'; | |
} | |
$time = filemtime($filePath); | |
return '<link rel="stylesheet" href="'.$file.'?v='.$time.'">'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment