function _color_save_stylesheet

Saves the rewritten stylesheet to disk.

1 call to _color_save_stylesheet()
color_scheme_form_submit in drupal/modules/color/color.module
Form submission handler for color_scheme_form().

File

drupal/modules/color/color.module, line 567
Allows users to change the color scheme of themes.

Code

function _color_save_stylesheet($file, $style, &$paths) {
  $filepath = file_unmanaged_save_data($style, $file, FILE_EXISTS_REPLACE);
  $paths['files'][] = $filepath;

  // Set standard file permissions for webserver-generated files.
  drupal_chmod($file);
}