| Versionen | |
|---|---|
| drupal6 – drupal7 | _color_save_stylesheet($file, $style, &$paths) |
Save the rewritten stylesheet to disk.
modules/
<?php
function _color_save_stylesheet($file, $style, &$paths) {
// Write new stylesheet.
file_save_data($style, $file, FILE_EXISTS_REPLACE);
$paths['files'][] = $file;
// Set standard file permissions for webserver-generated files.
@chmod($file, 0664);
}
?>
Kommentare
Kommentar hinzufügen