📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
kuruyemisciscripti.demodesign.com.tr
/
application
/
models
📝
Arguments.php
← Geri Dön
<?php class Arguments extends CI_Model { public function get($module = null, $name = null) { if ($module === null or $name === null) return false; $value = $this->db ->from('module_arguments') ->where('module', $module) ->where('name', $name) ->where('language', $this->language) ->get() ->row(); return $value->value; } }
💾 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