1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-19 04:11:20 +02:00

+ "//" filepath shortcut in Build.php

+ 'getContentFunc' option in Source.php for lazy loading content only when needed (e.g. from DB)
This commit is contained in:
Steve Clay
2008-03-29 03:09:41 +00:00
parent d38f3d0219
commit d6c933e80d
2 changed files with 19 additions and 6 deletions

View File

@@ -86,8 +86,13 @@ class Minify_Build {
foreach ((array)$sources as $source) {
if ($source instanceof Minify_Source) {
$max = max($max, $source->lastModified);
} elseif (is_string($source) && is_file($source)) {
$max = max($max, filemtime($source));
} elseif (is_string($source)) {
if (0 === strpos($source, '//')) {
$source = $_SERVER['DOCUMENT_ROOT'] . substr($source, 1);
}
if (is_file($source)) {
$max = max($max, filemtime($source));
}
}
}
$this->lastModified = $max;