You are here

function _color_save_stylesheet in Drupal 8

Same name and namespace in other branches
  1. 6 modules/color/color.module \_color_save_stylesheet()
  2. 7 modules/color/color.module \_color_save_stylesheet()
  3. 9 core/modules/color/color.module \_color_save_stylesheet()

Saves the rewritten stylesheet to disk.

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

File

core/modules/color/color.module, line 593
Allows users to change the color scheme of themes.

Code

function _color_save_stylesheet($file, $style, &$paths) {
  $filepath = \Drupal::service('file_system')
    ->saveData($style, $file, FileSystemInterface::EXISTS_REPLACE);
  $paths['files'][] = $filepath;

  // Set standard file permissions for webserver-generated files.
  \Drupal::service('file_system')
    ->chmod($file);
}