/
ouke
/
amk
Обзор
Документация
Войти
/
ouke
/
amk
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
admin/controller/startup/sass.php
27 строк
592 B
Руслан
first_commit
09 июл 2025, 07:27
09 июл 2025, 07:27
24f61ee
Код
Авторство
О чём код?
<?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); } } }