45 lines
1016 B
PHP
45 lines
1016 B
PHP
<?php
|
|
namespace Opencart\Admin\Controller\Startup;
|
|
/**
|
|
* Class Sass
|
|
*
|
|
* @package Opencart\Admin\Controller\Startup
|
|
*/
|
|
class Sass extends \Opencart\System\Engine\Controller {
|
|
/**
|
|
* @return void
|
|
* @throws \ScssPhp\ScssPhp\Exception\SassException
|
|
*/
|
|
public function index(): void {
|
|
$files = glob(DIR_APPLICATION . 'view/stylesheet/*.scss');
|
|
|
|
if ($files) {
|
|
foreach ($files as $file) {
|
|
// Get the filename
|
|
$filename = basename($file, '.scss');
|
|
|
|
$stylesheet = DIR_APPLICATION . 'view/stylesheet/' . $filename . '.css';
|
|
|
|
if (!is_file($stylesheet) || !$this->config->get('developer_sass')) {
|
|
$scss = new \ScssPhp\ScssPhp\Compiler();
|
|
$scss->setImportPaths(DIR_APPLICATION . 'view/stylesheet/');
|
|
|
|
$output = $scss->compileString('@import "' . $filename . '.scss"')->getCss();
|
|
|
|
$handle = fopen($stylesheet, 'w');
|
|
|
|
flock($handle, LOCK_EX);
|
|
|
|
fwrite($handle, $output);
|
|
|
|
fflush($handle);
|
|
|
|
flock($handle, LOCK_UN);
|
|
|
|
fclose($handle);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|