diff options
Diffstat (limited to 'public/admin/controller/startup/sass.php')
-rw-r--r-- | public/admin/controller/startup/sass.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/public/admin/controller/startup/sass.php b/public/admin/controller/startup/sass.php new file mode 100644 index 0000000..9af89b3 --- /dev/null +++ b/public/admin/controller/startup/sass.php @@ -0,0 +1,27 @@ +<?php +class ControllerStartupSass extends Controller { + public function index() { + $file = DIR_APPLICATION . 'view/stylesheet/bootstrap.css'; + + if (!is_file($file) || !$this->config->get('developer_sass')) { + include_once(DIR_STORAGE . 'vendor/scss.inc.php'); + + $scss = new Scssc(); + $scss->setImportPaths(DIR_APPLICATION . 'view/stylesheet/sass/'); + + $output = $scss->compile('@import "_bootstrap.scss"'); + + $handle = fopen($file, 'w'); + + flock($handle, LOCK_EX); + + fwrite($handle, $output); + + fflush($handle); + + flock($handle, LOCK_UN); + + fclose($handle); + } + } +} |