Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
admin
/
controller
/
startup
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); } } }