Subversion Repositories oidplus

Rev

Rev 1116 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1116 Rev 1130
Line 29... Line 29...
29
 
29
 
30
# ---
30
# ---
31
 
31
 
32
$do_minify = OIDplus::baseConfig()->getValue('MINIFY_CSS', true);
32
$do_minify = OIDplus::baseConfig()->getValue('MINIFY_CSS', true);
33
 
33
 
-
 
34
/**
-
 
35
* @param string $filename
-
 
36
* @return string
-
 
37
 */
34
function process_file($filename) {
38
function process_file(string $filename): string {
35
        global $do_minify;
39
        global $do_minify;
36
 
40
 
37
        if (!file_exists($filename)) return "";
41
        if (!file_exists($filename)) return "";
38
 
42
 
39
        $thisdir = __DIR__;
43
        $thisdir = __DIR__;