📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
system
/
library
/
template
📝
template.php
← Geri Dön
<?php namespace Template; final class Template { private $data = array(); public function set($key, $value) { $this->data[$key] = $value; } public function render($template) { $file = DIR_TEMPLATE . $template . '.tpl'; if (is_file($file)) { extract($this->data); ob_start(); require($file); return ob_get_clean(); } throw new \Exception('Error: Could not load template ' . $file . '!'); exit(); } }
💾 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