📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
tarimscripti.demodesign.com.tr
/
application
/
models
📝
Certificate.php
← Geri Dön
<?php class Certificate extends CI_Model { public function all($limit = null, $offset = null) { if ($limit != null) { $this->db->limit($limit, $offset); } return $this->db ->from('certificates') ->where('language', $this->language) ->order_by('order', 'asc') ->order_by('id', 'desc') ->get() ->result(); } }
💾 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