├── .htaccess ├── README.md ├── application ├── .DS_Store ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── index.html │ └── welcome.php ├── core │ ├── MY_Loader.php │ ├── MY_Router.php │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── download_helper.php │ ├── gravatar_helper.php │ ├── index.html │ ├── namahari_helper.php │ ├── name_helper.php │ ├── permalink_helper.php │ ├── tgl_indo_helper.php │ ├── umur_helper.php │ └── waktu_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── app_global_admin_model.php │ ├── app_global_direktur_model.php │ ├── app_global_perawat_model.php │ ├── app_global_web.php │ ├── app_load_config_model.php │ ├── app_user_login_model.php │ └── index.html ├── modules │ ├── .DS_Store │ ├── admin │ │ ├── .DS_Store │ │ ├── controllers │ │ │ ├── .DS_Store │ │ │ ├── admin.php │ │ │ ├── data_buku_tamu.php │ │ │ ├── data_contact.php │ │ │ ├── data_dokter.php │ │ │ ├── data_galeri.php │ │ │ ├── data_kategori_ruang.php │ │ │ ├── data_pasien.php │ │ │ ├── data_perawat.php │ │ │ ├── data_spesialis.php │ │ │ ├── data_status.php │ │ │ ├── data_tunjangan.php │ │ │ ├── denah_ruang.php │ │ │ ├── jadwal_dokter.php │ │ │ ├── jadwal_perawat.php │ │ │ ├── laporan_data_ketenagaan.php │ │ │ ├── laporan_data_kunjungan.php │ │ │ ├── laporan_data_pasien.php │ │ │ ├── laporan_fasilitas_ruang.php │ │ │ ├── routing_pages.php │ │ │ ├── ruang.php │ │ │ ├── sistem.php │ │ │ └── user.php │ │ └── views │ │ │ ├── .DS_Store │ │ │ ├── bg_footer.php │ │ │ ├── bg_header.php │ │ │ ├── bg_home.php │ │ │ ├── bg_menu.php │ │ │ ├── buku_tamu │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── contact │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── data_tunjangan │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── denah_ruang │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── dokter │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── galeri │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── jadwal_dokter │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── jadwal_perawat │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── kategori_ruang │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── laporan_data_ketenagaan │ │ │ ├── .DS_Store │ │ │ ├── bg_cetak.php │ │ │ └── bg_home.php │ │ │ ├── laporan_data_kunjungan │ │ │ ├── .DS_Store │ │ │ ├── bg_cetak.php │ │ │ └── bg_home.php │ │ │ ├── laporan_data_pasien │ │ │ ├── .DS_Store │ │ │ ├── bg_cetak.php │ │ │ ├── bg_cetak_detail.php │ │ │ ├── bg_detail.php │ │ │ └── bg_home.php │ │ │ ├── laporan_fasilitas_ruang │ │ │ ├── .DS_Store │ │ │ ├── bg_cetak.php │ │ │ └── bg_home.php │ │ │ ├── pasien │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── perawat │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── routing_pages │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── ruang │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── sistem │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── spesialis │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── status │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ └── user │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ ├── app_route │ │ └── controllers │ │ │ └── app_route.php │ ├── direktur │ │ ├── .DS_Store │ │ ├── controllers │ │ │ ├── .DS_Store │ │ │ ├── direktur.php │ │ │ ├── jadwal_dokter.php │ │ │ ├── jadwal_perawat.php │ │ │ ├── laporan_data_ketenagaan.php │ │ │ ├── laporan_data_kunjungan.php │ │ │ ├── laporan_data_pasien.php │ │ │ └── laporan_fasilitas_ruang.php │ │ └── views │ │ │ ├── .DS_Store │ │ │ ├── bg_footer.php │ │ │ ├── bg_header.php │ │ │ ├── bg_home.php │ │ │ ├── bg_menu.php │ │ │ ├── jadwal_dokter │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── jadwal_perawat │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── laporan_data_ketenagaan │ │ │ ├── .DS_Store │ │ │ └── bg_home.php │ │ │ ├── laporan_data_pasien │ │ │ ├── .DS_Store │ │ │ ├── bg_detail.php │ │ │ └── bg_home.php │ │ │ └── laporan_fasilitas_ruang │ │ │ ├── .DS_Store │ │ │ └── bg_home.php │ ├── global │ │ ├── controllers │ │ │ ├── password.php │ │ │ └── profil.php │ │ └── views │ │ │ ├── password │ │ │ └── bg_home.php │ │ │ └── profil │ │ │ └── bg_home.php │ ├── login │ │ ├── .DS_Store │ │ └── controllers │ │ │ └── login.php │ ├── perawat │ │ ├── .DS_Store │ │ ├── controllers │ │ │ ├── data_pasien.php │ │ │ ├── jadwal_dokter.php │ │ │ ├── jadwal_perawat.php │ │ │ ├── perawat.php │ │ │ └── ruang.php │ │ └── views │ │ │ ├── bg_footer.php │ │ │ ├── bg_header.php │ │ │ ├── bg_home.php │ │ │ ├── bg_menu.php │ │ │ ├── jadwal_dokter │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── jadwal_perawat │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ ├── pasien │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ │ │ └── ruang │ │ │ ├── bg_home.php │ │ │ └── bg_input.php │ └── web │ │ ├── .DS_Store │ │ └── controllers │ │ ├── buku_tamu.php │ │ ├── contact.php │ │ ├── denah_ruang.php │ │ ├── fasilitas_ruang.php │ │ ├── galeri.php │ │ ├── ketenagaan.php │ │ └── web.php ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ └── index.html └── views │ ├── .DS_Store │ ├── black-inverse │ ├── .DS_Store │ ├── front │ │ ├── .DS_Store │ │ ├── bg_footer.php │ │ ├── bg_header.php │ │ ├── bg_home.php │ │ ├── bg_pages.php │ │ ├── buku_tamu │ │ │ └── bg_home.php │ │ ├── contact │ │ │ └── bg_home.php │ │ ├── denah_ruang │ │ │ └── bg_home.php │ │ ├── fasilitas_ruang │ │ │ └── bg_home.php │ │ ├── galeri │ │ │ └── bg_home.php │ │ └── ketenagaan │ │ │ └── bg_home.php │ └── login │ │ └── login.php │ └── index.html ├── asset ├── .DS_Store ├── ckeditor │ ├── .DS_Store │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── kcfinder │ │ ├── browse.php │ │ ├── config.php │ │ ├── core │ │ │ ├── .htaccess │ │ │ ├── autoload.php │ │ │ ├── browser.php │ │ │ ├── types │ │ │ │ ├── type_img.php │ │ │ │ └── type_mime.php │ │ │ └── uploader.php │ │ ├── css.php │ │ ├── js │ │ │ ├── browser │ │ │ │ ├── 0bject.js │ │ │ │ ├── clipboard.js │ │ │ │ ├── dropUpload.js │ │ │ │ ├── files.js │ │ │ │ ├── folders.js │ │ │ │ ├── init.js │ │ │ │ ├── joiner.php │ │ │ │ ├── misc.js │ │ │ │ ├── settings.js │ │ │ │ └── toolbar.js │ │ │ ├── helper.js │ │ │ ├── jquery.drag.js │ │ │ ├── jquery.js │ │ │ └── jquery.rightClick.js │ │ ├── js_localize.php │ │ ├── lang │ │ │ ├── .htaccess │ │ │ ├── bg.php │ │ │ ├── ca.php │ │ │ ├── cs.php │ │ │ ├── da.php │ │ │ ├── de.php │ │ │ ├── el.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fa.php │ │ │ ├── fr.php │ │ │ ├── hu.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── lt.php │ │ │ ├── nl.php │ │ │ ├── no.php │ │ │ ├── pl.php │ │ │ ├── pt-br.php │ │ │ ├── pt.php │ │ │ ├── ru.php │ │ │ ├── sk.php │ │ │ ├── tr.php │ │ │ ├── vi.php │ │ │ └── zh-cn.php │ │ ├── lib │ │ │ ├── .htaccess │ │ │ ├── class_gd.php │ │ │ ├── class_input.php │ │ │ ├── class_zipFolder.php │ │ │ ├── helper_dir.php │ │ │ ├── helper_file.php │ │ │ ├── helper_httpCache.php │ │ │ ├── helper_path.php │ │ │ └── helper_text.php │ │ ├── themes │ │ │ ├── dark │ │ │ │ ├── about.txt │ │ │ │ ├── img │ │ │ │ │ ├── bg_transparent.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── files │ │ │ │ │ │ ├── big │ │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ │ ├── torrent.png │ │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ │ └── small │ │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ │ ├── torrent.png │ │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── about.png │ │ │ │ │ │ ├── clipboard-add.png │ │ │ │ │ │ ├── clipboard-clear.png │ │ │ │ │ │ ├── clipboard.png │ │ │ │ │ │ ├── close-clicked.png │ │ │ │ │ │ ├── close-hover.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── delete.png │ │ │ │ │ │ ├── download.png │ │ │ │ │ │ ├── folder-new.png │ │ │ │ │ │ ├── maximize.png │ │ │ │ │ │ ├── move.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ ├── rename.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── settings.png │ │ │ │ │ │ ├── upload.png │ │ │ │ │ │ └── view.png │ │ │ │ │ ├── kcf_logo.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── question.png │ │ │ │ │ └── tree │ │ │ │ │ │ ├── denied.png │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ ├── folder_current.png │ │ │ │ │ │ ├── minus.png │ │ │ │ │ │ └── plus.png │ │ │ │ ├── init.js │ │ │ │ └── style.css │ │ │ └── oxygen │ │ │ │ ├── about.txt │ │ │ │ ├── img │ │ │ │ ├── alert.png │ │ │ │ ├── bg_transparent.png │ │ │ │ ├── confirm.png │ │ │ │ ├── files │ │ │ │ │ ├── big │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ ├── psd.png │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ ├── torrent.png │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ └── zip.png │ │ │ │ │ └── small │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ ├── psd.png │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ ├── torrent.png │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ └── zip.png │ │ │ │ ├── icons │ │ │ │ │ ├── about.png │ │ │ │ │ ├── clipboard-add.png │ │ │ │ │ ├── clipboard-clear.png │ │ │ │ │ ├── clipboard.png │ │ │ │ │ ├── close-clicked.png │ │ │ │ │ ├── close-hover.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── download.png │ │ │ │ │ ├── folder-new.png │ │ │ │ │ ├── maximize.png │ │ │ │ │ ├── move.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── rename.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── settings.png │ │ │ │ │ ├── upload.png │ │ │ │ │ └── view.png │ │ │ │ ├── kcf_logo.png │ │ │ │ ├── loading.gif │ │ │ │ └── tree │ │ │ │ │ ├── denied.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_current.png │ │ │ │ │ ├── minus.png │ │ │ │ │ └── plus.png │ │ │ │ ├── init.js │ │ │ │ └── style.css │ │ ├── tpl │ │ │ ├── .htaccess │ │ │ ├── tpl_browser.php │ │ │ ├── tpl_css.php │ │ │ └── tpl_javascript.php │ │ ├── upload.php │ │ └── upload │ │ │ └── .htaccess │ ├── lang │ │ └── en.js │ ├── plugins │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── icons.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ └── anchor.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ └── tabletools │ │ │ └── dialogs │ │ │ └── tableCell.js │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── dialog_opera.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ └── mini.png │ │ │ └── readme.md │ └── styles.js ├── content_upload │ └── .htaccess ├── galeri │ ├── 070f8c0061afa18f7695d41584b16398.png │ ├── 33d35d23186981ad96a056bc003ce5bf.jpg │ ├── 4da5061c66ca92bdd552ccff437c7581.JPG │ ├── 5a7530fb7c3d883e7abd9e8c22b507db.JPG │ ├── 6979101a0b159f072a5ffab43dc726c6.JPG │ ├── 96c59758b30db7384bddb4afa86549f0.jpg │ ├── a6e207ace831a88815fb2a44c2fda2a3.JPG │ ├── d2ab9feb930e12019c4958bc114b7a15.JPG │ ├── eb88a1a91a8e633f3c47e65b7685d63e.JPG │ ├── f7a5cd5d483dfab3078e2d58c5264f57.JPG │ ├── f96bf45c17a1b7c935772470f3ed425f.jpg │ ├── ff60724c9dd6820ea6f90a8013622f10.jpg │ └── slider-banner-1.jpg └── theme │ ├── .DS_Store │ ├── black-inverse │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ ├── bootstrap.min.css │ │ ├── chosen.css │ │ ├── date │ │ │ ├── .DS_Store │ │ │ ├── README.md │ │ │ ├── glDatePicker.js │ │ │ ├── glDatePicker.min.js │ │ │ └── styles │ │ │ │ ├── .DS_Store │ │ │ │ ├── glDatePicker.darkneon.css │ │ │ │ ├── glDatePicker.default.css │ │ │ │ └── glDatePicker.flatwhite.css │ │ ├── flexslider.css │ │ ├── images │ │ │ ├── arr-footer-col.png │ │ │ ├── arr-ico.png │ │ │ ├── body.png │ │ │ ├── col-img1.png │ │ │ ├── col-img2.png │ │ │ ├── col-img3.png │ │ │ ├── cols-shadow.png │ │ │ ├── control-nav.png │ │ │ ├── face-ico.png │ │ │ ├── favicon.ico │ │ │ ├── footer-bottom.png │ │ │ ├── footer-cols.png │ │ │ ├── footer-lights.png │ │ │ ├── grey-btn.png │ │ │ ├── john-ico.png │ │ │ ├── logo.png │ │ │ ├── logo@2x.png │ │ │ ├── m-btn-grey.png │ │ │ ├── m-section-post.png │ │ │ ├── m-section-shadow.png │ │ │ ├── m-slide-img.png │ │ │ ├── m-slider-bottom.png │ │ │ ├── main.png │ │ │ ├── my-space-ico.png │ │ │ ├── nav-arr.png │ │ │ ├── nav-arr@2x.png │ │ │ ├── nav-border.png │ │ │ ├── navigation.png │ │ │ ├── rss-ico.png │ │ │ ├── search-btn.png │ │ │ ├── section-shadow.png │ │ │ ├── section-shadow@2x.png │ │ │ ├── slide-img.png │ │ │ ├── slide-img1.png │ │ │ ├── slide-img2.png │ │ │ ├── slide-img@2x.png │ │ │ ├── slider-bottom.png │ │ │ ├── slider-shadow.png │ │ │ ├── socials-bg.png │ │ │ ├── socials-inner.png │ │ │ ├── socials.png │ │ │ ├── t-section-post.png │ │ │ ├── t-section-shadow.png │ │ │ ├── t-slide-img.png │ │ │ ├── t-slide-img1.png │ │ │ ├── t-slide-img2.png │ │ │ ├── t-slider-bottom.png │ │ │ ├── twitter-ico.png │ │ │ └── video-img.png │ │ ├── jquery.fancybox-1.3.4.css │ │ ├── signin.css │ │ └── style.css │ ├── images │ │ ├── .DS_Store │ │ ├── bg-side.png │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ ├── fancybox.png │ │ ├── links.png │ │ ├── marker.png │ │ ├── peta.jpg │ │ └── peta_tambah.jpg │ ├── img │ │ ├── .DS_Store │ │ ├── body-bg.png │ │ ├── chosen-sprite.png │ │ ├── password.png │ │ └── user.png │ └── js │ │ ├── .DS_Store │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── functions.js │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery-1.8.0.min.js │ │ ├── jquery.fancybox-1.3.4.pack.js │ │ ├── jquery.flexslider-min.js │ │ ├── mapjs │ │ ├── .DS_Store │ │ ├── imagemapcreator.js │ │ ├── prototype.js │ │ ├── scriptaculous.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── wz_jsgraphics.js │ │ ├── mobilymap.js │ │ └── modernizr.custom.js │ └── dashboard │ ├── .DS_Store │ ├── css │ ├── adminflare.min.css │ ├── bootstrap.min.css │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ └── jquery-ui-1.7.2.custom.css │ ├── images │ ├── af-logo.png │ └── left-menu-bg.png │ └── js │ ├── adminflare-demo-init.min.js │ ├── adminflare-demo.min.js │ ├── adminflare.min.js │ ├── bootstrap.min.js │ ├── jquery-1.7.2.min.js │ ├── jquery-ui-1.8.21.custom.min.js │ └── modernizr-jquery.min.js ├── index.php └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php └── index.html ├── database ├── DB.php ├── DB_active_rec.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ └── pdo_utility.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php └── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ └── Cache_memcached.php ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Log.php ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session.php ├── Sha1.php ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php ├── index.html └── javascript └── Jquery.php /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond $1 !^(index\.php|resources|robots\.txt) 3 | RewriteCond %{REQUEST_FILENAME} !-f 4 | RewriteCond %{REQUEST_FILENAME} !-d 5 | RewriteRule ^(.*)$ index.php/$1 [L,QSA] -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | HospitalManagement 2 | ================== 3 | 4 | Simple Hospital Management System -------------------------------------------------------------------------------- /application/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/HospitalManagement/c2d45543789a3887067d3915f69d44cfc2cf76a8/application/.DS_Store -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |