├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── SECURITY.md ├── admin ├── .htaccess └── index.php ├── assets ├── css │ ├── animate.min.css │ ├── ataaka.min.css │ ├── bootstrap-colorpicker.css │ ├── bootstrap-datetimepicker.css │ ├── bootstrap.min.css │ ├── cerulean.min.css │ ├── cosmo.min.css │ ├── cyborg.min.css │ ├── darkly.min.css │ ├── dataTables.bootstrap.min.css │ ├── datatables.min.css │ ├── flatly.min.css │ ├── font-awesome-css.min.css │ ├── font-awesome.css │ ├── journal.min.css │ ├── jquery-ui.css │ ├── jquery.contextMenu.min.css │ ├── jquery.keypad.css │ ├── jquery.timepicker.css │ ├── lumen.min.css │ ├── mlite.min.css │ ├── open-sans.css │ ├── paper.min.css │ ├── readable.min.css │ ├── sandstone.min.css │ ├── simplex.min.css │ ├── sketchy.min.css │ ├── slate.min.css │ ├── spacelab.min.css │ ├── superhero.min.css │ ├── united.min.css │ └── yeti.min.css ├── fonts │ ├── ComicNeue-Bold.ttf │ ├── ComicNeue-BoldItalic.ttf │ ├── ComicNeue-Italic.ttf │ ├── ComicNeue-Light.ttf │ ├── ComicNeue-LightItalic.ttf │ ├── ComicNeue-Regular.ttf │ ├── RedactedScript-Bold.woff2 │ ├── RedactedScript-Light.woff2 │ ├── RedactedScript-Regular.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2 │ ├── mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2 │ ├── mem5YaGs126MiZpBA-UN_r8OUuhpKKSTjw.woff2 │ ├── mem5YaGs126MiZpBA-UN_r8OXOhpKKSTj5PW.woff2 │ ├── mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2 │ ├── mem5YaGs126MiZpBA-UNirkOXOhpKKSTj5PW.woff2 │ ├── mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2 │ └── mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2 ├── images │ ├── icon-128x128.png │ ├── icon-192x192.png │ ├── icon-256x256.png │ ├── icon-384x384.png │ ├── icon-512x512.png │ ├── ui-icons_444444_256x240.png │ ├── ui-icons_555555_256x240.png │ ├── ui-icons_777620_256x240.png │ ├── ui-icons_777777_256x240.png │ ├── ui-icons_cc0000_256x240.png │ └── ui-icons_ffffff_256x240.png ├── img │ ├── ataaka.png │ ├── avatar-bpjs.png │ ├── bootstrap.png │ ├── cerulean.png │ ├── cosmo.png │ ├── cyborg.png │ ├── darkly.png │ ├── flatly.png │ ├── icon-about.png │ ├── icon-apotek.png │ ├── icon-bantuan.png │ ├── icon-beranda.png │ ├── icon-home.png │ ├── icon-hospital.png │ ├── icon-igd.png │ ├── icon-informasi.png │ ├── icon-laboratorium.png │ ├── icon-modul.png │ ├── icon-pasien.png │ ├── icon-radiologi.png │ ├── icon-ralan.png │ ├── icon-ranap.png │ ├── journal.png │ ├── loader.gif │ ├── loading.gif │ ├── lokalis.jpeg │ ├── lumen.png │ ├── mlite.png │ ├── paper.png │ ├── readable.png │ ├── sandstone.png │ ├── simplex.png │ ├── sketchy.png │ ├── slate.png │ ├── spacelab.png │ ├── superhero.png │ ├── united.png │ └── yeti.png ├── jscripts │ ├── Chart.bundle.min.js │ ├── are-you-sure.min.js │ ├── bootbox.min.js │ ├── bootstrap-colorpicker.js │ ├── bootstrap-datetimepicker.js │ ├── bootstrap.min.js │ ├── dataTables.bootstrap.min.js │ ├── datatables.min.js │ ├── editor │ │ ├── highlight.min.js │ │ ├── images │ │ │ ├── bold.png │ │ │ ├── clean.png │ │ │ ├── code.png │ │ │ ├── h1.png │ │ │ ├── h2.png │ │ │ ├── h3.png │ │ │ ├── handle.png │ │ │ ├── image.png │ │ │ ├── italic.png │ │ │ ├── link.png │ │ │ ├── list-bullet.png │ │ │ ├── list-item.png │ │ │ ├── list-numeric.png │ │ │ ├── menu.png │ │ │ ├── paragraph.png │ │ │ ├── picture.png │ │ │ ├── quotes.png │ │ │ ├── stroke.png │ │ │ └── submenu.png │ │ ├── markitup.highlight.min.css │ │ ├── markitup.highlight.min.js │ │ ├── markitup.min.css │ │ ├── markitup.min.js │ │ └── sets │ │ │ ├── html │ │ │ ├── set.min.css │ │ │ └── set.min.js │ │ │ └── markdown │ │ │ ├── set.min.css │ │ │ └── set.min.js │ ├── html.sortable.min.js │ ├── jquery-ui.js │ ├── jquery.confirm.js │ ├── jquery.contextMenu.min.js │ ├── jquery.dataTables.min.js │ ├── jquery.keypad.js │ ├── jquery.min.js │ ├── jquery.qrcode.js │ ├── jquery.timepicker.js │ ├── jqueryvalidation.js │ ├── jspdf.min.js │ ├── jspdf.plugin.autotable.min.js │ ├── lightbox │ │ ├── lightbox.min.css │ │ └── lightbox.min.js │ ├── moment-with-locales.js │ ├── qrcode.js │ ├── responsivevoice.js │ ├── tinynav.min.js │ ├── wysiwyg │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ ├── lang │ │ │ └── id_indonesian.js │ │ ├── summernote.min.css │ │ └── summernote.min.js │ └── xlsx.js ├── sound │ ├── alarm.mp3 │ ├── error.mp3 │ └── success.mp3 └── svg │ ├── doc.svg │ ├── docx.svg │ ├── gif.svg │ ├── jpeg.svg │ ├── jpg.svg │ ├── pdf.svg │ ├── png.svg │ ├── xls.svg │ └── xlsx.svg ├── composer.json ├── config.php ├── docker ├── db │ └── .gitkeep ├── docker-compose.yml ├── mysql │ └── .gitkeep ├── nginx │ └── default.conf └── php │ ├── Dockerfile │ └── php.ini ├── docs └── index.md ├── favicon.png ├── index.php ├── manifest.json ├── mlite_db.sql ├── mlite_only.sql ├── plugins ├── adime_gizi │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── afm │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── Site.php │ ├── js │ │ └── admin │ │ │ └── notifikasi.js │ └── view │ │ ├── admin │ │ └── settings.html │ │ └── index.html ├── anjungan │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── Site.php │ ├── css │ │ ├── bootstrap.min.css │ │ ├── gijgo.min.css │ │ ├── jquery-ui.min.css │ │ └── keyboard.css │ ├── fonts │ │ ├── gijgo-material.eot │ │ ├── gijgo-material.svg │ │ ├── gijgo-material.ttf │ │ └── gijgo-material.woff │ ├── js │ │ ├── antrian.js │ │ ├── bootstrap.min.js │ │ ├── gijgo.min.js │ │ ├── jquery-latest-slim.min.js │ │ ├── jquery-ui-custom.min.js │ │ ├── jquery.keyboard.js │ │ ├── jquery.min.js │ │ ├── jquery.mousewheel.js │ │ └── popper.min.js │ ├── suara │ │ ├── 1.wav │ │ ├── 2.wav │ │ ├── 3.wav │ │ ├── 4.wav │ │ ├── 5.wav │ │ ├── 6.wav │ │ ├── 7.wav │ │ ├── 8.wav │ │ ├── 9.wav │ │ ├── a.wav │ │ ├── antrian.wav │ │ ├── b.wav │ │ ├── belas.wav │ │ ├── c.wav │ │ ├── counter.wav │ │ ├── d.wav │ │ ├── delapan.wav │ │ ├── dua.wav │ │ ├── e.wav │ │ ├── empat.wav │ │ ├── enam.wav │ │ ├── f.wav │ │ ├── g.wav │ │ ├── h.wav │ │ ├── i.wav │ │ ├── j.wav │ │ ├── k.wav │ │ ├── l.wav │ │ ├── lima.wav │ │ ├── nol.wav │ │ ├── notification.wav │ │ ├── puluh.wav │ │ ├── ratus.wav │ │ ├── satu.wav │ │ ├── sebelas.wav │ │ ├── sembilan.wav │ │ ├── sepuluh.wav │ │ ├── seratus.wav │ │ ├── tiga.wav │ │ └── tujuh.wav │ └── view │ │ ├── admin │ │ ├── index.html │ │ ├── manage.html │ │ ├── pemanggil.html │ │ └── settings.html │ │ ├── cetak.sep.html │ │ ├── checkin.html │ │ ├── daftar.html │ │ ├── display.antrian.apotek.ambil.html │ │ ├── display.antrian.apotek.html │ │ ├── display.antrian.html │ │ ├── display.antrian.laboratorium.html │ │ ├── display.antrian.loket.html │ │ ├── display.antrian.loket2.html │ │ ├── display.antrian.poli.display.html │ │ ├── display.antrian.poli.displaytv.html │ │ ├── display.antrian.poli.html │ │ ├── display.antrian.poli.kode.html │ │ ├── display.antrian.poli.tvb.html │ │ ├── display.bed.html │ │ ├── display.jadwal.operasi.html │ │ ├── index.html │ │ ├── presensi.html │ │ ├── rincian.eresep.html │ │ ├── sep.mandiri.bikin.html │ │ ├── sep.mandiri.html │ │ └── sep.mandiri.noka.norm.html ├── api │ ├── Admin.php │ ├── Info.php │ ├── Site.php │ ├── email │ │ └── apam.welcome.html │ ├── js │ │ └── admin │ │ │ └── notifikasi.js │ └── view │ │ ├── admin │ │ ├── manage.html │ │ ├── notifikasi.display.html │ │ ├── notifikasi.form.html │ │ ├── notifikasi.html │ │ ├── payment.duitku.html │ │ ├── settings.apam.html │ │ └── settings.key.html │ │ └── index.html ├── apotek_ralan │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── apotek_ralan.js │ └── view │ │ └── admin │ │ ├── cetak.eresep.html │ │ ├── cetak.etiket.html │ │ ├── display.html │ │ ├── form.rincian.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── racikan.html │ │ └── rincian.html ├── apotek_ranap │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── apotek_ranap.js │ └── view │ │ └── admin │ │ ├── cetak.eresep.html │ │ ├── cetak.etiket.html │ │ ├── display.html │ │ ├── form.rincian.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── racikan.html │ │ └── rincian.html ├── bridging_hfis │ ├── Admin.php │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── jadwal.dokter.html │ │ ├── jadwal.hfis.html │ │ ├── manage.html │ │ └── update.hfis.html ├── darurat_stok │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── dashboard │ ├── Admin.php │ ├── Info.php │ ├── Site.php │ ├── audio │ │ ├── shutter.mp3 │ │ └── shutter.ogg │ ├── css │ │ └── admin │ │ │ └── dashboard.css │ ├── js │ │ └── admin │ │ │ ├── dashboard.js │ │ │ └── webcam.js │ └── view │ │ ├── admin │ │ ├── dashboard.html │ │ └── main.html │ │ └── main.html ├── detail_pemberian_obat │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── dokter_igd │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── dokter_igd.css │ ├── img │ │ ├── L.png │ │ ├── P.png │ │ └── default.png │ ├── js │ │ └── admin │ │ │ └── dokter_igd.js │ └── view │ │ └── admin │ │ ├── copyresep.display.html │ │ ├── details.html │ │ ├── display.html │ │ ├── eresep.html │ │ ├── form.kontrol.html │ │ ├── form.rincian.html │ │ ├── form.soap.html │ │ ├── kontrol.html │ │ ├── laboratorium.html │ │ ├── layanan.html │ │ ├── lokalis.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── obat.racikan.html │ │ ├── pasien.html │ │ ├── racikan.html │ │ ├── radiologi.html │ │ ├── rincian.eresep.html │ │ ├── rincian.html │ │ └── soap.html ├── dokter_ralan │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── dokter_ralan.css │ ├── img │ │ ├── Akar.png │ │ ├── Erupsi.png │ │ ├── Goyang.png │ │ ├── Karies.png │ │ ├── L.png │ │ ├── P.png │ │ ├── Tanggal.png │ │ ├── Tumpat.png │ │ ├── anterior.png │ │ ├── default.png │ │ └── posterior.png │ ├── js │ │ └── admin │ │ │ └── dokter_ralan.js │ └── view │ │ └── admin │ │ ├── copyresep.display.html │ │ ├── details.html │ │ ├── display.html │ │ ├── eresep.html │ │ ├── form.kontrol.html │ │ ├── form.rincian.html │ │ ├── form.soap.html │ │ ├── index.html │ │ ├── kontrol.html │ │ ├── laboratorium.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── medis.ralan.html │ │ ├── medis.ralan.tampil.html │ │ ├── obat.html │ │ ├── obat.racikan.html │ │ ├── odontogram.html │ │ ├── odontogram.tampil.html │ │ ├── ohis.tampil.html │ │ ├── pasien.html │ │ ├── racikan.html │ │ ├── radiologi.html │ │ ├── resume.html │ │ ├── resume.tampil.html │ │ ├── rincian.eresep.html │ │ ├── rincian.html │ │ ├── settings.html │ │ ├── soap.html │ │ ├── surat.rujukan.html │ │ ├── surat.sakit.html │ │ └── surat.sehat.html ├── dokter_ranap │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── dokter_ranap.js │ └── view │ │ └── admin │ │ ├── copyresep.display.html │ │ ├── details.html │ │ ├── display.html │ │ ├── form.kontrol.html │ │ ├── form.rincian.html │ │ ├── form.soap.html │ │ ├── kontrol.html │ │ ├── laboratorium.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── obat.racikan.html │ │ ├── pasien.html │ │ ├── racikan.html │ │ ├── radiologi.html │ │ ├── resume.html │ │ ├── resume.tampil.html │ │ ├── rincian.html │ │ └── soap.html ├── farmasi │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── farmasi.css │ ├── js │ │ └── admin │ │ │ └── farmasi.js │ └── view │ │ └── admin │ │ ├── manage.html │ │ ├── mutasi.html │ │ ├── opname.data.html │ │ ├── opname.html │ │ └── settings.html ├── grafik_fenton │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ ├── main.css │ │ │ ├── main.css.map │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ ├── main.js │ │ │ ├── main.js.map │ │ │ ├── runtime.js │ │ │ ├── runtime.js.map │ │ │ ├── scripts.js │ │ │ ├── vendors.js │ │ │ └── vendors.js.map │ └── view │ │ └── admin │ │ ├── detail.html │ │ ├── grafik.html │ │ └── manage.html ├── icare │ ├── Admin.php │ ├── Info.php │ └── view │ │ └── admin │ │ ├── manage.html │ │ └── riwayat.html ├── icd_10 │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ ├── display.html │ │ └── manage.html ├── icd_9 │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ ├── display.html │ │ └── manage.html ├── igd │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── igd.js │ └── view │ │ └── admin │ │ ├── antrian.html │ │ ├── berkasdigital.html │ │ ├── cetak.igd.html │ │ ├── display.html │ │ ├── form.berkasdigital.html │ │ ├── form.html │ │ ├── form.rincian.html │ │ ├── form.soap.html │ │ ├── layanan.html │ │ ├── lokalis.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── pasien.html │ │ ├── persetujuan.umum.html │ │ ├── rincian.html │ │ ├── sep.detail.html │ │ ├── soap.html │ │ ├── stts.daftar.html │ │ ├── surat.rujukan.html │ │ ├── surat.sakit.html │ │ └── surat.sehat.html ├── inventaris │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── inventaris.css │ ├── js │ │ └── admin │ │ │ └── inventaris.js │ └── view │ │ └── admin │ │ ├── data.aset.html │ │ ├── data.barang.html │ │ ├── data.jenis.html │ │ ├── data.kategori.html │ │ ├── data.merk.html │ │ ├── data.pemeliharaan.html │ │ ├── data.peminjaman.html │ │ ├── data.permintaan.perbaikan.detail.html │ │ ├── data.permintaan.perbaikan.html │ │ ├── data.produsen.html │ │ ├── data.ruang.html │ │ ├── form.pemeliharaan.html │ │ ├── form.perbaikan.html │ │ ├── form.permintaan.perbaikan.html │ │ └── manage.html ├── jam_masuk │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── jasa_medis_dokter │ ├── Admin.php │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ └── manage.html ├── jasa_medis_perawat │ ├── Admin.php │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ └── manage.html ├── jkn_mobile │ ├── Admin.php │ ├── Info.php │ ├── Site.php │ ├── css │ │ ├── hightlightjs-dark.css │ │ └── style.css │ ├── img │ │ └── logo.png │ ├── js │ │ ├── admin │ │ │ └── jkn_mobile.js │ │ └── scripts.js │ └── view │ │ ├── admin │ │ ├── antrol.display.html │ │ ├── antrol.html │ │ ├── antrollocal.html │ │ ├── batalantrol.html │ │ ├── bookingantrol.html │ │ ├── form.mappingdokter.html │ │ ├── form.mappingpoli.html │ │ ├── form.onsite.html │ │ ├── hapusantrol.html │ │ ├── index.html │ │ ├── jadwaldokter.html │ │ ├── logtaskid.html │ │ ├── manage.html │ │ ├── manage.qurate.html │ │ ├── mappingdokter.html │ │ ├── mappingpoli.html │ │ ├── ref.html │ │ ├── settings.html │ │ ├── taskid.html │ │ └── taskid.input.html │ │ ├── display.html │ │ ├── displayoperasi.html │ │ └── index.html ├── jkn_mobile_fktp │ ├── Admin.php │ ├── Info.php │ ├── Site.php │ ├── css │ │ ├── hightlightjs-dark.css │ │ └── style.css │ ├── img │ │ └── logo.png │ ├── js │ │ ├── admin │ │ │ ├── mappingdokter.js │ │ │ └── mappingpoli.js │ │ └── scripts.js │ └── view │ │ ├── admin │ │ ├── index.html │ │ ├── manage.html │ │ ├── mappingdokter.display.html │ │ ├── mappingdokter.form.html │ │ ├── mappingdokter.html │ │ ├── mappingpoli.display.html │ │ ├── mappingpoli.form.html │ │ ├── mappingpoli.html │ │ └── settings.html │ │ ├── antrian.html │ │ ├── display.html │ │ └── index.html ├── kasir_rawat_inap │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── email │ │ └── email.send.html │ ├── js │ │ └── admin │ │ │ └── kasir_rawat_inap.js │ └── view │ │ └── admin │ │ ├── billing.besar.html │ │ ├── billing.kecil.html │ │ ├── display.html │ │ ├── form.rincian.html │ │ ├── laboratorium.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── radiologi.html │ │ ├── rincian.html │ │ └── tambahan_biaya.html ├── kasir_rawat_jalan │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── email │ │ └── email.send.html │ ├── js │ │ └── admin │ │ │ └── kasir_rawat_jalan.js │ └── view │ │ └── admin │ │ ├── billing.besar.html │ │ ├── billing.kecil.html │ │ ├── display.html │ │ ├── form.rincian.html │ │ ├── laboratorium.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── radiologi.html │ │ └── rincian.html ├── kepegawaian │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── kepegawaian.css │ ├── img │ │ └── default.png │ ├── js │ │ └── admin │ │ │ └── kepegawaian.js │ └── view │ │ └── admin │ │ ├── cetak.pegawai.html │ │ ├── form.html │ │ ├── index.html │ │ ├── manage.html │ │ └── view.html ├── keuangan │ ├── Admin.php │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── akunrekening.js │ ├── src │ │ └── Akunrekening.php │ └── view │ │ └── admin │ │ ├── akunrekening.display.html │ │ ├── akunrekening.form.html │ │ ├── akunrekening.html │ │ ├── blank.html │ │ ├── buku.besar.html │ │ ├── buku.besar.print.html │ │ ├── cash.flow.html │ │ ├── cash.flow.print.html │ │ ├── jurnal.harian.html │ │ ├── jurnal.harian.print.html │ │ ├── manage.html │ │ ├── neraca.html │ │ ├── pengaturan.rekening.html │ │ ├── posting.jurnal.html │ │ ├── rekening.tahun.html │ │ └── settings.html ├── laboratorium │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── email │ │ └── email.send.html │ ├── js │ │ └── admin │ │ │ └── laboratorium.js │ └── view │ │ └── admin │ │ ├── antrian.html │ │ ├── cetakhasil.html │ │ ├── cetakpermintaan.html │ │ ├── details.html │ │ ├── display.html │ │ ├── form.html │ │ ├── form.rincian.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── pasien.html │ │ ├── rincian.html │ │ └── stts.daftar.html ├── laporan_bpjs │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── log_antrian_taskid │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ ├── datatables.min.css │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ ├── datatables.min.js │ │ │ ├── jqueryvalidation.js │ │ │ ├── jspdf.min.js │ │ │ ├── jspdf.plugin.autotable.min.js │ │ │ ├── scripts.js │ │ │ └── xlsx.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── manajemen │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── style.css │ └── view │ │ └── admin │ │ ├── apotek.html │ │ ├── dokter.html │ │ ├── farmasi.html │ │ ├── kasir.html │ │ ├── laboratorium.html │ │ ├── manage.html │ │ ├── pendaftaran.html │ │ ├── presensi.html │ │ ├── radiologi.html │ │ ├── rawatinap.html │ │ ├── rawatjalan.html │ │ └── settings.html ├── master │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── master.css │ ├── js │ │ └── admin │ │ │ ├── bahasa.js │ │ │ ├── bangsal.js │ │ │ ├── bank.js │ │ │ ├── bidang.js │ │ │ ├── cacat.js │ │ │ ├── databarang.js │ │ │ ├── departemen.js │ │ │ ├── dokter.js │ │ │ ├── emergencyindex.js │ │ │ ├── golonganbarang.js │ │ │ ├── industrifarmasi.js │ │ │ ├── jabatan.js │ │ │ ├── jenis.js │ │ │ ├── jenjangjabatan.js │ │ │ ├── jnsperawatan.js │ │ │ ├── jnsperawataninap.js │ │ │ ├── jnsperawatanlab.js │ │ │ ├── jnsperawatanradiologi.js │ │ │ ├── kabupaten.js │ │ │ ├── kamar.js │ │ │ ├── kategoribarang.js │ │ │ ├── kategoripenyakit.js │ │ │ ├── kategoriperawatan.js │ │ │ ├── kecamatan.js │ │ │ ├── kelompokjabatan.js │ │ │ ├── kelurahan.js │ │ │ ├── kodesatuan.js │ │ │ ├── master.js │ │ │ ├── masteraturanpakai.js │ │ │ ├── masterberkasdigital.js │ │ │ ├── metoderacik.js │ │ │ ├── pendidikan.js │ │ │ ├── penjab.js │ │ │ ├── perusahaan.js │ │ │ ├── petugas.js │ │ │ ├── poliklinik.js │ │ │ ├── propinsi.js │ │ │ ├── resikokerja.js │ │ │ ├── ruangok.js │ │ │ ├── spesialis.js │ │ │ ├── statuskerja.js │ │ │ ├── statuswp.js │ │ │ └── suku.js │ ├── src │ │ ├── Bahasa.php │ │ ├── Bangsal.php │ │ ├── Bank.php │ │ ├── Bidang.php │ │ ├── Cacat.php │ │ ├── DataBarang.php │ │ ├── Departemen.php │ │ ├── Dokter.php │ │ ├── EmergencyIndex.php │ │ ├── GolonganBarang.php │ │ ├── IndustriFarmasi.php │ │ ├── Jabatan.php │ │ ├── Jenis.php │ │ ├── JenjangJabatan.php │ │ ├── JnsPerawatan.php │ │ ├── JnsPerawatanInap.php │ │ ├── JnsPerawatanLab.php │ │ ├── JnsPerawatanRadiologi.php │ │ ├── Kabupaten.php │ │ ├── Kamar.php │ │ ├── KategoriBarang.php │ │ ├── KategoriPenyakit.php │ │ ├── KategoriPerawatan.php │ │ ├── Kecamatan.php │ │ ├── KelompokJabatan.php │ │ ├── Kelurahan.php │ │ ├── KodeSatuan.php │ │ ├── MasterAturanPakai.php │ │ ├── MasterBerkasDigital.php │ │ ├── MetodeRacik.php │ │ ├── Pendidikan.php │ │ ├── Penjab.php │ │ ├── Perusahaan.php │ │ ├── Petugas.php │ │ ├── Poliklinik.php │ │ ├── Propinsi.php │ │ ├── ResikoKerja.php │ │ ├── RuangOk.php │ │ ├── Spesialis.php │ │ ├── StatusKerja.php │ │ ├── StatusWP.php │ │ └── Suku.php │ └── view │ │ └── admin │ │ ├── bahasa.display.html │ │ ├── bahasa.form.html │ │ ├── bahasa.html │ │ ├── bangsal.display.html │ │ ├── bangsal.form.html │ │ ├── bangsal.html │ │ ├── bank.display.html │ │ ├── bank.form.html │ │ ├── bank.html │ │ ├── bidang.display.html │ │ ├── bidang.form.html │ │ ├── bidang.html │ │ ├── cacat.display.html │ │ ├── cacat.form.html │ │ ├── cacat.html │ │ ├── databarang.display.html │ │ ├── databarang.form.html │ │ ├── databarang.html │ │ ├── departemen.display.html │ │ ├── departemen.form.html │ │ ├── departemen.html │ │ ├── dokter.display.html │ │ ├── dokter.form.html │ │ ├── dokter.html │ │ ├── emergencyindex.display.html │ │ ├── emergencyindex.form.html │ │ ├── emergencyindex.html │ │ ├── golonganbarang.display.html │ │ ├── golonganbarang.form.html │ │ ├── golonganbarang.html │ │ ├── industrifarmasi.display.html │ │ ├── industrifarmasi.form.html │ │ ├── industrifarmasi.html │ │ ├── jabatan.display.html │ │ ├── jabatan.form.html │ │ ├── jabatan.html │ │ ├── jenis.display.html │ │ ├── jenis.form.html │ │ ├── jenis.html │ │ ├── jenjangjabatan.display.html │ │ ├── jenjangjabatan.form.html │ │ ├── jenjangjabatan.html │ │ ├── jnsperawatan.display.html │ │ ├── jnsperawatan.form.html │ │ ├── jnsperawatan.html │ │ ├── jnsperawataninap.display.html │ │ ├── jnsperawataninap.form.html │ │ ├── jnsperawataninap.html │ │ ├── jnsperawatanlab.display.html │ │ ├── jnsperawatanlab.form.html │ │ ├── jnsperawatanlab.html │ │ ├── jnsperawatanlab.template.form.html │ │ ├── jnsperawatanlab.template.html │ │ ├── jnsperawatanradiologi.display.html │ │ ├── jnsperawatanradiologi.form.html │ │ ├── jnsperawatanradiologi.html │ │ ├── kabupaten.display.html │ │ ├── kabupaten.form.html │ │ ├── kabupaten.html │ │ ├── kamar.display.html │ │ ├── kamar.form.html │ │ ├── kamar.html │ │ ├── kategoribarang.display.html │ │ ├── kategoribarang.form.html │ │ ├── kategoribarang.html │ │ ├── kategoripenyakit.display.html │ │ ├── kategoripenyakit.form.html │ │ ├── kategoripenyakit.html │ │ ├── kategoriperawatan.display.html │ │ ├── kategoriperawatan.form.html │ │ ├── kategoriperawatan.html │ │ ├── kecamatan.display.html │ │ ├── kecamatan.form.html │ │ ├── kecamatan.html │ │ ├── kelompokjabatan.display.html │ │ ├── kelompokjabatan.form.html │ │ ├── kelompokjabatan.html │ │ ├── kelurahan.display.html │ │ ├── kelurahan.form.html │ │ ├── kelurahan.html │ │ ├── kodesatuan.display.html │ │ ├── kodesatuan.form.html │ │ ├── kodesatuan.html │ │ ├── manage.html │ │ ├── masteraturanpakai.display.html │ │ ├── masteraturanpakai.form.html │ │ ├── masteraturanpakai.html │ │ ├── masterberkasdigital.display.html │ │ ├── masterberkasdigital.form.html │ │ ├── masterberkasdigital.html │ │ ├── metoderacik.display.html │ │ ├── metoderacik.form.html │ │ ├── metoderacik.html │ │ ├── pendidikan.display.html │ │ ├── pendidikan.form.html │ │ ├── pendidikan.html │ │ ├── penjab.display.html │ │ ├── penjab.form.html │ │ ├── penjab.html │ │ ├── perusahaan.display.html │ │ ├── perusahaan.form.html │ │ ├── perusahaan.html │ │ ├── petugas.display.html │ │ ├── petugas.form.html │ │ ├── petugas.html │ │ ├── poliklinik.display.html │ │ ├── poliklinik.form.html │ │ ├── poliklinik.html │ │ ├── propinsi.display.html │ │ ├── propinsi.form.html │ │ ├── propinsi.html │ │ ├── resiko.kerja.display.html │ │ ├── resiko.kerja.form.html │ │ ├── resiko.kerja.html │ │ ├── ruangok.display.html │ │ ├── ruangok.form.html │ │ ├── ruangok.html │ │ ├── spesialis.display.html │ │ ├── spesialis.form.html │ │ ├── spesialis.html │ │ ├── status.kerja.display.html │ │ ├── status.kerja.form.html │ │ ├── status.kerja.html │ │ ├── status.wp.display.html │ │ ├── status.wp.form.html │ │ ├── status.wp.html │ │ ├── suku.display.html │ │ ├── suku.form.html │ │ └── suku.html ├── modules │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ └── view │ │ └── admin │ │ ├── details.html │ │ ├── help.html │ │ ├── manage.html │ │ └── upload.html ├── operasi │ ├── Admin.php │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── operasi.js │ └── view │ │ └── admin │ │ ├── bookingoperasi.html │ │ ├── display.html │ │ ├── form.berkasdigital.html │ │ ├── form.html │ │ ├── form.rincian.html │ │ ├── laporanoperasi.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── obatoperasi.html │ │ ├── paketoperasi.html │ │ ├── pasien.html │ │ ├── pasienoperasi.html │ │ └── rincian.html ├── oral_diagnostic │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── oral_diagnostic.js │ └── view │ │ └── admin │ │ ├── antrian.html │ │ ├── berkasdigital.html │ │ ├── cetak.oral_diagnostic.html │ │ ├── display.html │ │ ├── form.berkasdigital.html │ │ ├── form.html │ │ ├── form.rincian.html │ │ ├── form.soap.html │ │ ├── layanan.html │ │ ├── lokalis.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── pasien.html │ │ ├── persetujuan.umum.html │ │ ├── rincian.html │ │ ├── sep.detail.html │ │ ├── soap.html │ │ ├── stts.daftar.html │ │ ├── surat.rujukan.html │ │ ├── surat.sakit.html │ │ └── surat.sehat.html ├── orthanc │ ├── Admin.php │ ├── Info.php │ └── view │ │ └── admin │ │ ├── orthanc.html │ │ └── settings.html ├── pasien │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── audio │ │ ├── shutter.mp3 │ │ └── shutter.ogg │ ├── img │ │ ├── L.png │ │ ├── P.png │ │ └── default.png │ ├── js │ │ └── admin │ │ │ └── pasien.js │ └── view │ │ └── admin │ │ ├── cetak.pasien.html │ │ ├── display.html │ │ ├── folder.html │ │ ├── form.html │ │ ├── kartu.html │ │ ├── manage.html │ │ ├── pasien.export.pdf.html │ │ ├── pcare.bynik.html │ │ ├── pcare.bynokartu.html │ │ ├── riwayat.perawatan.html │ │ ├── settings.html │ │ ├── uploadphoto.html │ │ ├── vclaim.bynik.html │ │ └── vclaim.bynokartu.html ├── pcare │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── ReadMe.md │ ├── images │ │ └── bpjslogo.png │ └── view │ │ └── admin │ │ ├── alergi.html │ │ ├── bridgingpcare.html │ │ ├── bridgingpcare.kunjungan.tampil.html │ │ ├── bridgingpcare.obat.html │ │ ├── bridgingpcare.pendaftaran.tampil.html │ │ ├── bridgingpcare.rujukan.cetak.html │ │ ├── bridgingpcare.rujukan.tampil.html │ │ ├── bridgingpcare.tindakan.html │ │ ├── diagnosa.html │ │ ├── dokter.html │ │ ├── kelompok.html │ │ ├── kesadaran.html │ │ ├── kunjungan.html │ │ ├── manage.html │ │ ├── menu.html │ │ ├── obat.html │ │ ├── pendaftaran.html │ │ ├── pendaftaranpcare.html │ │ ├── peserta.html │ │ ├── poli.html │ │ ├── prognosa.html │ │ ├── provider.html │ │ ├── settings.html │ │ ├── spesialis.html │ │ ├── status.pulang.html │ │ └── tindakan.html ├── penilaian_keperawatan_gigi │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── penilaian_keperawatan_ralan │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── penilaian_keperawatan_ranap │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── penilaian_medis_igd │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── penilaian_medis_ralan │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── penilaian_medis_ranap │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── penilaian_ulang_nyeri │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── penjualan │ ├── Admin.php │ ├── Info.php │ └── view │ │ └── admin │ │ ├── barang.html │ │ ├── billing.besar.html │ │ ├── billing.kecil.html │ │ ├── form.rincian.penjualan.html │ │ ├── index.html │ │ ├── manage.html │ │ ├── order.html │ │ └── rincian.penjualan.html ├── peta_mukosa_rongga_mulut │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── presensi │ ├── Admin.php │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── app.js │ └── view │ │ └── admin │ │ ├── barcode.form.html │ │ ├── barcode.manage.html │ │ ├── google_map.html │ │ ├── index.html │ │ ├── jadwal.form.html │ │ ├── jadwal.manage.html │ │ ├── jadwal_tambah.form.html │ │ ├── jadwal_tambah.manage.html │ │ ├── jagaadd.form.html │ │ ├── manage.html │ │ ├── presensi.html │ │ ├── rekap_presensi.html │ │ └── settings.html ├── profil │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── timeline.min.css │ ├── img │ │ └── default.png │ ├── js │ │ └── admin │ │ │ ├── app.js │ │ │ └── timeline.min.js │ └── view │ │ └── admin │ │ ├── biodata.html │ │ ├── ganti_pass.html │ │ ├── google_map.html │ │ ├── jadwal.manage.html │ │ ├── manage.html │ │ ├── presensi.html │ │ └── rekap_presensi.html ├── radiologi │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── email │ │ └── email.send.html │ ├── js │ │ └── admin │ │ │ └── radiologi.js │ └── view │ │ └── admin │ │ ├── antrian.html │ │ ├── cetakhasil.html │ │ ├── cetakpermintaan.html │ │ ├── display.html │ │ ├── form.html │ │ ├── form.rincian.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── pasien.html │ │ ├── rincian.html │ │ └── stts.daftar.html ├── rawat_inap │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── js │ │ └── admin │ │ │ └── rawat_inap.js │ └── view │ │ └── admin │ │ ├── berkasdigital.html │ │ ├── display.html │ │ ├── form.berkasdigital.html │ │ ├── form.html │ │ ├── form.kontrol.html │ │ ├── form.rincian.html │ │ ├── form.soap.html │ │ ├── kontrol.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── obat.html │ │ ├── pasien.html │ │ ├── persetujuan.umum.html │ │ ├── rincian.html │ │ ├── sep.detail.html │ │ ├── soap.html │ │ ├── stts.daftar.html │ │ ├── surat.rujukan.html │ │ ├── surat.sakit.html │ │ └── surat.sehat.html ├── rawat_jalan │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── images │ │ ├── Akar.png │ │ ├── Erupsi.png │ │ ├── Goyang.png │ │ ├── Karies.png │ │ ├── Tanggal.png │ │ ├── Tumpat.png │ │ ├── anterior.png │ │ └── posterior.png │ ├── js │ │ └── admin │ │ │ └── rawat_jalan.js │ └── view │ │ └── admin │ │ ├── antrian.html │ │ ├── berkasdigital.html │ │ ├── booking.html │ │ ├── booking.periksa.html │ │ ├── cetak.rawat_jalan.html │ │ ├── display.html │ │ ├── form.berkasdigital.html │ │ ├── form.html │ │ ├── form.kontrol.html │ │ ├── form.rincian.html │ │ ├── form.soap.html │ │ ├── index.html │ │ ├── jadwal.form.html │ │ ├── jadwal.html │ │ ├── kontrol.html │ │ ├── layanan.html │ │ ├── manage.html │ │ ├── odontogram.html │ │ ├── odontogram.tampil.html │ │ ├── ohis.tampil.html │ │ ├── pasien.html │ │ ├── persetujuan.umum.html │ │ ├── rincian.html │ │ ├── sep.detail.html │ │ ├── soap.html │ │ ├── stts.daftar.html │ │ ├── surat.rujukan.html │ │ ├── surat.sakit.html │ │ └── surat.sehat.html ├── riwayat_barang_medis │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── satu_sehat │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── Kyc.php │ └── view │ │ └── admin │ │ ├── condition.html │ │ ├── departemen.html │ │ ├── encounter.html │ │ ├── kyc.html │ │ ├── lokasi.html │ │ ├── manage.html │ │ ├── mapping.praktisi.html │ │ ├── observation.html │ │ ├── pasien.html │ │ ├── praktisi.html │ │ ├── response.html │ │ └── settings.html ├── settings │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── Site.php │ ├── css │ │ └── admin │ │ │ └── settings.css │ ├── inc │ │ ├── Backup_Database.php │ │ ├── RecursiveDotFilterIterator.php │ │ └── Restore_Database.php │ └── view │ │ └── admin │ │ ├── backup.restore.html │ │ ├── cek.daftar.html │ │ ├── general.html │ │ ├── manage.html │ │ ├── theme.html │ │ ├── themes.html │ │ └── update.html ├── surat_rujukan │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ ├── manage.html │ │ └── surat.rujukan.html ├── surat_sakit │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ ├── manage.html │ │ └── surat.sakit.html ├── surat_sehat │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ ├── manage.html │ │ └── surat.sehat.html ├── triase │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── styles.css │ ├── js │ │ └── admin │ │ │ └── scripts.js │ └── view │ │ └── admin │ │ ├── detail.html │ │ └── manage.html ├── users │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── Site.php │ ├── css │ │ └── admin │ │ │ └── users.css │ ├── img │ │ └── default.png │ └── view │ │ ├── admin │ │ ├── form.html │ │ ├── index.html │ │ └── manage.html │ │ └── login.html ├── utd │ ├── Admin.php │ ├── Info.php │ ├── css │ │ └── admin │ │ │ └── utd.css │ ├── js │ │ └── admin │ │ │ └── utd.js │ └── view │ │ └── admin │ │ ├── cetak.utd.html │ │ ├── data.donor.html │ │ ├── data.pendonor.html │ │ ├── komponen.darah.html │ │ ├── manage.html │ │ └── stok.darah.html ├── vclaim │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── img │ │ ├── L.png │ │ ├── P.png │ │ ├── bpjslogo.png │ │ └── default.png │ └── view │ │ └── admin │ │ ├── add.antrian.html │ │ ├── cetak.sep.html │ │ ├── cetak.sep.internal.html │ │ ├── cetak.srb.html │ │ ├── dirujuk.html │ │ ├── dirujuk.tampil.html │ │ ├── form.sep.html │ │ ├── form.sepvclaim.html │ │ ├── kontrol.display.html │ │ ├── kontrol.html │ │ ├── lpk.html │ │ ├── manage.html │ │ ├── mappingdokter.html │ │ ├── mappingpoli.html │ │ ├── monitoring.html │ │ ├── peserta.html │ │ ├── prb.html │ │ ├── pulang.html │ │ ├── referensi.html │ │ ├── rencana.kontrol.html │ │ ├── rujukan.html │ │ ├── rujukan.modal.html │ │ ├── rujukkeluar.display.html │ │ ├── rujukkeluar.html │ │ ├── sep.html │ │ ├── spri.display.html │ │ ├── spri.html │ │ ├── srb.display.html │ │ ├── srb.html │ │ └── sync_sep.display.html ├── vedika │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── Site.php │ ├── css │ │ ├── admin │ │ │ └── styles.css │ │ └── styles.css │ ├── js │ │ ├── admin │ │ │ └── scripts.js │ │ └── scripts.js │ └── view │ │ ├── admin │ │ ├── berkasperawatan.html │ │ ├── bridging.eklaim.html │ │ ├── display.diagnosa.html │ │ ├── display.prosedur.html │ │ ├── display.resume.html │ │ ├── form.resume.html │ │ ├── form.resume.ranap.html │ │ ├── form.sepvclaim.html │ │ ├── inacbgs.html │ │ ├── index.html │ │ ├── lengkap.html │ │ ├── lengkap_excel.html │ │ ├── manage.html │ │ ├── mapping.inacbgs.html │ │ ├── pdf.html │ │ ├── pengajuan.html │ │ ├── pengajuan_excel.html │ │ ├── perbaikan.html │ │ ├── perbaikan_excel.html │ │ ├── setstatus.html │ │ ├── settings.html │ │ ├── ubah.diagnosa.html │ │ ├── ubah.prosedur.html │ │ ├── user.form.html │ │ └── users.html │ │ ├── catatan.html │ │ ├── index.html │ │ ├── login.html │ │ ├── pdf.html │ │ ├── pengajuan_ralan.html │ │ ├── pengajuan_ranap.html │ │ ├── perbaikan.html │ │ └── perbaikan_excel.html ├── veronisa │ ├── Admin.php │ ├── Info.php │ ├── Site.php │ ├── css │ │ ├── admin │ │ │ └── styles.css │ │ └── styles.css │ ├── js │ │ ├── admin │ │ │ └── scripts.js │ │ └── scripts.js │ └── view │ │ ├── admin │ │ ├── berkasperawatan.html │ │ ├── form.sepvclaim.html │ │ ├── index.html │ │ ├── manage.html │ │ ├── pdf.html │ │ ├── setstatus.html │ │ └── settings.html │ │ ├── catatan.html │ │ ├── index.html │ │ ├── login.html │ │ └── pdf.html ├── wagateway │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── images │ │ └── waiting.jpg │ └── view │ │ └── admin │ │ ├── manage.html │ │ ├── send.file.html │ │ ├── send.image.html │ │ ├── send.message.html │ │ └── settings.html └── website │ ├── Admin.php │ ├── Help.md │ ├── Info.php │ ├── Site.php │ ├── css │ ├── admin │ │ └── website.css │ └── style.css │ ├── img │ ├── about_03.jpg │ ├── clinic_01.jpg │ ├── clinic_02.jpg │ ├── clinic_03.jpg │ ├── default.jpg │ ├── indicator.gif │ ├── loaders │ │ └── heart-loading2.gif │ ├── logo-icon.png │ ├── logo.png │ ├── prettyPhoto │ │ ├── dark_rounded │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── contentPattern.png │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ ├── dark_square │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ ├── default │ │ │ ├── default_thumb.png │ │ │ ├── loader.gif │ │ │ ├── sprite.png │ │ │ ├── sprite_next.png │ │ │ ├── sprite_prev.png │ │ │ ├── sprite_x.png │ │ │ └── sprite_y.png │ │ ├── facebook │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── contentPatternBottom.png │ │ │ ├── contentPatternLeft.png │ │ │ ├── contentPatternRight.png │ │ │ ├── contentPatternTop.png │ │ │ ├── default_thumbnail.gif │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ ├── light_rounded │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ └── light_square │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ └── sprite.png │ ├── service-bg.jpg │ ├── service-icon1.png │ ├── service-icon2.png │ ├── service-icon3.png │ ├── service-icon4.png │ ├── service-icon5.png │ ├── service-icon6.png │ └── slider-bg.jpg │ ├── js │ ├── admin │ │ └── website.js │ ├── all.js │ ├── custom.js │ └── modernizer.js │ └── view │ ├── admin │ ├── form.html │ ├── manage.html │ ├── manage.news.html │ ├── settings.news.html │ └── settings.website.html │ ├── disqus.html │ └── feed.xml ├── robot.txt ├── service-worker.js ├── systems ├── Admin.php ├── AdminModule.php ├── BaseModule.php ├── Main.php ├── Site.php ├── SiteModule.php ├── data │ └── .gitkeep ├── functions.php ├── lib │ ├── Autoloader.php │ ├── BpjsService.php │ ├── Event.php │ ├── HttpRequest.php │ ├── Image.php │ ├── License.php │ ├── ModulesCollection.php │ ├── Pagination.php │ ├── Parsedown.php │ ├── PcareService.php │ ├── QRCode.php │ ├── QueryWrapper.php │ ├── Router.php │ ├── Settings.php │ └── Templates.php └── upgrade.php ├── themes ├── admin │ ├── css │ │ └── style.css │ ├── img │ │ ├── logo.png │ │ ├── unknown_theme.png │ │ └── wallpaper.jpg │ ├── index.html │ ├── js │ │ ├── kalypto.min.js │ │ ├── scripts.js │ │ └── selectator.js │ └── login.html └── default │ ├── canvas.html │ ├── css │ └── style.css │ ├── fullpage.html │ ├── homepage.html │ ├── inc │ ├── footer.html │ └── header.html │ ├── index.html │ ├── js │ └── theme.js │ ├── manifest.json │ ├── news.html │ ├── post.html │ └── preview.png └── workerman.php /.htaccess: -------------------------------------------------------------------------------- 1 | # Prevent directory listings 2 | Options -Indexes 3 | 4 | # Prevent visitors from viewing files directly 5 | 6 | 7 | Order allow,deny 8 | Deny from all 9 | Satisfy All 10 | 11 | 12 | Require all denied 13 | 14 | 15 | 16 | # URL rewrites 17 | 18 | RewriteEngine On 19 | RewriteRule ^(systems/|themes/|tmp/).*\.(php)$ - [F,L] 20 | RewriteCond %{REQUEST_FILENAME} !-f 21 | RewriteCond %{REQUEST_FILENAME} !-d 22 | RewriteRule ^ index.php [L] 23 | 24 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | | Version | Supported | 9 | | ------- | ------------------ | 10 | | 5.1.x | :white_check_mark: | 11 | | 5.0.x | :x: | 12 | | 4.0.x | :white_check_mark: | 13 | | < 4.0 | :x: | 14 | 15 | ## Reporting a Vulnerability 16 | 17 | Use this section to tell people how to report a vulnerability. 18 | 19 | Tell them where to go, how often they can expect to get an update on a 20 | reported vulnerability, what to expect if the vulnerability is accepted or 21 | declined, etc. 22 | -------------------------------------------------------------------------------- /admin/.htaccess: -------------------------------------------------------------------------------- 1 | # Prevent directory listings 2 | Options -Indexes 3 | 4 | # URL rewrites 5 | 6 | RewriteEngine On 7 | RewriteCond %{REQUEST_FILENAME} !-f 8 | RewriteCond %{REQUEST_FILENAME} !-d 9 | RewriteRule ^ index.php [L] 10 | -------------------------------------------------------------------------------- /assets/css/font-awesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome v4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | @import url('font-awesome-css.min.css'); 6 | /* FONT PATH 7 | * -------------------------- */ 8 | @font-face { 9 | font-family: 'FontAwesome'; 10 | src: url('../fonts/fontawesome-webfont.eot'); 11 | src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), 12 | url('../fonts/fontawesome-webfont.woff2') format('woff2'), 13 | url('../fonts/fontawesome-webfont.woff') format('woff'), 14 | url('../fonts/fontawesome-webfont.ttf') format('truetype'), 15 | url('../fonts/fontawesome-webfont.svg#fontawesomeregular') format('svg'); 16 | font-weight: normal; 17 | font-style: normal; 18 | } 19 | /* 20 | Embed code 56fa629212 21 | */ 22 | -------------------------------------------------------------------------------- /assets/css/jquery.keypad.css: -------------------------------------------------------------------------------- 1 | .keypad button { 2 | margin: 1%; 3 | width: 31%; 4 | height: 23%; 5 | background: #eee; 6 | border: 2px solid black; 7 | border-radius: 10px; 8 | font-size: 3em; 9 | } 10 | 11 | .keypad button.delete, 12 | .keypad button.submit { 13 | background: black; 14 | color: white; 15 | } -------------------------------------------------------------------------------- /assets/fonts/ComicNeue-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/ComicNeue-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/ComicNeue-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/ComicNeue-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/ComicNeue-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/ComicNeue-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/ComicNeue-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/ComicNeue-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/ComicNeue-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/ComicNeue-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/ComicNeue-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/ComicNeue-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RedactedScript-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/RedactedScript-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/RedactedScript-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/RedactedScript-Light.woff2 -------------------------------------------------------------------------------- /assets/fonts/RedactedScript-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/RedactedScript-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem5YaGs126MiZpBA-UN_r8OUuhpKKSTjw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem5YaGs126MiZpBA-UN_r8OUuhpKKSTjw.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem5YaGs126MiZpBA-UN_r8OXOhpKKSTj5PW.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem5YaGs126MiZpBA-UN_r8OXOhpKKSTj5PW.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem5YaGs126MiZpBA-UNirkOXOhpKKSTj5PW.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem5YaGs126MiZpBA-UNirkOXOhpKKSTj5PW.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2 -------------------------------------------------------------------------------- /assets/fonts/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/fonts/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2 -------------------------------------------------------------------------------- /assets/images/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/icon-128x128.png -------------------------------------------------------------------------------- /assets/images/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/icon-192x192.png -------------------------------------------------------------------------------- /assets/images/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/icon-256x256.png -------------------------------------------------------------------------------- /assets/images/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/icon-384x384.png -------------------------------------------------------------------------------- /assets/images/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/icon-512x512.png -------------------------------------------------------------------------------- /assets/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /assets/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /assets/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /assets/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /assets/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /assets/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /assets/img/ataaka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/ataaka.png -------------------------------------------------------------------------------- /assets/img/avatar-bpjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/avatar-bpjs.png -------------------------------------------------------------------------------- /assets/img/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/bootstrap.png -------------------------------------------------------------------------------- /assets/img/cerulean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/cerulean.png -------------------------------------------------------------------------------- /assets/img/cosmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/cosmo.png -------------------------------------------------------------------------------- /assets/img/cyborg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/cyborg.png -------------------------------------------------------------------------------- /assets/img/darkly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/darkly.png -------------------------------------------------------------------------------- /assets/img/flatly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/flatly.png -------------------------------------------------------------------------------- /assets/img/icon-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-about.png -------------------------------------------------------------------------------- /assets/img/icon-apotek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-apotek.png -------------------------------------------------------------------------------- /assets/img/icon-bantuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-bantuan.png -------------------------------------------------------------------------------- /assets/img/icon-beranda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-beranda.png -------------------------------------------------------------------------------- /assets/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-home.png -------------------------------------------------------------------------------- /assets/img/icon-hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-hospital.png -------------------------------------------------------------------------------- /assets/img/icon-igd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-igd.png -------------------------------------------------------------------------------- /assets/img/icon-informasi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-informasi.png -------------------------------------------------------------------------------- /assets/img/icon-laboratorium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-laboratorium.png -------------------------------------------------------------------------------- /assets/img/icon-modul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-modul.png -------------------------------------------------------------------------------- /assets/img/icon-pasien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-pasien.png -------------------------------------------------------------------------------- /assets/img/icon-radiologi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-radiologi.png -------------------------------------------------------------------------------- /assets/img/icon-ralan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-ralan.png -------------------------------------------------------------------------------- /assets/img/icon-ranap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/icon-ranap.png -------------------------------------------------------------------------------- /assets/img/journal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/journal.png -------------------------------------------------------------------------------- /assets/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/loader.gif -------------------------------------------------------------------------------- /assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/loading.gif -------------------------------------------------------------------------------- /assets/img/lokalis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/lokalis.jpeg -------------------------------------------------------------------------------- /assets/img/lumen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/lumen.png -------------------------------------------------------------------------------- /assets/img/mlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/mlite.png -------------------------------------------------------------------------------- /assets/img/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/paper.png -------------------------------------------------------------------------------- /assets/img/readable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/readable.png -------------------------------------------------------------------------------- /assets/img/sandstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/sandstone.png -------------------------------------------------------------------------------- /assets/img/simplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/simplex.png -------------------------------------------------------------------------------- /assets/img/sketchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/sketchy.png -------------------------------------------------------------------------------- /assets/img/slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/slate.png -------------------------------------------------------------------------------- /assets/img/spacelab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/spacelab.png -------------------------------------------------------------------------------- /assets/img/superhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/superhero.png -------------------------------------------------------------------------------- /assets/img/united.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/united.png -------------------------------------------------------------------------------- /assets/img/yeti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/img/yeti.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/bold.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/clean.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/code.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/h1.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/h2.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/h3.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/handle.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/image.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/italic.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/link.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/list-bullet.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/list-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/list-item.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/list-numeric.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/menu.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/paragraph.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/picture.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/quotes.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/stroke.png -------------------------------------------------------------------------------- /assets/jscripts/editor/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/editor/images/submenu.png -------------------------------------------------------------------------------- /assets/jscripts/editor/sets/markdown/set.min.css: -------------------------------------------------------------------------------- 1 | .markItUpSet-markdown .markItUpButton1 a{background-image:url(../../images/h1.png)}.markItUpSet-markdown .markItUpButton2 a{background-image:url(../../images/h2.png)}.markItUpSet-markdown .markItUpButton3 a{background-image:url(../../images/h3.png)}.markItUpSet-markdown .markItUpButton4 a{background-image:url(../../images/bold.png)}.markItUpSet-markdown .markItUpButton5 a{background-image:url(../../images/italic.png)}.markItUpSet-markdown .markItUpButton6 a{background-image:url(../../images/list-bullet.png)}.markItUpSet-markdown .markItUpButton7 a{background-image:url(../../images/list-numeric.png)}.markItUpSet-markdown .markItUpButton8 a{background-image:url(../../images/picture.png)}.markItUpSet-markdown .markItUpButton9 a{background-image:url(../../images/link.png)}.markItUpSet-markdown .markItUpButton10 a{background-image:url(../../images/quotes.png)}.markItUpSet-markdown .markItUpButton11 a{background-image:url(../../images/code.png)} -------------------------------------------------------------------------------- /assets/jscripts/lightbox/lightbox.min.css: -------------------------------------------------------------------------------- 1 | #bootstrap-media-lightbox-caption-container{position:absolute;bottom:10px;padding:0 20px;width:100%}#bootstrap-media-lightbox-caption{background:#000;color:#fff;padding:7px 15px;border-radius:30px;width:100%}#bootstrap-media-lightbox-backward{position:absolute;top:45%;left:20px;font-size:300%;color:#fff;cursor:pointer}#bootstrap-media-lightbox-forward{position:absolute;top:45%;right:20px;font-size:300%;color:#fff;cursor:pointer}#bootstrap-media-lightbox-close{position:absolute;top:10px;right:20px;cursor:pointer}#bootstrap-media-lightbox-close .glyphicon-remove-circle{color:#fff;font-size:180%}#bootstrap-media-lightbox-close .fa-stack{font-size:180%}#bootstrap-media-lightbox-close .fa-square{color:#696969} -------------------------------------------------------------------------------- /assets/jscripts/tinynav.min.js: -------------------------------------------------------------------------------- 1 | /*! http://tinynav.viljamis.com v1.2 by @viljamis */ 2 | (function(a,k,g){a.fn.tinyNav=function(l){var c=a.extend({active:"selected",header:"",indent:"- ",label:""},l);return this.each(function(){g++;var h=a(this),b="tinynav"+g,f=".l_"+b,e=a("").attr("id",b).addClass("tinynav "+b);if(h.is("ul,ol")){""!==c.header&&e.append(a("").text(c.header));var d="";h.addClass("l_"+b).find("a").each(function(){d+='';var b;for(b=0;b"}); 3 | e.append(d);c.header||e.find(":eq("+a(f+" li").index(a(f+" li."+c.active))+")").attr("selected",!0);e.change(function(){k.location.href=a(this).val()});a(f).after(e);c.label&&e.before(a("").attr("for",b).addClass("tinynav_label "+b+"_label").append(c.label))}})}})(jQuery,this,0); -------------------------------------------------------------------------------- /assets/jscripts/wysiwyg/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/wysiwyg/font/summernote.eot -------------------------------------------------------------------------------- /assets/jscripts/wysiwyg/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/wysiwyg/font/summernote.ttf -------------------------------------------------------------------------------- /assets/jscripts/wysiwyg/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/jscripts/wysiwyg/font/summernote.woff -------------------------------------------------------------------------------- /assets/sound/alarm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/sound/alarm.mp3 -------------------------------------------------------------------------------- /assets/sound/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/sound/error.mp3 -------------------------------------------------------------------------------- /assets/sound/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/assets/sound/success.mp3 -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "basoro/mlite", 3 | "description": "SIM Kesehatan Aman, Ringan & Modular. Jalan di sisi server sebagai aplikasi web (PWA Ready) dan bersifat mobile first (responsive).", 4 | "type": "project", 5 | "require": { 6 | "nullpunkt/lz-string-php": "^1.3", 7 | "phpseclib/phpseclib": "~3.0.36", 8 | "phpmailer/phpmailer": "^6.9.1", 9 | "mpdf/mpdf": "^8.2.4", 10 | "workerman/workerman": "^4.0" 11 | }, 12 | "license": "MIT", 13 | "authors": [ 14 | { 15 | "name": "basoro", 16 | "email": "dentix.id@gmail.com" 17 | } 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /docker/db/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/docker/db/.gitkeep -------------------------------------------------------------------------------- /docker/mysql/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/docker/mysql/.gitkeep -------------------------------------------------------------------------------- /docker/php/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | memory_limit = 256M 3 | max_execution_time = 60 4 | upload_max_filesize = 64M 5 | post_max_size = 64M 6 | 7 | display_errors = On 8 | display_startup_errors = On 9 | log_errors = On 10 | error_reporting = E_ALL 11 | 12 | [Date] 13 | date.timezone = UTC 14 | 15 | [opcache] 16 | opcache.enable = 1 17 | opcache.memory_consumption = 256 18 | opcache.interned_strings_buffer = 16 19 | opcache.max_accelerated_files = 16229 20 | 21 | [xdebug] 22 | xdebug.mode = develop,debug 23 | xdebug.client_host = host.docker.internal 24 | xdebug.start_with_request = yes 25 | xdebug.log = /tmp/xdebug.log -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/favicon.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 'Adime Gizi', 5 | 'description' => 'Modul catatan adime gizi untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/adime_gizi/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_catatan_adime_gizi th, #tbl_catatan_adime_gizi td, #forTable_catatan_adime_gizi th, #forTable_catatan_adime_gizi td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/afm/Admin.php: -------------------------------------------------------------------------------- 1 | 'manage' 13 | ]; 14 | } 15 | 16 | public function getManage() 17 | { 18 | $this->assign['title'] = 'Pengaturan Modul API AFM'; 19 | $this->assign['afm'] = htmlspecialchars_array($this->settings('afm')); 20 | return $this->draw('settings.html', ['settings' => $this->assign]); 21 | } 22 | 23 | public function postSaveSettings() 24 | { 25 | foreach ($_POST['afm'] as $key => $val) { 26 | $this->settings('afm', $key, $val); 27 | } 28 | $this->notify('success', 'Pengaturan telah disimpan'); 29 | redirect(url([ADMIN, 'afm', 'manage'])); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /plugins/afm/Help.md: -------------------------------------------------------------------------------- 1 | Untuk menggunakan fitur ini, silahkan ikuti langkah-langkah berikut! 2 | 1. Aktifkan modul AFM (Anjungan finger mandiri). Jika anda bisa membaca tutorial ini berarti anda sudah mengaktifkan modulnya (LOL) ...!! 3 | 2. Isikan kredensial di pengaturan AFM, yag terdiri dari token AFM, username finger dan password finger BPJS. 4 | 3. Download file AFM di mLITE.id dengan klik mlite.id/page/afm 5 | 4. Extract dan jalankan file hasil download point 3 di Anjungan Finger mandiri 6 | 5. Silahkan ujicoba 7 | 8 | Jika ada kesulitan silahkan tanyakan di grup 9 | -------------------------------------------------------------------------------- /plugins/afm/view/index.html: -------------------------------------------------------------------------------- 1 | API Anjungan Finger Mandiri 2 | -------------------------------------------------------------------------------- /plugins/anjungan/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/anjungan/fonts/gijgo-material.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/fonts/gijgo-material.eot -------------------------------------------------------------------------------- /plugins/anjungan/fonts/gijgo-material.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/fonts/gijgo-material.ttf -------------------------------------------------------------------------------- /plugins/anjungan/fonts/gijgo-material.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/fonts/gijgo-material.woff -------------------------------------------------------------------------------- /plugins/anjungan/suara/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/1.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/2.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/3.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/4.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/5.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/6.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/7.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/8.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/9.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/a.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/a.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/antrian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/antrian.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/b.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/b.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/belas.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/belas.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/c.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/c.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/counter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/counter.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/d.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/d.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/delapan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/delapan.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/dua.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/dua.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/e.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/e.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/empat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/empat.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/enam.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/enam.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/f.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/f.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/g.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/g.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/h.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/h.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/i.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/i.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/j.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/j.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/k.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/l.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/l.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/lima.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/lima.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/nol.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/nol.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/notification.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/notification.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/puluh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/puluh.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/ratus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/ratus.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/satu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/satu.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/sebelas.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/sebelas.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/sembilan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/sembilan.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/sepuluh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/sepuluh.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/seratus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/seratus.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/tiga.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/tiga.wav -------------------------------------------------------------------------------- /plugins/anjungan/suara/tujuh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/anjungan/suara/tujuh.wav -------------------------------------------------------------------------------- /plugins/anjungan/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/anjungan/view/index.html: -------------------------------------------------------------------------------- 1 | Silent is Golden 2 | -------------------------------------------------------------------------------- /plugins/api/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/api/view/admin/settings.key.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {$settings.title} 7 | 8 | 9 | 10 | Berkas Digital API Key 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /plugins/api/view/index.html: -------------------------------------------------------------------------------- 1 | API 2 | -------------------------------------------------------------------------------- /plugins/apotek_ralan/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/apotek_ralan/Info.php: -------------------------------------------------------------------------------- 1 | 'Apotek Ralan', 5 | 'description' => 'Modul apotek rawat jalan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'farmasi', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'shopping-cart', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/apotek_ralan/view/admin/cetak.etiket.html: -------------------------------------------------------------------------------- 1 | 2 | {loop: $detail} 3 | 4 | {$settings.nama_instansi} 5 | {$settings.alamat}{$settings.kota} - {$settings.nomor_telepon} 6 | {$farmasi.keterangan_etiket} 7 | 8 | 9 | {$tanggal} 10 | a/n : {$pasien} - {$no_rm} 11 | 12 | {$value.aturan_pakai} 13 | Pagi / Siang / Sore / Malam 14 | Sebelum Makan / Sesudah Makan / Habiskan 15 | 16 | {/loop} 17 | 18 | -------------------------------------------------------------------------------- /plugins/apotek_ralan/view/admin/racikan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | ID Racikan 8 | Nama Racikan 9 | 10 | 11 | 12 | {if: $racikan} 13 | {loop: $racikan} 14 | 15 | {$value.kd_racik} 16 | {$value.nm_racik} 17 | 18 | {/loop} 19 | {else} 20 | 21 | Tidak ada data metode racik. 22 | 23 | {/if} 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/apotek_ranap/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/apotek_ranap/Info.php: -------------------------------------------------------------------------------- 1 | 'Apotek Ranap', 5 | 'description' => 'Modul apotek rawat inap untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'farmasi', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'shopping-cart', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/apotek_ranap/view/admin/cetak.etiket.html: -------------------------------------------------------------------------------- 1 | 2 | {loop: $detail} 3 | 4 | {$settings.nama_instansi} 5 | {$settings.alamat}{$settings.kota} - {$settings.nomor_telepon} 6 | {$farmasi.keterangan_etiket} 7 | 8 | 9 | {$tanggal} 10 | a/n : {$pasien} - {$no_rm} 11 | 12 | {$value.aturan_pakai} 13 | Pagi / Siang / Sore / Malam 14 | Sebelum Makan / Sesudah Makan / Habiskan 15 | 16 | {/loop} 17 | 18 | -------------------------------------------------------------------------------- /plugins/apotek_ranap/view/admin/racikan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | ID Racikan 8 | Nama Racikan 9 | 10 | 11 | 12 | {if: $racikan} 13 | {loop: $racikan} 14 | 15 | {$value.kd_racik} 16 | {$value.nm_racik} 17 | 18 | {/loop} 19 | {else} 20 | 21 | Tidak ada data metode racik. 22 | 23 | {/if} 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/bridging_hfis/Info.php: -------------------------------------------------------------------------------- 1 | 'Bridging HFIS', 5 | 'description' => 'Modul Bridging HFIS di mLITE', 6 | 'author' => 'Adly', 7 | 'category' => 'bridging', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'shield', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/darurat_stok/Info.php: -------------------------------------------------------------------------------- 1 | 'Darurat Stok', 5 | 'description' => 'Modul databarang untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'farmasi', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/darurat_stok/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_databarang th, #tbl_databarang td, #forTable_databarang th, #forTable_databarang td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/dashboard/Info.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 5 | 'description' => 'Akses cepat pada modul dan berita.', 6 | 'author' => 'Basoro.ID', 7 | 'category' => 'main', 8 | 'version' => '1.1', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'home', 11 | 'pages' => ['Main' => 'main'] , 12 | 'install' => function () use ($core) { 13 | }, 14 | 'uninstall' => function() use($core) 15 | { 16 | } 17 | ]; 18 | -------------------------------------------------------------------------------- /plugins/dashboard/audio/shutter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dashboard/audio/shutter.mp3 -------------------------------------------------------------------------------- /plugins/dashboard/audio/shutter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dashboard/audio/shutter.ogg -------------------------------------------------------------------------------- /plugins/dashboard/js/admin/dashboard.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | sortable('.modules', {handle:'i'})[0].addEventListener('sortupdate', function(e) { 3 | var baseURL = mlite.url + '/' + mlite.admin; 4 | var items = {}; 5 | 6 | $(e.detail.endparent).children('li').each(function(index, element) { 7 | var module = $(element).data('module'); 8 | items[module] = index; 9 | }); 10 | 11 | $.ajax({ 12 | url: baseURL + '/dashboard/changeOrderOfNavItem?t=' + mlite.token, 13 | type: 'POST', 14 | cache: false, 15 | data: items, 16 | success: function(respond) { 17 | console.log(respond); 18 | } 19 | }); 20 | }); 21 | }); 22 | -------------------------------------------------------------------------------- /plugins/detail_pemberian_obat/Info.php: -------------------------------------------------------------------------------- 1 | 'Detail Pemberian Obat', 5 | 'description' => 'Modul detail pemberian obat untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'farmasi', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/detail_pemberian_obat/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_detail_pemberian_obat th, #tbl_detail_pemberian_obat td, #forTable_detail_pemberian_obat th, #forTable_detail_pemberian_obat td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/dokter_igd/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/dokter_igd/Info.php: -------------------------------------------------------------------------------- 1 | 'Dokter IGD', 5 | 'description' => 'Modul dokter IGD untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'user-md', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/dokter_igd/img/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_igd/img/L.png -------------------------------------------------------------------------------- /plugins/dokter_igd/img/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_igd/img/P.png -------------------------------------------------------------------------------- /plugins/dokter_igd/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_igd/img/default.png -------------------------------------------------------------------------------- /plugins/dokter_igd/view/admin/racikan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | ID Racikan 8 | Nama Racikan 9 | 10 | 11 | 12 | {if: $racikan} 13 | {loop: $racikan} 14 | 15 | {$value.kd_racik} 16 | {$value.nm_racik} 17 | 18 | {/loop} 19 | {else} 20 | 21 | Tidak ada data metode racik. 22 | 23 | {/if} 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/dokter_ralan/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/dokter_ralan/Info.php: -------------------------------------------------------------------------------- 1 | 'Dokter Ralan', 5 | 'description' => 'Modul dokter rawat jalan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'user-md', 11 | 'install' => function () use ($core) { 12 | $core->db()->pdo()->exec("INSERT INTO `mlite_settings` (`module`, `field`, `value`) VALUES ('dokter_ralan', 'set_sudah', 'tidak')"); 13 | }, 14 | 'uninstall' => function() use($core) 15 | { 16 | } 17 | ]; 18 | -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/Akar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/Akar.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/Erupsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/Erupsi.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/Goyang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/Goyang.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/Karies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/Karies.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/L.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/P.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/Tanggal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/Tanggal.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/Tumpat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/Tumpat.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/anterior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/anterior.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/default.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/img/posterior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/dokter_ralan/img/posterior.png -------------------------------------------------------------------------------- /plugins/dokter_ralan/view/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/dokter_ralan/view/admin/medis.ralan.tampil.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nomor Rawat 5 | Keluhan 6 | Hubungan 7 | Dokter 8 | 9 | 10 | 11 | 12 | {if: $penilaian_medis_ralan} 13 | 14 | {$penilaian_medis_ralan.no_rawat} 15 | {$penilaian_medis_ralan.keluhan_utama} 16 | {$penilaian_medis_ralan.hubungan} 17 | {$penilaian_medis_ralan.nm_dokter} 18 | 19 | {else} 20 | 21 | Tidak ada data 22 | 23 | {/if} 24 | 25 | 26 | -------------------------------------------------------------------------------- /plugins/dokter_ralan/view/admin/racikan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | ID Racikan 8 | Nama Racikan 9 | 10 | 11 | 12 | {if: $racikan} 13 | {loop: $racikan} 14 | 15 | {$value.kd_racik} 16 | {$value.nm_racik} 17 | 18 | {/loop} 19 | {else} 20 | 21 | Tidak ada data metode racik. 22 | 23 | {/if} 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/dokter_ralan/view/admin/resume.tampil.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nomor Rawat 5 | Keluhan 6 | Diagnosa 7 | Prosedur 8 | Pulang 9 | Dokter 10 | 11 | 12 | 13 | {if: $resume_pasien} 14 | 15 | {$resume_pasien.no_rawat} 16 | {$resume_pasien.keluhan_utama} 17 | {$resume_pasien.diagnosa_utama} 18 | {$resume_pasien.prosedur_utama} 19 | {$resume_pasien.kondisi_pulang} 20 | {$resume_pasien.nm_dokter} 21 | 22 | {else} 23 | 24 | Tidak ada data 25 | 26 | {/if} 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/dokter_ranap/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/dokter_ranap/Info.php: -------------------------------------------------------------------------------- 1 | 'Dokter Ranap', 5 | 'description' => 'Modul dokter rawat inap untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'user-md', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/dokter_ranap/view/admin/racikan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | ID Racikan 8 | Nama Racikan 9 | 10 | 11 | 12 | {if: $racikan} 13 | {loop: $racikan} 14 | 15 | {$value.kd_racik} 16 | {$value.nm_racik} 17 | 18 | {/loop} 19 | {else} 20 | 21 | Tidak ada data metode racik. 22 | 23 | {/if} 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/dokter_ranap/view/admin/resume.tampil.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nomor Rawat 5 | Keluhan 6 | Diagnosa 7 | Prosedur 8 | Pulang 9 | 10 | 11 | 12 | {if: $resume_pasien} 13 | {loop: $resume_pasien} 14 | 15 | {$value.no_rawat} 16 | {$value.keluhan_utama} 17 | {$value.diagnosa_utama} 18 | {$value.prosedur_utama} 19 | {$value.keadaan} 20 | {$value.nm_dokter} 21 | 22 | {/loop} 23 | {else} 24 | 25 | Tidak ada data 26 | 27 | {/if} 28 | 29 | 30 | -------------------------------------------------------------------------------- /plugins/farmasi/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/farmasi/css/admin/farmasi.css: -------------------------------------------------------------------------------- 1 | th, td { 2 | white-space: nowrap; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/farmasi/js/admin/farmasi.js: -------------------------------------------------------------------------------- 1 | $( function() { 2 | $('.tanggal').datetimepicker({ 3 | format: 'YYYY-MM-DD', 4 | locale: 'id' 5 | }); 6 | }); 7 | -------------------------------------------------------------------------------- /plugins/farmasi/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/grafik_fenton/Info.php: -------------------------------------------------------------------------------- 1 | 'Grafik Fenton', 5 | 'description' => 'Modul mlite fenton untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/grafik_fenton/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_fenton th, #tbl_mlite_fenton td, #forTable_mlite_fenton th, #forTable_mlite_fenton td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/icare/view/admin/riwayat.html: -------------------------------------------------------------------------------- 1 | 7 | 8 | × Tutup 9 | Riwayat iCare BPJS 10 | 11 | 12 | 13 | 14 | {if: $message == '200'} 15 | 16 | {else} 17 | {$message} 18 | {/if} 19 | 20 | 21 | 22 | 25 | -------------------------------------------------------------------------------- /plugins/icd_10/Info.php: -------------------------------------------------------------------------------- 1 | 'ICD 10', 5 | 'description' => 'Modul penyakit untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/icd_10/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_penyakit th, #tbl_penyakit td, #forTable_penyakit th, #forTable_penyakit td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/icd_9/Info.php: -------------------------------------------------------------------------------- 1 | 'ICD 9', 5 | 'description' => 'Modul icd9 untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/icd_9/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_icd9 th, #tbl_icd9 td, #forTable_icd9 th, #forTable_icd9 td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/icd_9/view/admin/detail.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Detail icd9 4 | 5 | 6 | 7 | 8 | 9 | 10 | {loop: $detail} 11 | Kode{$value.kode} 12 | Deskripsi Panjang{$value.deskripsi_panjang} 13 | Deskripsi Pendek{$value.deskripsi_pendek} 14 | 15 | {/loop} 16 | 17 | 18 | 19 | 22 | -------------------------------------------------------------------------------- /plugins/igd/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/igd/Info.php: -------------------------------------------------------------------------------- 1 | 'IGD', 5 | 'description' => 'Modul igd untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'ambulance', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/igd/view/admin/berkasdigital.html: -------------------------------------------------------------------------------- 1 | {if: !empty($berkas_digital)} 2 | Berkas Digital Perawatan 3 | 4 | 5 | {loop: $berkas_digital} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | {/loop} 14 | 15 | 16 | {/if} 17 | -------------------------------------------------------------------------------- /plugins/igd/view/admin/cetak.igd.html: -------------------------------------------------------------------------------- 1 | 2 | Data Pasien IGD 3 | 4 | 5 | 6 | Tanggal 7 | No. Rawat 8 | No. Reg 9 | Nama Pasien 10 | No. RM 11 | Dokter 12 | Penjamin 13 | 14 | 15 | 16 | {loop: $cetak} 17 | 18 | {$value.temp3} 19 | {$value.temp2} 20 | {$value.temp1} 21 | {?=$this->core->getPasienInfo('nm_pasien', $value.temp6)?} 22 | {$value.temp6} 23 | {?=$this->core->getDokterInfo('nm_dokter', $value.temp5)?} 24 | {?=$this->core->getPenjabInfo('png_jawab', $value.temp15)?} 25 | 26 | {/loop} 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/igd/view/admin/stts.daftar.html: -------------------------------------------------------------------------------- 1 | 2 | Status 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/inventaris/Info.php: -------------------------------------------------------------------------------- 1 | 'Inventaris', 5 | 'description' => 'Modul inventaris, pemeliharana dan perbaikan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'manajemen', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'cog', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/inventaris/css/admin/inventaris.css: -------------------------------------------------------------------------------- 1 | th, td { 2 | white-space: nowrap; 3 | vertical-align: top !important; 4 | } 5 | -------------------------------------------------------------------------------- /plugins/jam_masuk/Info.php: -------------------------------------------------------------------------------- 1 | 'Jam Masuk', 5 | 'description' => 'Modul jam masuk untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'manajemen', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/jam_masuk/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_jam_masuk th, #tbl_jam_masuk td, #forTable_jam_masuk th, #forTable_jam_masuk td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/jam_masuk/view/admin/detail.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Detail jam_masuk 4 | 5 | 6 | 7 | 8 | 9 | 10 | {loop: $detail} 11 | Shift{$value.shift} 12 | Jam Masuk{$value.jam_masuk} 13 | Jam Pulang{$value.jam_pulang} 14 | 15 | {/loop} 16 | 17 | 18 | 19 | 22 | -------------------------------------------------------------------------------- /plugins/jasa_medis_dokter/Info.php: -------------------------------------------------------------------------------- 1 | 'Jasa Medis Dokter', 5 | 'description' => 'Modul jasa medis dokter untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'keuangan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/jasa_medis_perawat/Info.php: -------------------------------------------------------------------------------- 1 | 'Jasa Medis Perawat', 5 | 'description' => 'Modul jasa medis perawat untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'keuangan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/jkn_mobile/css/hightlightjs-dark.css: -------------------------------------------------------------------------------- 1 | .hljs { 2 | display:block; 3 | overflow-x:auto; 4 | padding:0.5em; 5 | background:#323F4C; 6 | } 7 | .hljs { 8 | color:#fff; 9 | } 10 | .hljs-strong,.hljs-emphasis { 11 | color:#a8a8a2 12 | } 13 | .hljs-bullet,.hljs-quote,.hljs-link,.hljs-number,.hljs-regexp,.hljs-literal { 14 | color:#6896ba 15 | } 16 | .hljs-code,.hljs-selector-class { 17 | color:#a6e22e 18 | } 19 | .hljs-emphasis { 20 | font-style:italic 21 | } 22 | .hljs-keyword,.hljs-selector-tag,.hljs-section,.hljs-attribute,.hljs-name,.hljs-variable { 23 | color:#cb7832 24 | } 25 | .hljs-params { 26 | color:#b9b9b9 27 | } 28 | .hljs-string { 29 | color:#6a8759 30 | } 31 | .hljs-subst,.hljs-type,.hljs-built_in,.hljs-builtin-name,.hljs-symbol,.hljs-selector-id,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-template-tag,.hljs-template-variable,.hljs-addition { 32 | color:#e0c46c 33 | } 34 | .hljs-comment,.hljs-deletion,.hljs-meta { 35 | color:#7f7f7f 36 | } 37 | -------------------------------------------------------------------------------- /plugins/jkn_mobile/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/jkn_mobile/img/logo.png -------------------------------------------------------------------------------- /plugins/jkn_mobile/view/admin/hapusantrol.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Data Booking Antrian Online 6 | 7 | 8 | 9 | {$notif}× 10 | 11 | 12 | 13 | 14 | 15 | 23 | -------------------------------------------------------------------------------- /plugins/jkn_mobile/view/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Katalog JKN Mobile 6 | 7 | 8 | 9 | 10 | 11 | Jalankan 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/jkn_mobile/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/jkn_mobile_fktp/css/hightlightjs-dark.css: -------------------------------------------------------------------------------- 1 | .hljs { 2 | display:block; 3 | overflow-x:auto; 4 | padding:0.5em; 5 | background:#323F4C; 6 | } 7 | .hljs { 8 | color:#fff; 9 | } 10 | .hljs-strong,.hljs-emphasis { 11 | color:#a8a8a2 12 | } 13 | .hljs-bullet,.hljs-quote,.hljs-link,.hljs-number,.hljs-regexp,.hljs-literal { 14 | color:#6896ba 15 | } 16 | .hljs-code,.hljs-selector-class { 17 | color:#a6e22e 18 | } 19 | .hljs-emphasis { 20 | font-style:italic 21 | } 22 | .hljs-keyword,.hljs-selector-tag,.hljs-section,.hljs-attribute,.hljs-name,.hljs-variable { 23 | color:#cb7832 24 | } 25 | .hljs-params { 26 | color:#b9b9b9 27 | } 28 | .hljs-string { 29 | color:#6a8759 30 | } 31 | .hljs-subst,.hljs-type,.hljs-built_in,.hljs-builtin-name,.hljs-symbol,.hljs-selector-id,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-template-tag,.hljs-template-variable,.hljs-addition { 32 | color:#e0c46c 33 | } 34 | .hljs-comment,.hljs-deletion,.hljs-meta { 35 | color:#7f7f7f 36 | } 37 | -------------------------------------------------------------------------------- /plugins/jkn_mobile_fktp/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/jkn_mobile_fktp/img/logo.png -------------------------------------------------------------------------------- /plugins/jkn_mobile_fktp/view/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Katalog JKN Mobile FKTP 6 | 7 | 8 | 9 | 10 | 11 | Jalankan 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/jkn_mobile_fktp/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/kasir_rawat_inap/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/kasir_rawat_inap/Info.php: -------------------------------------------------------------------------------- 1 | 'Kasir Rawat Inap', 5 | 'description' => 'Modul kasir rawat inap untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'keuangan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'money', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/kasir_rawat_inap/email/email.send.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {SITENAME} 4 | 5 | Terima kasih telah mempercayakan layanan kesehatan anda ke {SITENAME}. Berikut kami kirimkan lampiran invoice/detail pembayaran anda. 6 | 7 | Email ini secara otomatis dikirim oleh sistem, mohon jangan dibalas secara langsung (reply). Jika Anda tidak merasa mendaftar sebagai pasien di {SITENAME}, harap abaikan email ini. 8 | Jika Anda memiliki pertanyaan, silakan hubungi kami melalui informasi kontak di situs. 9 | 10 | 11 | {SITENAME} 12 | {ADDRESS} - {TELP} 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/kasir_rawat_jalan/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/kasir_rawat_jalan/Info.php: -------------------------------------------------------------------------------- 1 | 'Kasir Rawat Jalan', 5 | 'description' => 'Modul kasir rawat jalan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'keuangan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'money', 11 | 'install' => function () use ($core) { 12 | if (!is_dir(UPLOADS."/invoices")) { 13 | mkdir(UPLOADS."/invoices", 0777); 14 | } 15 | }, 16 | 'uninstall' => function() use($core) 17 | { 18 | } 19 | ]; 20 | -------------------------------------------------------------------------------- /plugins/kasir_rawat_jalan/email/email.send.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {SITENAME} 4 | 5 | Terima kasih telah mempercayakan layanan kesehatan anda ke {SITENAME}. Berikut kami kirimkan lampiran invoice/detail pembayaran anda. 6 | 7 | Email ini secara otomatis dikirim oleh sistem, mohon jangan dibalas secara langsung (reply). Jika Anda tidak merasa mendaftar sebagai pasien di {SITENAME}, harap abaikan email ini. 8 | Jika Anda memiliki pertanyaan, silakan hubungi kami melalui informasi kontak di situs. 9 | 10 | 11 | {SITENAME} 12 | {ADDRESS} - {TELP} 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/kepegawaian/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/kepegawaian/Info.php: -------------------------------------------------------------------------------- 1 | 'Kepegawaian', 5 | 'description' => 'Pengelolaan data kepegawaian mLITE.', 6 | 'author' => 'Basoro', 7 | 'category' => 'manajemen', 8 | 'version' => '1.1', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'group', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/kepegawaian/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/kepegawaian/img/default.png -------------------------------------------------------------------------------- /plugins/kepegawaian/js/admin/kepegawaian.js: -------------------------------------------------------------------------------- 1 | // Avatar 2 | var reader = new FileReader(); 3 | reader.addEventListener("load", function() { 4 | $("#photoPreview").attr('src', reader.result); 5 | }, false); 6 | $("input[name=photo]").change(function() { 7 | reader.readAsDataURL(this.files[0]); 8 | }); 9 | $( function() { 10 | $('.tanggal').datetimepicker({ 11 | format: 'YYYY-MM-DD', 12 | locale: 'id' 13 | }); 14 | } ); 15 | $(document).ready(function(){ 16 | $('.display').DataTable({ 17 | "language": { "search": "", "searchPlaceholder": "Search..." }, 18 | "lengthChange": false, 19 | "scrollX": true, 20 | dom: "<<'data-table-title'><'datatable-search'f>><'row'<'col-sm-12'tr>><<'pmd-datatable-pagination' l i p>>" 21 | }); 22 | }); 23 | -------------------------------------------------------------------------------- /plugins/kepegawaian/view/admin/cetak.pegawai.html: -------------------------------------------------------------------------------- 1 | 2 | Data Pasien Pegawai 3 | 4 | 5 | 6 | Kode Pegawai 7 | Nama Pegawai 8 | Tempat Lahir 9 | Tanggal Lahir 10 | Status 11 | 12 | 13 | 14 | {loop: $pegawai} 15 | 16 | {$value.nik} 17 | {$value.nama} 18 | {$value.tmp_lahir} 19 | {$value.tgl_lahir} 20 | {$value.stts_aktif} 21 | 22 | {/loop} 23 | 24 | 25 | -------------------------------------------------------------------------------- /plugins/kepegawaian/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/keuangan/view/admin/akunrekening.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Kelola Akun Rekening 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | {include: ../plugins/keuangan/view/admin/akunrekening.display.html} 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /plugins/keuangan/view/admin/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/keuangan/view/admin/blank.html -------------------------------------------------------------------------------- /plugins/keuangan/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/laboratorium/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/laboratorium/Info.php: -------------------------------------------------------------------------------- 1 | 'Laboratorium', 5 | 'description' => 'Modul Laboratorium untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'flask', 11 | 'install' => function () use ($core) { 12 | if (!is_dir(UPLOADS."/laboratorium")) { 13 | mkdir(UPLOADS."/laboratorium", 0777); 14 | } 15 | }, 16 | 'uninstall' => function() use($core) 17 | { 18 | } 19 | ]; 20 | -------------------------------------------------------------------------------- /plugins/laboratorium/email/email.send.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {SITENAME} 4 | 5 | Terima kasih telah mempercayakan layanan kesehatan anda ke {SITENAME}. Berikut kami kirimkan lampiran hasil pemeriksaan laboratorium anda. 6 | 7 | Email ini secara otomatis dikirim oleh sistem, mohon jangan dibalas secara langsung (reply). Jika Anda tidak merasa mendaftar sebagai pasien di {SITENAME}, harap abaikan email ini. 8 | Jika Anda memiliki pertanyaan, silakan hubungi kami melalui informasi kontak di situs. 9 | 10 | 11 | {SITENAME} 12 | {ADDRESS} - {TELP} 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/laboratorium/view/admin/stts.daftar.html: -------------------------------------------------------------------------------- 1 | 2 | Status 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/laporan_bpjs/Info.php: -------------------------------------------------------------------------------- 1 | 'Laporan BPJS', 5 | 'description' => 'Modul mlite antrian referensi untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'laporan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/laporan_bpjs/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_antrian_referensi th, #tbl_mlite_antrian_referensi td, #forTable_mlite_antrian_referensi th, #forTable_mlite_antrian_referensi td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/log_antrian_taskid/Info.php: -------------------------------------------------------------------------------- 1 | 'Log Antrian TaskID', 5 | 'description' => 'Modul mlite antrian referensi taskid untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'laporan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/log_antrian_taskid/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_antrian_referensi_taskid th, #tbl_mlite_antrian_referensi_taskid td, #forTable_mlite_antrian_referensi_taskid th, #forTable_mlite_antrian_referensi_taskid td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/manajemen/Info.php: -------------------------------------------------------------------------------- 1 | 'Manajemen', 5 | 'description' => 'Modul manajemen untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'manajemen', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'dashboard', 11 | 'install' => function () use ($core) { 12 | $core->db()->pdo()->exec("INSERT INTO `mlite_settings` (`module`, `field`, `value`) VALUES ('manajemen', 'penjab_umum', 'UMU')"); 13 | $core->db()->pdo()->exec("INSERT INTO `mlite_settings` (`module`, `field`, `value`) VALUES ('manajemen', 'penjab_bpjs', 'BPJ')"); 14 | }, 15 | 'uninstall' => function() use($core) 16 | { 17 | $core->db()->pdo()->exec("DELETE FROM `mlite_settings` WHERE `module` = 'manajemen'"); 18 | } 19 | ]; 20 | -------------------------------------------------------------------------------- /plugins/manajemen/css/admin/style.css: -------------------------------------------------------------------------------- 1 | .stat-title { 2 | padding:0; 3 | margin:0; 4 | font-size:16px; 5 | font-weight:bold; 6 | } 7 | .stat-bold { 8 | padding:0; 9 | margin-top:0px; 10 | margin-bottom:-10px; 11 | font-size:28px; 12 | font-weight:bold; 13 | } 14 | .stat-up-down { 15 | font-size:14px; 16 | font-weight:bold; 17 | } 18 | .text-white{color:#ffffff} 19 | a.text-white:focus,a.text-white:hover{color:#ffffff} 20 | 21 | .badge-success { 22 | background-color: #4C9A2A; 23 | } 24 | -------------------------------------------------------------------------------- /plugins/master/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/master/Info.php: -------------------------------------------------------------------------------- 1 | 'Master Data', 5 | 'description' => 'Data master awal mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'main', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'cubes', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/master/css/admin/master.css: -------------------------------------------------------------------------------- 1 | .nowrap th, .nowrap td { 2 | white-space: nowrap; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/master/js/admin/master.js: -------------------------------------------------------------------------------- 1 | $('body').on('change','#kd_dokter', function() { 2 | var optionText = $("#kd_dokter option:selected").text(); 3 | $('#nm_dokter').val(optionText); 4 | }); 5 | $('body').on('change','#nip', function() { 6 | var optionText = $("#nip option:selected").text(); 7 | $('#nama').val(optionText); 8 | }); 9 | -------------------------------------------------------------------------------- /plugins/modules/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/modules/Info.php: -------------------------------------------------------------------------------- 1 | 'Modul-Modul', 5 | 'description' => 'Pengelolaan modul', 6 | 'author' => 'Basoro.ID', 7 | 'category' => 'main', 8 | 'version' => '1.1', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'plug', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function () use ($core) { 14 | } 15 | ]; 16 | -------------------------------------------------------------------------------- /plugins/operasi/Info.php: -------------------------------------------------------------------------------- 1 | 'Operasi', 5 | 'description' => 'Modul operasi dan VK di mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'bolt', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/operasi/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/oral_diagnostic/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/oral_diagnostic/Info.php: -------------------------------------------------------------------------------- 1 | 'Oral Diagnostic', 5 | 'description' => 'Modul Oral Diagnostic untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'ambulance', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/oral_diagnostic/view/admin/berkasdigital.html: -------------------------------------------------------------------------------- 1 | {if: !empty($berkas_digital)} 2 | Berkas Digital Perawatan 3 | 4 | 5 | {loop: $berkas_digital} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | {/loop} 14 | 15 | 16 | {/if} 17 | -------------------------------------------------------------------------------- /plugins/oral_diagnostic/view/admin/stts.daftar.html: -------------------------------------------------------------------------------- 1 | 2 | Status 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/pasien/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/pasien/Info.php: -------------------------------------------------------------------------------- 1 | 'Pendaftaran Pasien', 5 | 'description' => 'Modul data pasien untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'users', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/pasien/audio/shutter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/pasien/audio/shutter.mp3 -------------------------------------------------------------------------------- /plugins/pasien/audio/shutter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/pasien/audio/shutter.ogg -------------------------------------------------------------------------------- /plugins/pasien/img/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/pasien/img/L.png -------------------------------------------------------------------------------- /plugins/pasien/img/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/pasien/img/P.png -------------------------------------------------------------------------------- /plugins/pasien/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/pasien/img/default.png -------------------------------------------------------------------------------- /plugins/pasien/view/admin/cetak.pasien.html: -------------------------------------------------------------------------------- 1 | 2 | Data Pasien 3 | 4 | 5 | 6 | Nomor RM 7 | Nama Pasien 8 | Tgl. Lahir 9 | Jenis Kelamin 10 | Alamat 11 | No. Telepon 12 | 13 | 14 | 15 | {loop: $cetak} 16 | 17 | {$value.temp1} 18 | {$value.temp2} 19 | {$value.temp3} 20 | {if: $value.temp4 == 'L'}Laki-Laki{else}Perempuan{/if} 21 | {$value.temp8} 22 | {$value.temp6} 23 | 24 | {/loop} 25 | 26 | 27 | -------------------------------------------------------------------------------- /plugins/pasien/view/admin/pasien.export.pdf.html: -------------------------------------------------------------------------------- 1 | 2 | Data Pasien 3 | 4 | 5 | 6 | Nomor RM 7 | Nama Pasien 8 | Tgl. Lahir 9 | Jenis Kelamin 10 | Alamat 11 | No. Telepon 12 | 13 | 14 | 15 | {loop: $pasien} 16 | 17 | {$value.no_rkm_medis} 18 | {$value.nm_pasien} 19 | {$value.tgl_lahir} 20 | {if: $value.jk == 'L'}Laki-Laki{else}Perempuan{/if} 21 | {$value.alamat} 22 | {$value.no_tlp} 23 | 24 | {/loop} 25 | 26 | 27 | -------------------------------------------------------------------------------- /plugins/pasien/view/admin/settings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Pengaturan No RM Terakhir 7 | 8 | 9 | 10 | No RKM Medis 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/pcare/images/bpjslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/pcare/images/bpjslogo.png -------------------------------------------------------------------------------- /plugins/pcare/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Katalog 6 | 7 | 8 | {include: ../plugins/pcare/view/admin/menu.html} 9 | 10 | 11 | 12 | 13 | 14 | 15 | Readme.md 16 | 17 | 18 | {$readme} 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /plugins/penilaian_keperawatan_gigi/Info.php: -------------------------------------------------------------------------------- 1 | 'Penilaian Keperawatan Gigi', 5 | 'description' => 'Modul mlite penilaian awal keperawatan gigi untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penilaian_keperawatan_gigi/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_penilaian_awal_keperawatan_gigi th, #tbl_mlite_penilaian_awal_keperawatan_gigi td, #forTable_mlite_penilaian_awal_keperawatan_gigi th, #forTable_mlite_penilaian_awal_keperawatan_gigi td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/penilaian_keperawatan_ralan/Info.php: -------------------------------------------------------------------------------- 1 | 'Penilaian Keperawatan Ralan', 5 | 'description' => 'Modul mlite penilaian awal keperawatan ralan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penilaian_keperawatan_ralan/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_penilaian_awal_keperawatan_ralan th, #tbl_mlite_penilaian_awal_keperawatan_ralan td, #forTable_mlite_penilaian_awal_keperawatan_ralan th, #forTable_mlite_penilaian_awal_keperawatan_ralan td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/penilaian_keperawatan_ranap/Info.php: -------------------------------------------------------------------------------- 1 | 'Penilaian Keperawatan Ranap', 5 | 'description' => 'Modul mlite penilaian awal keperawatan ranap untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penilaian_keperawatan_ranap/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_penilaian_awal_keperawatan_ranap th, #tbl_mlite_penilaian_awal_keperawatan_ranap td, #forTable_mlite_penilaian_awal_keperawatan_ranap th, #forTable_mlite_penilaian_awal_keperawatan_ranap td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/penilaian_medis_igd/Info.php: -------------------------------------------------------------------------------- 1 | 'Penilaian Medis IGD', 5 | 'description' => 'Modul mlite penilaian medis igd untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penilaian_medis_igd/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_penilaian_medis_igd th, #tbl_mlite_penilaian_medis_igd td, #forTable_mlite_penilaian_medis_igd th, #forTable_mlite_penilaian_medis_igd td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/penilaian_medis_ralan/Info.php: -------------------------------------------------------------------------------- 1 | 'Penilaian Medis Ralan', 5 | 'description' => 'Modul mlite penilaian medis ralan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penilaian_medis_ralan/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_penilaian_medis_ralan th, #tbl_mlite_penilaian_medis_ralan td, #forTable_mlite_penilaian_medis_ralan th, #forTable_mlite_penilaian_medis_ralan td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/penilaian_medis_ranap/Info.php: -------------------------------------------------------------------------------- 1 | 'Penilaian Medis Ranap', 5 | 'description' => 'Modul mlite penilaian medis ranap untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penilaian_medis_ranap/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_penilaian_medis_ranap th, #tbl_mlite_penilaian_medis_ranap td, #forTable_mlite_penilaian_medis_ranap th, #forTable_mlite_penilaian_medis_ranap td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/penilaian_ulang_nyeri/Info.php: -------------------------------------------------------------------------------- 1 | 'Penilaian Ulang Nyeri', 5 | 'description' => 'Modul mlite penilaian ulang nyeri untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penilaian_ulang_nyeri/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_penilaian_ulang_nyeri th, #tbl_mlite_penilaian_ulang_nyeri td, #forTable_mlite_penilaian_ulang_nyeri th, #forTable_mlite_penilaian_ulang_nyeri td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/penjualan/Info.php: -------------------------------------------------------------------------------- 1 | 'Penjualan', 5 | 'description' => 'Modul penjualan bebas', 6 | 'author' => 'Basoro.ID', 7 | 'category' => 'keuangan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'cart-plus', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/penjualan/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/penjualan/view/admin/rincian.penjualan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | No. 5 | Nama Barang 6 | Jumlah 7 | Harga 8 | Aksi 9 | 10 | 11 | 12 | {loop: $rincian_penjualan} 13 | 14 | {$value.no} 15 | {$value.nama_barang} 16 | {$value.jumlah} 17 | {$value.harga} 18 | 19 | 20 | {/loop} 21 | 22 | 23 | -------------------------------------------------------------------------------- /plugins/peta_mukosa_rongga_mulut/Info.php: -------------------------------------------------------------------------------- 1 | 'Peta Mukosa Rongga Mulut', 5 | 'description' => 'Modul mlite peta mukosa rongga mulut untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/peta_mukosa_rongga_mulut/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_peta_mukosa_rongga_mulut th, #tbl_mlite_peta_mukosa_rongga_mulut td, #forTable_mlite_peta_mukosa_rongga_mulut th, #forTable_mlite_peta_mukosa_rongga_mulut td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/presensi/view/admin/google_map.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Lokasi Presensi 4 | {$pegawai.nama} - {$geo.tanggal} 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /plugins/presensi/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/profil/Info.php: -------------------------------------------------------------------------------- 1 | 'Profil', 5 | 'description' => 'Modul profil', 6 | 'author' => 'Basoro.ID', 7 | 'category' => 'main', 8 | 'version' => '1.1', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'address-book', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/profil/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/profil/img/default.png -------------------------------------------------------------------------------- /plugins/profil/js/admin/app.js: -------------------------------------------------------------------------------- 1 | var reader = new FileReader(); 2 | reader.addEventListener("load", function() { 3 | $("#photoPreview").attr('src', reader.result); 4 | }, false); 5 | $("input[name=photo]").change(function() { 6 | reader.readAsDataURL(this.files[0]); 7 | }); 8 | $( function() { 9 | $( ".tanggal" ).datetimepicker({ 10 | format: 'YYYY-MM-DD', 11 | locale: 'id' 12 | }); 13 | } ); 14 | 15 | $(document).ready(function(){ 16 | jQuery('.timeline').timeline({ 17 | //mode: 'horizontal', 18 | //visibleItems: 4 19 | //Remove this comment for see Timeline in Horizontal Format otherwise it will display in Vertical Direction Timeline 20 | }); 21 | }); 22 | -------------------------------------------------------------------------------- /plugins/profil/view/admin/google_map.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Lokasi Presensi 4 | {$pegawai.nama} - {$geo.tanggal} 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /plugins/radiologi/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/radiologi/Info.php: -------------------------------------------------------------------------------- 1 | 'Radiologi', 5 | 'description' => 'Modul Radiologi untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'film', 11 | 'install' => function () use ($core) { 12 | if (!is_dir(UPLOADS."/radiologi")) { 13 | mkdir(UPLOADS."/radiologi", 0777); 14 | } 15 | }, 16 | 'uninstall' => function() use($core) 17 | { 18 | } 19 | ]; 20 | -------------------------------------------------------------------------------- /plugins/radiologi/email/email.send.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {SITENAME} 4 | 5 | Terima kasih telah mempercayakan layanan kesehatan anda ke {SITENAME}. Berikut kami kirimkan lampiran hasil pemeriksaan radiologi anda. 6 | 7 | Email ini secara otomatis dikirim oleh sistem, mohon jangan dibalas secara langsung (reply). Jika Anda tidak merasa mendaftar sebagai pasien di {SITENAME}, harap abaikan email ini. 8 | Jika Anda memiliki pertanyaan, silakan hubungi kami melalui informasi kontak di situs. 9 | 10 | 11 | {SITENAME} 12 | {ADDRESS} - {TELP} 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/radiologi/view/admin/stts.daftar.html: -------------------------------------------------------------------------------- 1 | 2 | Status 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/rawat_inap/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/rawat_inap/Info.php: -------------------------------------------------------------------------------- 1 | 'Rawat Inap', 5 | 'description' => 'Modul rawat inap untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'hotel', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/rawat_inap/view/admin/berkasdigital.html: -------------------------------------------------------------------------------- 1 | {if: !empty($berkas_digital)} 2 | Berkas Digital Perawatan 3 | 4 | 5 | {loop: $berkas_digital} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | {/loop} 14 | 15 | 16 | {/if} 17 | -------------------------------------------------------------------------------- /plugins/rawat_inap/view/admin/stts.daftar.html: -------------------------------------------------------------------------------- 1 | 2 | Status 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/rawat_jalan/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/rawat_jalan/Info.php: -------------------------------------------------------------------------------- 1 | 'Rawat Jalan', 5 | 'description' => 'Modul pendaftaran layanan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'wheelchair', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/Akar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/Akar.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/Erupsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/Erupsi.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/Goyang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/Goyang.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/Karies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/Karies.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/Tanggal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/Tanggal.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/Tumpat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/Tumpat.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/anterior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/anterior.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/images/posterior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/rawat_jalan/images/posterior.png -------------------------------------------------------------------------------- /plugins/rawat_jalan/view/admin/berkasdigital.html: -------------------------------------------------------------------------------- 1 | {if: !empty($berkas_digital)} 2 | Berkas Digital Perawatan 3 | 4 | 5 | {loop: $berkas_digital} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | {/loop} 14 | 15 | 16 | {/if} 17 | -------------------------------------------------------------------------------- /plugins/rawat_jalan/view/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/rawat_jalan/view/admin/stts.daftar.html: -------------------------------------------------------------------------------- 1 | 2 | Status 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/riwayat_barang_medis/Info.php: -------------------------------------------------------------------------------- 1 | 'Riwayat Barang Medis', 5 | 'description' => 'Modul riwayat barang medis untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'laporan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/riwayat_barang_medis/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_riwayat_barang_medis th, #tbl_riwayat_barang_medis td, #forTable_riwayat_barang_medis th, #forTable_riwayat_barang_medis td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/satu_sehat/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/satu_sehat/view/admin/condition.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Kirim Data Condition Satu Sehat 4 | 5 | 6 | {$pesan} 7 | {$response} 8 | 9 | 10 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/satu_sehat/view/admin/encounter.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Kirim Data Encounter Satu Sehat 4 | 5 | 6 | {$pesan} 7 | {$response} 8 | 9 | 10 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/satu_sehat/view/admin/kyc.html: -------------------------------------------------------------------------------- 1 | 15 | KYC Pasien Popup 16 | KYC Pasien New Tab 17 | -------------------------------------------------------------------------------- /plugins/satu_sehat/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/satu_sehat/view/admin/observation.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Kirim Data Observasi Satu Sehat 4 | 5 | 6 | {$pesan} 7 | {$response} 8 | 9 | 10 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/satu_sehat/view/admin/pasien.html: -------------------------------------------------------------------------------- 1 | Referensi Pasien 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {if: isset($_POST['nik_pasien'])} 13 | 14 | 15 | {$response} 16 | 17 | 18 | {/if} 19 | -------------------------------------------------------------------------------- /plugins/satu_sehat/view/admin/praktisi.html: -------------------------------------------------------------------------------- 1 | Referensi Practitioner 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {if: isset($_POST['nik_dokter'])} 13 | 14 | 15 | {$response} 16 | 17 | 18 | {/if} 19 | -------------------------------------------------------------------------------- /plugins/settings/Help.md: -------------------------------------------------------------------------------- 1 | You can display settings data by using construction below: 2 | 3 | ``` 4 | {$settings.field-name} 5 | ``` 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/settings/Info.php: -------------------------------------------------------------------------------- 1 | 'Pengaturan', 5 | 'description' => 'Pengelolaan pengaturan', 6 | 'author' => 'Basoro.ID', 7 | 'category' => 'main', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'wrench', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function () use ($core) { 14 | } 15 | ]; 16 | -------------------------------------------------------------------------------- /plugins/settings/css/admin/settings.css: -------------------------------------------------------------------------------- 1 | .theme-preview { 2 | position: relative; 3 | display: block; 4 | overflow: hidden; 5 | padding-bottom: 75%; 6 | } 7 | .theme-preview img { 8 | position: absolute; 9 | top: 0; 10 | bottom: 0; 11 | left: 0; 12 | right: 0; 13 | margin: auto; 14 | } -------------------------------------------------------------------------------- /plugins/settings/inc/RecursiveDotFilterIterator.php: -------------------------------------------------------------------------------- 1 | current()->getFilename(), 0, 1); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /plugins/settings/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/surat_rujukan/Info.php: -------------------------------------------------------------------------------- 1 | 'Surat Rujukan', 5 | 'description' => 'Modul mlite surat rujukan untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'manajemen', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/surat_rujukan/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_surat_rujukan th, #tbl_mlite_surat_rujukan td, #forTable_mlite_surat_rujukan th, #forTable_mlite_surat_rujukan td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/surat_sakit/Info.php: -------------------------------------------------------------------------------- 1 | 'Surat Sakit', 5 | 'description' => 'Modul mlite surat sakit untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'manajemen', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/surat_sakit/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_surat_sakit th, #tbl_mlite_surat_sakit td, #forTable_mlite_surat_sakit th, #forTable_mlite_surat_sakit td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/surat_sehat/Info.php: -------------------------------------------------------------------------------- 1 | 'Surat Sehat', 5 | 'description' => 'Modul mlite surat sehat untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'manajemen', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/surat_sehat/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_surat_sehat th, #tbl_mlite_surat_sehat td, #forTable_mlite_surat_sehat th, #forTable_mlite_surat_sehat td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/triase/Info.php: -------------------------------------------------------------------------------- 1 | 'Triase', 5 | 'description' => 'Modul mlite triase untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'rekammedik', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'code', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/triase/css/admin/styles.css: -------------------------------------------------------------------------------- 1 | #tbl_mlite_triase th, #tbl_mlite_triase td, #forTable_mlite_triase th, #forTable_mlite_triase td { 2 | white-space: nowrap; 3 | } 4 | .dataTables_wrapper th, .dataTables_wrapper td { 5 | white-space: nowrap; 6 | } 7 | .pmd-datatable-pagination { 8 | padding-top: 10px !important; 9 | } 10 | .dataTables_length { 11 | display: inline; 12 | } 13 | .dataTables_paginate { 14 | display: inline; 15 | float: right; 16 | } 17 | @media (max-width:767px) { 18 | .dataTables_length{ 19 | display: none !important; 20 | } 21 | } -------------------------------------------------------------------------------- /plugins/users/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/users/Info.php: -------------------------------------------------------------------------------- 1 | 'Pengguna', 5 | 'description' => 'Pengelolaan pengguna', 6 | 'author' => 'Basoro.ID', 7 | 'category' => 'main', 8 | 'version' => '1.1', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'user', 11 | 'pages' => ['Login' => 'login'], 12 | 13 | 'install' => function () use ($core) { 14 | if (!is_dir(UPLOADS."/users")) { 15 | mkdir(UPLOADS."/users", 0777); 16 | } 17 | }, 18 | 'uninstall' => function () use ($core) { 19 | } 20 | ]; 21 | -------------------------------------------------------------------------------- /plugins/users/css/admin/users.css: -------------------------------------------------------------------------------- 1 | th, td { 2 | white-space: nowrap; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/users/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/users/img/default.png -------------------------------------------------------------------------------- /plugins/users/view/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/utd/Info.php: -------------------------------------------------------------------------------- 1 | 'UTD', 5 | 'description' => 'Modul unit transfusi darah untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'layanan', 8 | 'version' => '1.0', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'heart', 11 | 'install' => function () use ($core) { 12 | }, 13 | 'uninstall' => function() use($core) 14 | { 15 | } 16 | ]; 17 | -------------------------------------------------------------------------------- /plugins/utd/css/admin/utd.css: -------------------------------------------------------------------------------- 1 | #utd_pendonor th, #utd_pendonor td { 2 | white-space: nowrap; 3 | vertical-align: top !important; 4 | } 5 | -------------------------------------------------------------------------------- /plugins/utd/view/admin/cetak.utd.html: -------------------------------------------------------------------------------- 1 | 2 | Data Pendonor 3 | 4 | 5 | 6 | No. Pendonor 7 | Nama Pendonor 8 | Nomor KTP 9 | Jenis Kelamin 10 | Tgl. Lahir 11 | Alamat 12 | Gol. Darah/Resus 13 | No. Telepon 14 | 15 | 16 | 17 | {loop: $cetak} 18 | 19 | {$value.temp1} 20 | {$value.temp2} 21 | {$value.temp3} 22 | {$value.temp4} 23 | {$value.temp6} 24 | {$value.temp7} 25 | {$value.temp12} / {$value.temp13} 26 | {$value.temp14} 27 | 28 | {/loop} 29 | 30 | 31 | -------------------------------------------------------------------------------- /plugins/utd/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/vclaim/Info.php: -------------------------------------------------------------------------------- 1 | 'VClaim Request', 5 | 'description' => 'Modul vclaim api untuk mLITE', 6 | 'author' => 'Basoro', 7 | 'category' => 'bridging', 8 | 'version' => '1.1', 9 | 'compatibility' => '5.*.*', 10 | 'icon' => 'database', 11 | 'install' => function () use ($core) { 12 | 13 | if (!is_dir(UPLOADS."/qrcode")) { 14 | mkdir(UPLOADS."/qrcode", 0777); 15 | } 16 | if (!is_dir(UPLOADS."/qrcode/sep")) { 17 | mkdir(UPLOADS."/qrcode/sep", 0777); 18 | } 19 | 20 | }, 21 | 'uninstall' => function() use($core) 22 | { 23 | } 24 | ]; 25 | -------------------------------------------------------------------------------- /plugins/vclaim/img/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/vclaim/img/L.png -------------------------------------------------------------------------------- /plugins/vclaim/img/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/vclaim/img/P.png -------------------------------------------------------------------------------- /plugins/vclaim/img/bpjslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/vclaim/img/bpjslogo.png -------------------------------------------------------------------------------- /plugins/vclaim/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/vclaim/img/default.png -------------------------------------------------------------------------------- /plugins/vclaim/view/admin/add.antrian.html: -------------------------------------------------------------------------------- 1 | 2 | × Tutup 3 | Add Antrian BPJS 4 | 5 | 6 | Request: 7 | {$request} 8 | Response: 9 | {$response} 10 | Status: 11 | {$status} 12 | 13 | 16 | -------------------------------------------------------------------------------- /plugins/vclaim/view/admin/rujukan.modal.html: -------------------------------------------------------------------------------- 1 | 2 | × 3 | Detail Rujukan 4 | 5 | 6 | 7 | {$rujukan} 8 | 9 | 10 | 13 | -------------------------------------------------------------------------------- /plugins/vclaim/view/admin/spri.display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | No Rawat 5 | No Kartu 6 | No Surat 7 | Tgl. Surat 8 | Tgl. Periksa 9 | Dokter 10 | Poli 11 | 12 | 13 | 14 | {loop: $spri} 15 | 16 | {$value.no_rawat} 17 | {$value.no_kartu} 18 | {$value.no_surat} 19 | {$value.tgl_surat} 20 | {$value.tgl_rencana} 21 | {$value.nm_dokter_bpjs} 22 | {$value.nm_poli_bpjs} 23 | 24 | {/loop} 25 | 26 | 27 | -------------------------------------------------------------------------------- /plugins/vclaim/view/admin/srb.display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | No Rawat 5 | No SEP 6 | No Surat 7 | Nama Program 8 | Dokter 9 | Keterangan 10 | Saran 11 | 12 | 13 | 14 | {loop: $rujuk_keluar} 15 | 16 | {$value.no_rawat} 17 | {$value.no_sep} 18 | {$value.no_srb} 19 | {$value.namaprogram} 20 | {$value.nmdpjp} 21 | {$value.keterangan} 22 | {$value.saran} 23 | 24 | {/loop} 25 | 26 | 27 | -------------------------------------------------------------------------------- /plugins/vclaim/view/admin/sync_sep.display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | No Rawat 5 | No SEP 6 | 7 | 8 | 9 | {loop: $bridging_sep} 10 | 11 | {$value.no_rawat} 12 | {$value.no_sep} 13 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/vedika/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/vedika/css/styles.css: -------------------------------------------------------------------------------- 1 | th, td { 2 | white-space: nowrap; 3 | vertical-align: top !important; 4 | } 5 | 6 | .intro-header { 7 | margin:0; 8 | padding:0; 9 | } 10 | .intro-header .site-heading, 11 | .intro-header .post-heading, 12 | .intro-header .page-heading { 13 | padding: 80px 0 70px; 14 | color: white; 15 | } 16 | -------------------------------------------------------------------------------- /plugins/vedika/js/admin/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/vedika/js/admin/scripts.js -------------------------------------------------------------------------------- /plugins/vedika/js/scripts.js: -------------------------------------------------------------------------------- 1 | $( function() { 2 | $('.tanggal').datepicker({ 3 | dateFormat: 'yy-mm-dd' 4 | }); 5 | } ); 6 | -------------------------------------------------------------------------------- /plugins/vedika/view/admin/display.diagnosa.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kode 5 | Nama Diagnosa 6 | Prioritas 7 | Aksi 8 | 9 | 10 | 11 | {loop: $diagnosa_pasien} 12 | 13 | {$value.kd_penyakit} 14 | {$value.nm_penyakit} 15 | {$value.prioritas} 16 | 17 | 18 | {/loop} 19 | 20 | 21 | -------------------------------------------------------------------------------- /plugins/vedika/view/admin/display.prosedur.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kode 5 | Nama Prosedur 6 | Prioritas 7 | Aksi 8 | 9 | 10 | 11 | {loop: $prosedur_pasien} 12 | 13 | {$value.kode} 14 | {$value.deskripsi_panjang} 15 | {$value.prioritas} 16 | 17 | 18 | {/loop} 19 | 20 | 21 | -------------------------------------------------------------------------------- /plugins/vedika/view/admin/display.resume.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nomor Rawat 5 | Diagnosa 6 | Prosedur 7 | Aksi 8 | 9 | 10 | 11 | 12 | {$resume_pasien.no_rawat} 13 | {$resume_pasien.diagnosa_utama} 14 | {$resume_pasien.prosedur_utama} 15 | {if: $resume_pasien.no_rawat !=''}{/if} 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/veronisa/css/styles.css: -------------------------------------------------------------------------------- 1 | th, td { 2 | white-space: nowrap; 3 | vertical-align: top !important; 4 | } 5 | 6 | .intro-header { 7 | margin:0; 8 | padding:0; 9 | } 10 | .intro-header .site-heading, 11 | .intro-header .post-heading, 12 | .intro-header .page-heading { 13 | padding: 80px 0 70px; 14 | color: white; 15 | } 16 | -------------------------------------------------------------------------------- /plugins/veronisa/js/admin/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/veronisa/js/admin/scripts.js -------------------------------------------------------------------------------- /plugins/veronisa/js/scripts.js: -------------------------------------------------------------------------------- 1 | $( function() { 2 | $('.tanggal').datepicker({ 3 | dateFormat: 'yy-mm-dd' 4 | }); 5 | } ); 6 | -------------------------------------------------------------------------------- /plugins/veronisa/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/wagateway/Help.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/wagateway/images/waiting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/wagateway/images/waiting.jpg -------------------------------------------------------------------------------- /plugins/website/Help.md: -------------------------------------------------------------------------------- 1 | `{$news.title}` — displays the title of the news 2 | 3 | `{$news.desc}` — displays the news description 4 | 5 | `{$news.posts}` — array with the posts of the news 6 | 7 | `{$post}` — array with the data of current post 8 | 9 | `{$prev.url}` — address of the previous page of the pagination 10 | 11 | `{$next.url}` — address of the next page of the pagination 12 | 13 | `{$latestPosts}` — array with the latest posts 14 | 15 | `{$allTags}` — array with all tags 16 | -------------------------------------------------------------------------------- /plugins/website/css/admin/website.css: -------------------------------------------------------------------------------- 1 | #textarea-tabs { 2 | border-bottom: 0; 3 | } 4 | #textarea-tabs > li > a 5 | { 6 | border-top: 0; 7 | } 8 | #textarea-tabs > li.active > a, 9 | #textarea-tabs > li.active > a:hover, 10 | #textarea-tabs > li.active > a:focus { 11 | border-color: #ccc; 12 | border-top: 0; 13 | } 14 | #textarea-tabs.markItUp { 15 | margin-top: -5px; 16 | } 17 | .markItUpFooter { 18 | position: relative; 19 | z-index: 1; 20 | } -------------------------------------------------------------------------------- /plugins/website/img/about_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/about_03.jpg -------------------------------------------------------------------------------- /plugins/website/img/clinic_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/clinic_01.jpg -------------------------------------------------------------------------------- /plugins/website/img/clinic_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/clinic_02.jpg -------------------------------------------------------------------------------- /plugins/website/img/clinic_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/clinic_03.jpg -------------------------------------------------------------------------------- /plugins/website/img/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/default.jpg -------------------------------------------------------------------------------- /plugins/website/img/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/indicator.gif -------------------------------------------------------------------------------- /plugins/website/img/loaders/heart-loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/loaders/heart-loading2.gif -------------------------------------------------------------------------------- /plugins/website/img/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/logo-icon.png -------------------------------------------------------------------------------- /plugins/website/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/logo.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_rounded/loader.gif -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_rounded/sprite.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_square/btnNext.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_square/loader.gif -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/dark_square/sprite.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/default/default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/default/default_thumb.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/default/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/default/loader.gif -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/default/sprite.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/default/sprite_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/default/sprite_next.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/default/sprite_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/default/sprite_prev.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/default/sprite_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/default/sprite_x.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/default/sprite_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/default/sprite_y.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/btnNext.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/btnPrevious.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/default_thumbnail.gif -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/loader.gif -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/facebook/sprite.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/light_rounded/btnNext.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/light_rounded/loader.gif -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/light_rounded/sprite.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/light_square/btnNext.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/light_square/btnPrevious.png -------------------------------------------------------------------------------- /plugins/website/img/prettyPhoto/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/prettyPhoto/light_square/sprite.png -------------------------------------------------------------------------------- /plugins/website/img/service-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/service-bg.jpg -------------------------------------------------------------------------------- /plugins/website/img/service-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/service-icon1.png -------------------------------------------------------------------------------- /plugins/website/img/service-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/service-icon2.png -------------------------------------------------------------------------------- /plugins/website/img/service-icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/service-icon3.png -------------------------------------------------------------------------------- /plugins/website/img/service-icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/service-icon4.png -------------------------------------------------------------------------------- /plugins/website/img/service-icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/service-icon5.png -------------------------------------------------------------------------------- /plugins/website/img/service-icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/service-icon6.png -------------------------------------------------------------------------------- /plugins/website/img/slider-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/plugins/website/img/slider-bg.jpg -------------------------------------------------------------------------------- /plugins/website/view/admin/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {loop: $sub_modules} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {$value.desc} 12 | 13 | 14 | {$value.name} 15 | 16 | 17 | 18 | {/loop} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/website/view/disqus.html: -------------------------------------------------------------------------------- 1 | {if: !empty($settings.website.disqus)} 2 | {if: isset($isPost) && $post.comments == 1} 3 | 19 | {/if} 20 | {if: isset($isNews) || isset($isPost)} 21 | 22 | {/if} 23 | {/if} 24 | -------------------------------------------------------------------------------- /plugins/website/view/feed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$settings.title} 5 | {?= url() ?} 6 | {$settings.description} 7 | {loop: $posts} 8 | 9 | {$value.title} 10 | {$value.url} 11 | {$value.content|cut:250} 12 | {$value.published_at} 13 | {if: $value.cover_photo} 14 | 15 | {$value.cover_url} 16 | {$value.title} 17 | {?= url() ?} 18 | 19 | {/if} 20 | 21 | {/loop} 22 | 23 | -------------------------------------------------------------------------------- /robot.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /service-worker.js: -------------------------------------------------------------------------------- 1 | const cacheName = 'cache-v2'; 2 | const precacheResources = [ 3 | '/', 4 | 'assets/jscripts/bootstrap.min.js', 5 | 'assets/css/flatly.min.css', 6 | ]; 7 | 8 | self.addEventListener('install', event => { 9 | //console.log('Service worker install event!'); 10 | event.waitUntil( 11 | caches.open(cacheName) 12 | .then(cache => { 13 | return cache.addAll(precacheResources); 14 | }) 15 | ); 16 | }); 17 | 18 | self.addEventListener('activate', event => { 19 | //console.log('Service worker activate event!'); 20 | }); 21 | 22 | self.addEventListener('fetch', event => { 23 | //console.log('Fetch intercepted for:', event.request.url); 24 | event.respondWith(caches.match(event.request) 25 | .then(cachedResponse => { 26 | if (cachedResponse) { 27 | return cachedResponse; 28 | } 29 | return fetch(event.request); 30 | }) 31 | ); 32 | }); 33 | -------------------------------------------------------------------------------- /systems/AdminModule.php: -------------------------------------------------------------------------------- 1 | core->router->set($pattern, $callback); 16 | } else { 17 | $this->core->router->set($pattern, function () use ($callback) { 18 | return call_user_func_array([$this, $callback], func_get_args()); 19 | }); 20 | } 21 | } 22 | 23 | protected function setTemplate($file) 24 | { 25 | $this->core->template = $file; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /systems/data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/systems/data/.gitkeep -------------------------------------------------------------------------------- /systems/lib/Event.php: -------------------------------------------------------------------------------- 1 | 0) 14 | $(".navbar").addClass("is-fixed"); 15 | else 16 | $(".navbar").removeClass("is-fixed"); 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /themes/default/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Default", 3 | "version": "1.1", 4 | "author": "Basoro", 5 | "email": "info@mlite.id", 6 | "thumb": "preview.png" 7 | } 8 | -------------------------------------------------------------------------------- /themes/default/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basoro/mlite/1d7bee0fdd6cd2895f16bed9fff4da382f64de6b/themes/default/preview.png --------------------------------------------------------------------------------
Terima kasih telah mempercayakan layanan kesehatan anda ke {SITENAME}. Berikut kami kirimkan lampiran invoice/detail pembayaran anda.
Email ini secara otomatis dikirim oleh sistem, mohon jangan dibalas secara langsung (reply). Jika Anda tidak merasa mendaftar sebagai pasien di {SITENAME}, harap abaikan email ini.
Jika Anda memiliki pertanyaan, silakan hubungi kami melalui informasi kontak di situs.
11 | {SITENAME} 12 | {ADDRESS} - {TELP} 13 |
Terima kasih telah mempercayakan layanan kesehatan anda ke {SITENAME}. Berikut kami kirimkan lampiran hasil pemeriksaan laboratorium anda.
Terima kasih telah mempercayakan layanan kesehatan anda ke {SITENAME}. Berikut kami kirimkan lampiran hasil pemeriksaan radiologi anda.
{$response}
{$request}
{$status}
7 | {$rujukan} 8 |