├── .gitattributes ├── README.md ├── application ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── _notes │ │ └── dwsync.xml │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── _notes │ │ └── dwsync.xml │ ├── accountant.php │ ├── admin.php │ ├── doctor.php │ ├── index.html │ ├── install.php │ ├── laboratorist.php │ ├── login.php │ ├── multilanguage.php │ ├── nurse.php │ ├── patient.php │ └── pharmacist.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── index.html │ └── multi_language_helper.php ├── hooks │ └── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ ├── Paypal.php │ ├── _notes │ │ └── dwsync.xml │ └── index.html ├── logs │ └── index.html ├── models │ ├── _notes │ │ └── dwsync.xml │ ├── crud_model.php │ ├── email_model.php │ ├── index.html │ └── language.php ├── third_party │ └── index.html └── views │ ├── .htaccess │ ├── _notes │ └── dwsync.xml │ ├── accountant │ ├── dashboard.php │ ├── manage_invoice.php │ ├── manage_profile.php │ ├── navigation.php │ ├── payment_history.php │ ├── take_cash_payment.php │ ├── view_invoice.php │ └── view_payment.php │ ├── admin │ ├── backup_restore.php │ ├── dashboard.php │ ├── manage_accountant.php │ ├── manage_department.php │ ├── manage_doctor.php │ ├── manage_laboratorist.php │ ├── manage_language.php │ ├── manage_noticeboard.php │ ├── manage_nurse.php │ ├── manage_patient.php │ ├── manage_pharmacist.php │ ├── manage_profile.php │ ├── navigation.php │ ├── system_settings.php │ ├── view_appointment.php │ ├── view_bed_status.php │ ├── view_blood_bank.php │ ├── view_log.php │ ├── view_medicine.php │ ├── view_payment.php │ └── view_report.php │ ├── doctor │ ├── dashboard.php │ ├── manage_appointment.php │ ├── manage_bed_allotment.php │ ├── manage_patient.php │ ├── manage_prescription.php │ ├── manage_profile.php │ ├── manage_report.php │ ├── navigation.php │ └── view_blood_bank.php │ ├── footer.php │ ├── four_zero_four.php │ ├── header.php │ ├── includes.php │ ├── index.html │ ├── index.php │ ├── install │ ├── index.html │ └── index.php │ ├── laboratorist │ ├── dashboard.php │ ├── manage_blood_bank.php │ ├── manage_blood_donor.php │ ├── manage_prescription.php │ ├── manage_profile.php │ ├── navigation.php │ └── view_blood_bank.php │ ├── login.php │ ├── nurse │ ├── dashboard.php │ ├── manage_bed.php │ ├── manage_bed_allotment.php │ ├── manage_blood_bank.php │ ├── manage_blood_donor.php │ ├── manage_patient.php │ ├── manage_profile.php │ ├── manage_report.php │ └── navigation.php │ ├── page_info.php │ ├── patient │ ├── dashboard.php │ ├── manage_patient.php │ ├── manage_profile.php │ ├── navigation.php │ ├── payment_history.php │ ├── view_admit_history.php │ ├── view_appointment.php │ ├── view_blood_bank.php │ ├── view_doctor.php │ ├── view_invoice.php │ ├── view_operation_history.php │ └── view_prescription.php │ └── pharmacist │ ├── dashboard.php │ ├── manage_medicine.php │ ├── manage_medicine_category.php │ ├── manage_prescription.php │ ├── manage_profile.php │ └── navigation.php ├── database └── hms.sql ├── index.php ├── readme.txt ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php ├── template ├── css │ ├── Copy of bayanno.css │ ├── EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff │ ├── MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff │ ├── _notes │ │ └── dwsync.xml │ ├── bayanno.css │ ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff │ ├── dosis-light.ttf │ ├── dosis-regular.ttf │ ├── font.css │ ├── fontawesome-webfont-ie-fix.eot │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── klavika.otf │ └── segoe.ttf ├── images │ ├── Thumbs.db │ ├── bg.png │ ├── blue.png │ ├── blue@2x.png │ ├── glyphicons-halflings-white.html │ ├── glyphicons-halflings.html │ ├── ie-spacer.gif │ └── loading.gif ├── install │ ├── images │ │ ├── checked.png │ │ └── error.png │ ├── install.css │ ├── jquery.min.js │ └── sliding.form.js └── js │ ├── _notes │ └── dwsync.xml │ ├── bayanno.js │ ├── excanvas.js │ └── html5shiv.js └── uploads ├── Thumbs.db ├── logo.png ├── logo1.png └── online-gaming-addiction-internet-computer-addiction-ipredator-internet-addiction-help.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/_notes/dwsync.xml: -------------------------------------------------------------------------------- 1 | 2 |Directory access is forbidden.
8 | 9 | 10 |