├── README.md ├── _config.yml ├── application ├── cache │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── config.php~ │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── routes.php~ │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── AuthController.php │ ├── AuthController.php~ │ ├── MainController.php │ ├── MainController.php~ │ ├── Welcome.php │ └── index.html ├── core │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── Bcrypt.php │ └── index.html ├── lll ├── logs │ └── index.html ├── models │ ├── Employee.php │ ├── User.php │ ├── User.php~ │ └── index.html ├── third_party │ └── index.html └── views │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── inc │ ├── navbar.php │ ├── usernavbar.php │ └── usernavbar.php~ │ ├── index.html │ ├── main.php │ ├── pages │ ├── admin-side-leave-list.php │ ├── adminlogin.php │ ├── employee-add.php │ ├── employee-add.php~ │ ├── employee-list.php │ ├── employee-list.php~ │ ├── employee-update.php │ ├── employee-update.php~ │ ├── home.php │ ├── home.php~ │ ├── leaves-list.php │ ├── login.php~ │ ├── register.php │ ├── register.php~ │ ├── req-leave.php │ ├── req-leave.php~ │ ├── userhome.php │ ├── userlogin.php │ ├── userlogin.php~ │ └── work-hours-list.php │ ├── usermain.php │ ├── usermain.php~ │ └── welcome_message.php ├── assets ├── bootstrap-datepicker │ ├── css │ │ ├── bootstrap-datepicker.css │ │ ├── bootstrap-datepicker.css.map │ │ ├── bootstrap-datepicker.min.css │ │ ├── bootstrap-datepicker.min.css.map │ │ ├── bootstrap-datepicker.standalone.css │ │ ├── bootstrap-datepicker.standalone.css.map │ │ ├── bootstrap-datepicker.standalone.min.css │ │ ├── bootstrap-datepicker.standalone.min.css.map │ │ ├── bootstrap-datepicker3.css │ │ ├── bootstrap-datepicker3.css.map │ │ ├── bootstrap-datepicker3.min.css │ │ ├── bootstrap-datepicker3.min.css.map │ │ ├── bootstrap-datepicker3.standalone.css │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ ├── bootstrap-datepicker3.standalone.min.css │ │ └── bootstrap-datepicker3.standalone.min.css.map │ ├── js │ │ ├── bootstrap-datepicker.js │ │ └── bootstrap-datepicker.min.js │ └── locales │ │ ├── bootstrap-datepicker.ar.min.js │ │ ├── bootstrap-datepicker.az.min.js │ │ ├── bootstrap-datepicker.bg.min.js │ │ ├── bootstrap-datepicker.bs.min.js │ │ ├── bootstrap-datepicker.ca.min.js │ │ ├── bootstrap-datepicker.cs.min.js │ │ ├── bootstrap-datepicker.cy.min.js │ │ ├── bootstrap-datepicker.da.min.js │ │ ├── bootstrap-datepicker.de.min.js │ │ ├── bootstrap-datepicker.el.min.js │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ ├── bootstrap-datepicker.eo.min.js │ │ ├── bootstrap-datepicker.es.min.js │ │ ├── bootstrap-datepicker.et.min.js │ │ ├── bootstrap-datepicker.eu.min.js │ │ ├── bootstrap-datepicker.fa.min.js │ │ ├── bootstrap-datepicker.fi.min.js │ │ ├── bootstrap-datepicker.fo.min.js │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ ├── bootstrap-datepicker.fr.min.js │ │ ├── bootstrap-datepicker.gl.min.js │ │ ├── bootstrap-datepicker.he.min.js │ │ ├── bootstrap-datepicker.hr.min.js │ │ ├── bootstrap-datepicker.hu.min.js │ │ ├── bootstrap-datepicker.hy.min.js │ │ ├── bootstrap-datepicker.id.min.js │ │ ├── bootstrap-datepicker.is.min.js │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ ├── bootstrap-datepicker.it.min.js │ │ ├── bootstrap-datepicker.ja.min.js │ │ ├── bootstrap-datepicker.ka.min.js │ │ ├── bootstrap-datepicker.kh.min.js │ │ ├── bootstrap-datepicker.kk.min.js │ │ ├── bootstrap-datepicker.ko.min.js │ │ ├── bootstrap-datepicker.kr.min.js │ │ ├── bootstrap-datepicker.lt.min.js │ │ ├── bootstrap-datepicker.lv.min.js │ │ ├── bootstrap-datepicker.me.min.js │ │ ├── bootstrap-datepicker.mk.min.js │ │ ├── bootstrap-datepicker.mn.min.js │ │ ├── bootstrap-datepicker.ms.min.js │ │ ├── bootstrap-datepicker.nb.min.js │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ ├── bootstrap-datepicker.nl.min.js │ │ ├── bootstrap-datepicker.no.min.js │ │ ├── bootstrap-datepicker.pl.min.js │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ ├── bootstrap-datepicker.pt.min.js │ │ ├── bootstrap-datepicker.ro.min.js │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ ├── bootstrap-datepicker.rs.min.js │ │ ├── bootstrap-datepicker.ru.min.js │ │ ├── bootstrap-datepicker.sk.min.js │ │ ├── bootstrap-datepicker.sl.min.js │ │ ├── bootstrap-datepicker.sq.min.js │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ ├── bootstrap-datepicker.sr.min.js │ │ ├── bootstrap-datepicker.sv.min.js │ │ ├── bootstrap-datepicker.sw.min.js │ │ ├── bootstrap-datepicker.th.min.js │ │ ├── bootstrap-datepicker.tr.min.js │ │ ├── bootstrap-datepicker.uk.min.js │ │ ├── bootstrap-datepicker.vi.min.js │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ └── bootstrap-datepicker.zh-TW.min.js ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── custom.css ├── dash.css ├── filter-table.css └── modal.css ├── composer.json ├── contributing.md ├── database ├── ems_db.sql └── ems_db.sql~ ├── index.php ├── license.txt ├── readme.rst └── system ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Log.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php ├── compat │ ├── hash.php │ ├── index.html │ ├── mbstring.php │ ├── password.php │ └── standard.php └── index.html ├── database ├── DB_cache.php ├── DB_forge.php ├── DB_query_builder.php ├── DB_result.php ├── DB_utility.php └── drivers │ ├── cubrid │ ├── cubrid_driver.php │ ├── cubrid_forge.php │ ├── cubrid_result.php │ ├── cubrid_utility.php │ └── index.html │ ├── ibase │ ├── ibase_driver.php │ ├── ibase_forge.php │ ├── ibase_result.php │ ├── ibase_utility.php │ └── 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 │ └── subdrivers │ │ ├── index.html │ │ ├── pdo_4d_driver.php │ │ ├── pdo_4d_forge.php │ │ ├── pdo_cubrid_driver.php │ │ ├── pdo_cubrid_forge.php │ │ ├── pdo_dblib_driver.php │ │ ├── pdo_dblib_forge.php │ │ ├── pdo_firebird_driver.php │ │ ├── pdo_firebird_forge.php │ │ ├── pdo_ibm_driver.php │ │ ├── pdo_ibm_forge.php │ │ ├── pdo_informix_driver.php │ │ ├── pdo_informix_forge.php │ │ ├── pdo_mysql_driver.php │ │ ├── pdo_mysql_forge.php │ │ ├── pdo_oci_driver.php │ │ ├── pdo_oci_forge.php │ │ ├── pdo_odbc_driver.php │ │ ├── pdo_odbc_forge.php │ │ ├── pdo_pgsql_driver.php │ │ ├── pdo_pgsql_forge.php │ │ ├── pdo_sqlite_driver.php │ │ ├── pdo_sqlite_forge.php │ │ ├── pdo_sqlsrv_driver.php │ │ └── pdo_sqlsrv_forge.php │ ├── postgre │ ├── index.html │ ├── postgre_driver.php │ ├── postgre_forge.php │ ├── postgre_result.php │ └── postgre_utility.php │ └── sqlite3 │ ├── sqlite3_driver.php │ └── sqlite3_forge.php ├── 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 │ ├── pagination_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 │ ├── Cache_redis.php │ ├── Cache_wincache.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Encryption.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Javascript ├── Jquery.php └── index.html ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session ├── Session.php ├── SessionHandlerInterface.php ├── Session_driver.php ├── drivers │ ├── Session_database_driver.php │ ├── Session_files_driver.php │ ├── Session_memcached_driver.php │ ├── Session_redis_driver.php │ └── index.html └── index.html ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/_config.yml -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/config.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/config.php~ -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/routes.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/routes.php~ -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/controllers/AuthController.php -------------------------------------------------------------------------------- /application/controllers/AuthController.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/controllers/AuthController.php~ -------------------------------------------------------------------------------- /application/controllers/MainController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/controllers/MainController.php -------------------------------------------------------------------------------- /application/controllers/MainController.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/controllers/MainController.php~ -------------------------------------------------------------------------------- /application/controllers/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/controllers/Welcome.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/Bcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/libraries/Bcrypt.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/lll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/models/Employee.php -------------------------------------------------------------------------------- /application/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/models/User.php -------------------------------------------------------------------------------- /application/models/User.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/models/User.php~ -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/inc/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/inc/navbar.php -------------------------------------------------------------------------------- /application/views/inc/usernavbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/inc/usernavbar.php -------------------------------------------------------------------------------- /application/views/inc/usernavbar.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/inc/usernavbar.php~ -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/main.php -------------------------------------------------------------------------------- /application/views/pages/admin-side-leave-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/admin-side-leave-list.php -------------------------------------------------------------------------------- /application/views/pages/adminlogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/adminlogin.php -------------------------------------------------------------------------------- /application/views/pages/employee-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/employee-add.php -------------------------------------------------------------------------------- /application/views/pages/employee-add.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/employee-add.php~ -------------------------------------------------------------------------------- /application/views/pages/employee-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/employee-list.php -------------------------------------------------------------------------------- /application/views/pages/employee-list.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/employee-list.php~ -------------------------------------------------------------------------------- /application/views/pages/employee-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/employee-update.php -------------------------------------------------------------------------------- /application/views/pages/employee-update.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/employee-update.php~ -------------------------------------------------------------------------------- /application/views/pages/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/home.php -------------------------------------------------------------------------------- /application/views/pages/home.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/home.php~ -------------------------------------------------------------------------------- /application/views/pages/leaves-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/leaves-list.php -------------------------------------------------------------------------------- /application/views/pages/login.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/login.php~ -------------------------------------------------------------------------------- /application/views/pages/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/register.php -------------------------------------------------------------------------------- /application/views/pages/register.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/register.php~ -------------------------------------------------------------------------------- /application/views/pages/req-leave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/req-leave.php -------------------------------------------------------------------------------- /application/views/pages/req-leave.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/req-leave.php~ -------------------------------------------------------------------------------- /application/views/pages/userhome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/userhome.php -------------------------------------------------------------------------------- /application/views/pages/userlogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/userlogin.php -------------------------------------------------------------------------------- /application/views/pages/userlogin.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/userlogin.php~ -------------------------------------------------------------------------------- /application/views/pages/work-hours-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/pages/work-hours-list.php -------------------------------------------------------------------------------- /application/views/usermain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/usermain.php -------------------------------------------------------------------------------- /application/views/usermain.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/usermain.php~ -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.min.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.min.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker.standalone.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.min.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.min.css -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/js/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/js/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.nb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.nb.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.sw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.sw.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js -------------------------------------------------------------------------------- /assets/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/bootstrap/js/npm.js -------------------------------------------------------------------------------- /assets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/custom.css -------------------------------------------------------------------------------- /assets/dash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/dash.css -------------------------------------------------------------------------------- /assets/filter-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/filter-table.css -------------------------------------------------------------------------------- /assets/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/assets/modal.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/contributing.md -------------------------------------------------------------------------------- /database/ems_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/database/ems_db.sql -------------------------------------------------------------------------------- /database/ems_db.sql~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/database/ems_db.sql~ -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/index.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/license.txt -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/readme.rst -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_database_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/drivers/Session_database_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_files_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/drivers/Session_files_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_memcached_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/drivers/Session_memcached_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_redis_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/drivers/Session_redis_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen-vishnu/Codeigniter-Employee-Management-System/HEAD/system/libraries/index.html --------------------------------------------------------------------------------