├── system ├── .htaccess ├── fonts │ ├── texb.ttf │ └── index.html ├── index.html ├── core │ ├── index.html │ ├── Model.php │ ├── Controller.php │ └── Benchmark.php ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── pdo_utility.php │ │ ├── cubrid │ │ ├── index.html │ │ └── cubrid_utility.php │ │ ├── mssql │ │ ├── index.html │ │ └── mssql_utility.php │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ ├── index.html │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ ├── index.html │ │ └── oci8_utility.php │ │ ├── odbc │ │ ├── index.html │ │ └── odbc_utility.php │ │ ├── postgre │ │ ├── index.html │ │ └── postgre_utility.php │ │ ├── sqlite │ │ ├── index.html │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ ├── index.html │ │ └── sqlsrv_utility.php ├── helpers │ ├── index.html │ ├── language_helper.php │ ├── email_helper.php │ ├── path_helper.php │ ├── xml_helper.php │ ├── number_helper.php │ ├── directory_helper.php │ ├── typography_helper.php │ ├── cookie_helper.php │ ├── array_helper.php │ ├── download_helper.php │ └── security_helper.php ├── language │ ├── index.html │ └── english │ │ ├── index.html │ │ ├── number_lang.php │ │ ├── migration_lang.php │ │ ├── unit_test_lang.php │ │ ├── profiler_lang.php │ │ ├── ftp_lang.php │ │ ├── calendar_lang.php │ │ ├── upload_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── imglib_lang.php │ │ ├── db_lang.php │ │ └── date_lang.php └── libraries │ ├── index.html │ ├── Log.php │ └── Cache │ └── drivers │ └── Cache_dummy.php ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── views │ ├── view_vehicle.php │ ├── view_success.php │ ├── index.html │ ├── view_book_crash.php │ ├── admin_footer.php │ ├── footer.php │ ├── view_login.php │ ├── view_admin_user.php │ ├── view_admin_update_charge.php │ ├── view_schedule_details.php │ ├── view_admin_schedule_details.php │ ├── view_admin_vehicle.php │ ├── view_register.php │ ├── view_add_vehicle.php │ ├── view_admin_schedule.php │ ├── view_admin_add_vehicle.php │ └── view_schedule.php ├── index.html ├── core │ └── index.html ├── hooks │ └── index.html ├── logs │ └── index.html ├── config │ ├── index.html │ ├── hooks.php │ ├── profiler.php │ ├── doctypes.php │ ├── migration.php │ ├── constants.php │ ├── routes.php │ ├── foreign_chars.php │ ├── database.php │ ├── smileys.php │ └── autoload.php ├── errors │ ├── index.html │ ├── error_php.php │ ├── error_db.php │ ├── error_general.php │ └── error_404.php ├── helpers │ └── index.html ├── libraries │ ├── index.html │ └── MY_Form_validation.php ├── models │ ├── index.html │ ├── model_gallery.php │ └── model_user.php ├── controllers │ ├── index.html │ ├── home.php │ ├── login.php │ ├── register.php │ └── profile.php ├── third_party │ └── index.html └── language │ └── english │ └── index.html ├── .travis.yml ├── public ├── car │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ └── default.jpg ├── img │ └── pattern.png ├── calendar │ ├── img │ │ ├── tick.png │ │ ├── dark_wood.png │ │ └── slide-bg.png │ ├── less │ │ ├── calendar.less │ │ ├── week.less │ │ ├── variables.less │ │ ├── day.less │ │ ├── month.less │ │ ├── events.less │ │ └── grid.less │ ├── components │ │ ├── bootstrap3 │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── jstimezonedetect │ │ │ └── LICENCE.txt │ ├── tmpls │ │ ├── week-days.html │ │ ├── events-list.html │ │ ├── month-day.html │ │ ├── year-month.html │ │ ├── modal.html │ │ ├── week.html │ │ ├── month.html │ │ ├── year.html │ │ └── day.html │ ├── events.php │ └── js │ │ └── app.js ├── upload │ └── profile │ │ ├── 1 │ │ └── pic1.jpg │ │ ├── 2 │ │ └── pic1.jpg │ │ ├── 3 │ │ └── pic1.jpg │ │ ├── 5 │ │ └── pic1.jpg │ │ └── default.jpg ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── css │ ├── custom.css │ ├── admin_custom.css │ └── home_custom.css ├── .gitignore ├── .htaccess ├── charge.sql ├── reservation.sql ├── users.sql ├── vehicle.sql ├── license.txt └── database.php /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/views/view_vehicle.php: -------------------------------------------------------------------------------- 1 | coming soon -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | branches: 2 | except: 3 | - 2.1-stable 4 | - master -------------------------------------------------------------------------------- /public/car/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/1.jpg -------------------------------------------------------------------------------- /public/car/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/10.jpg -------------------------------------------------------------------------------- /public/car/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/11.jpg -------------------------------------------------------------------------------- /public/car/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/12.jpg -------------------------------------------------------------------------------- /public/car/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/2.jpg -------------------------------------------------------------------------------- /public/car/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/3.jpg -------------------------------------------------------------------------------- /public/car/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/4.jpg -------------------------------------------------------------------------------- /public/car/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/5.jpg -------------------------------------------------------------------------------- /public/car/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/6.jpg -------------------------------------------------------------------------------- /public/car/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/7.jpg -------------------------------------------------------------------------------- /public/car/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/8.jpg -------------------------------------------------------------------------------- /public/car/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/9.jpg -------------------------------------------------------------------------------- /public/car/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/car/default.jpg -------------------------------------------------------------------------------- /public/img/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/img/pattern.png -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /public/calendar/img/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/calendar/img/tick.png -------------------------------------------------------------------------------- /public/calendar/img/dark_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/calendar/img/dark_wood.png -------------------------------------------------------------------------------- /public/calendar/img/slide-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/calendar/img/slide-bg.png -------------------------------------------------------------------------------- /public/upload/profile/1/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/upload/profile/1/pic1.jpg -------------------------------------------------------------------------------- /public/upload/profile/2/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/upload/profile/2/pic1.jpg -------------------------------------------------------------------------------- /public/upload/profile/3/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/upload/profile/3/pic1.jpg -------------------------------------------------------------------------------- /public/upload/profile/5/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/upload/profile/5/pic1.jpg -------------------------------------------------------------------------------- /public/upload/profile/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/upload/profile/default.jpg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/view_success.php: -------------------------------------------------------------------------------- 1 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess -------------------------------------------------------------------------------- /public/calendar/less/calendar.less: -------------------------------------------------------------------------------- 1 | @import "variables.less"; 2 | @import "grid.less"; 3 | @import "month.less"; 4 | @import "week.less"; 5 | @import "day.less"; 6 | @import "events.less"; 7 | @import "theme.less"; 8 | -------------------------------------------------------------------------------- /public/calendar/components/bootstrap3/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/calendar/components/bootstrap3/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/calendar/components/bootstrap3/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/calendar/components/bootstrap3/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/calendar/components/bootstrap3/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laxxers/car-rental-management-system/HEAD/public/calendar/components/bootstrap3/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- 1 | img { 11 | display: block; 12 | height: 150px; /* add this */ 13 | margin-left: auto; 14 | margin-right: auto; 15 | max-width: 100%; 16 | } -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |Severity:
6 |Message:
7 |Filename:
8 |Line Number:
9 | 10 |