
| Current Path : /var/www/html1/testsite/web/themes/contrib/adaptivetheme/at_core/forms/ext/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //var/www/html1/testsite/web/themes/contrib/adaptivetheme/at_core/forms/ext/custom_css_submit.php |
<?php
/**
* Save custom CSS to file
*/
use Drupal\Component\Utility\Xss;
function at_core_submit_custom_css($values, $generated_files_path) {
$custom_css = '';
if (!empty($values['settings_custom_css'])) {
// sanitize user entered data
$custom_css = Xss::filter($values['settings_custom_css']);
}
$file_name = 'custom-css.css';
$filepath = $generated_files_path . '/' . $file_name;
file_unmanaged_save_data($custom_css, $filepath, FILE_EXISTS_REPLACE);
}