Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.shinegis.mu
/
htdocs
/
functions
/
/srv/data/web/vhosts/www.shinegis.mu/htdocs/functions/scss.php
<?php /** * Compiles SCSS to style.css */ require_once 'scssphp/scss.inc.php'; use ScssPhp\ScssPhp\Compiler; use ScssPhp\ScssPhp\OutputStyle; $compiler = new Compiler(); $compiler->setImportPaths('assets/css/'); $compiler->setOutputStyle(OutputStyle::COMPRESSED); $result = $compiler->compileString('@import "import.scss";'); file_put_contents('assets/css/style.css', $result->getCss());