📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
propanel
/
controller
/
startup
📝
sass.php
← Geri Dön
<?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); } } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula