├── README.md ├── application ├── ._.DS_Store ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── ._.DS_Store │ ├── ._config.php │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── app.php │ ├── dashboard_admin.php │ ├── data_dp3.php │ ├── data_gaji_pokok.php │ ├── data_hukuman.php │ ├── data_keluarga.php │ ├── data_organisasi.php │ ├── data_pelatihan.php │ ├── data_pendidikan.php │ ├── data_penghargaan.php │ ├── data_riwayat_jabatan.php │ ├── data_riwayat_pangkat.php │ ├── data_seminar.php │ ├── index.html │ ├── laporan_pegawai_ikut_pelatihan.php │ ├── laporan_pegawai_penempatan_kerja.php │ ├── laporan_pegawai_status_golongan.php │ ├── laporan_pegawai_struktural_fungsional.php │ ├── laporan_pegawai_unit_satuan.php │ ├── laporan_pegawai_urut_kepangkatan.php │ ├── manage_user.php │ ├── master_eselon.php │ ├── master_golongan.php │ ├── master_hukuman.php │ ├── master_jabatan.php │ ├── master_lokasi_kerja.php │ ├── master_lokasi_pelatihan.php │ ├── master_pelatihan.php │ ├── master_penghargaan.php │ ├── master_ppk.php │ ├── master_satuan_kerja.php │ ├── master_status_jabatan.php │ ├── master_status_pegawai.php │ ├── master_unit_kerja.php │ └── pegawai.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── ._.DS_Store │ ├── app_login_model.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── ._.DS_Store │ ├── app │ ├── ._.DS_Store │ └── login.php │ ├── dashboard_admin │ ├── ._.DS_Store │ ├── home │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail_pegawai.php │ │ └── home.php │ ├── laporan │ │ ├── ikut_pelatihan │ │ │ ├── export.php │ │ │ └── home.php │ │ ├── penempatan_kerja │ │ │ ├── export.php │ │ │ └── home.php │ │ ├── status_golongan │ │ │ ├── export.php │ │ │ └── home.php │ │ ├── struktural_fungsional │ │ │ ├── export.php │ │ │ └── home.php │ │ ├── unit_satuan │ │ │ ├── export.php │ │ │ └── home.php │ │ └── urut_kepangkatan │ │ │ ├── export.php │ │ │ └── home.php │ ├── master │ │ ├── ._.DS_Store │ │ ├── ._bg_pegawai.php │ │ ├── ._header.php │ │ ├── bg_pegawai.php │ │ ├── data_dp3 │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_gaji_pokok │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_hukuman │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_keluarga │ │ │ ├── ._.DS_Store │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_organisasi │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_pelatihan │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_pendidikan │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_penghargaan │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_riwayat_jabatan │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_riwayat_pangkat │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ ├── data_seminar │ │ │ ├── ._.DS_Store │ │ │ ├── ._bg_home.php │ │ │ ├── ._detail.php │ │ │ ├── ._input.php │ │ │ ├── bg_home.php │ │ │ ├── detail.php │ │ │ └── input.php │ │ └── header.php │ ├── master_eselon │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_golongan │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_hukuman │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_jabatan │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_lokasi_kerja │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_lokasi_pelatihan │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_pelatihan │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_penghargaan │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_ppk │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_satuan_kerja │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_status_jabatan │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_status_pegawai │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── master_unit_kerja │ │ ├── ._.DS_Store │ │ ├── ._home.php │ │ ├── detail.php │ │ ├── home.php │ │ └── input.php │ ├── pegawai │ │ ├── ._.DS_Store │ │ ├── ._detail_pegawai.php │ │ ├── ._input.php │ │ ├── detail_pegawai.php │ │ └── input.php │ └── user │ │ ├── bg_change_password.php │ │ ├── detail.php │ │ ├── header.php │ │ ├── input.php │ │ └── list_user.php │ └── index.html ├── asset ├── ._.DS_Store ├── colorbox │ ├── ._jquery.min.js │ ├── colorbox - Copy.css │ ├── colorbox.css │ ├── controls.png │ ├── jquery.colorbox-min.js │ ├── jquery.colorbox.js │ ├── jquery.min.js │ ├── loading.gif │ ├── overlay.png │ └── xxcolorbox.css ├── css │ ├── ._.DS_Store │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── chosen-sprite.png │ ├── chosen.css │ ├── docs.css │ └── jquery.fancybox-1.3.4.css ├── foto_pegawai │ ├── 213520930-20121119-010814.jpg │ ├── 575523315-20121119-011345.jpg │ ├── 698627129-20121119-021523.jpg │ ├── medium │ │ ├── 213520930-20121119-010814.jpg │ │ ├── 575523315-20121119-011345.jpg │ │ ├── 698627129-20121119-021523.jpg │ │ └── no-img.jpg │ ├── no-img.jpg │ └── thumb │ │ ├── 213520930-20121119-010814.jpg │ │ ├── 575523315-20121119-011345.jpg │ │ ├── 698627129-20121119-021523.jpg │ │ └── no-img.jpg ├── img │ ├── ._bg_dotted.png │ ├── bg_dotted.png │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── ._.DS_Store │ ├── ._bootstrap-tab.js │ ├── application.js │ ├── bootstrap-tab.js │ ├── bootstrap-tooltip.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── bootswatch.js │ ├── chosen.jquery.js │ ├── jquery-ui-1.7.2.custom.min.js │ └── jquery.ui.i18n.all.min.js ├── db_simpeg.sql ├── index.php └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php └── index.html ├── database ├── DB.php ├── DB_active_rec.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ └── pdo_utility.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php └── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ └── Cache_memcached.php ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Log.php ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session.php ├── Sha1.php ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php ├── index.html └── javascript └── Jquery.php /README.md: -------------------------------------------------------------------------------- 1 | No Longer Maintained 2 | ========= 3 | Simpeg is no longer being maintained by me. Appologies to those of you that have invested time into this package. Feel free to fork it if you feel the need. Once again, I'm sorry, I just don't have the time. 4 | 5 | simpeg 6 | ========= 7 | 8 | Simple Employee Management Applications 9 | 10 | Just simple employee management application with CodeIgniter and Twitter Bootstrap 11 | -------------------------------------------------------------------------------- /application/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/._.DS_Store -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/config/._.DS_Store -------------------------------------------------------------------------------- /application/config/._config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/config/._config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->latest() this is the version that schema will 21 | | be upgraded / downgraded to. 22 | | 23 | */ 24 | $config['migration_version'] = 0; 25 | 26 | 27 | /* 28 | |-------------------------------------------------------------------------- 29 | | Migrations Path 30 | |-------------------------------------------------------------------------- 31 | | 32 | | Path to your migrations folder. 33 | | Typically, it will be within your application path. 34 | | Also, writing permission is required within the migrations path. 35 | | 36 | */ 37 | $config['migration_path'] = APPPATH . 'migrations/'; 38 | 39 | 40 | /* End of file migration.php */ 41 | /* Location: ./application/config/migration.php */ -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 Page Not Found 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/models/._.DS_Store -------------------------------------------------------------------------------- /application/models/app_login_model.php: -------------------------------------------------------------------------------- 1 | db->get_where('tbl_user_login', $login); 16 | if($cek->num_rows()>0) 17 | { 18 | foreach($cek->result() as $qad) 19 | { 20 | $sess_data['logged_in'] = 'yesGetMeLoginBaby'; 21 | $sess_data['id_user'] = $qad->id_user_login; 22 | $sess_data['username'] = $qad->username; 23 | $sess_data['nama'] = $qad->nama_lengkap; 24 | $sess_data['stts'] = $qad->stts; 25 | $this->session->set_userdata($sess_data); 26 | } 27 | header('location:'.base_url().''); 28 | } 29 | else 30 | { 31 | $this->session->set_flashdata('result_login', "Maaf, kombinasi username dan password yang anda masukkan tidak valid dengan database kami."); 32 | header('location:'.base_url().''); 33 | } 34 | } 35 | } 36 | 37 | /* End of file app_login_model.php */ 38 | /* Location: ./application/models/app_login_model.php */ -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/._.DS_Store -------------------------------------------------------------------------------- /application/views/app/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/app/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/home/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/home/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/home/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/home/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/._bg_pegawai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/._bg_pegawai.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/._header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/._header.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_dp3/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_dp3/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_dp3/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_dp3/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_dp3/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_dp3/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_dp3/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_dp3/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_dp3/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | result_array() as $dp3) 42 | { 43 | ?> 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 61 | 62 | 66 | 67 |
No.TahunRata-RataAtasanPenilaiMengetahuiAksi
52 |
53 | Lihat Detail 54 | 55 | 59 |
60 |
68 |
69 |
70 | 71 | 72 | 75 | 76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_gaji_pokok/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_gaji_pokok/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_gaji_pokok/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_gaji_pokok/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_gaji_pokok/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_gaji_pokok/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_gaji_pokok/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_gaji_pokok/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_gaji_pokok/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | result_array() as $dgp) 43 | { 44 | ?> 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 63 | 64 | 68 | 69 |
No.GolonganNomor SKTanggal SKGaji PokokTanggal MulaiTanggal SelesaiAksi
54 |
55 | Lihat Detail 56 | 57 | 61 |
62 |
70 |
71 |
72 | 73 | 74 | 77 | 78 | 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_hukuman/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_hukuman/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_hukuman/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_hukuman/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_hukuman/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_hukuman/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_hukuman/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_hukuman/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_hukuman/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | result_array() as $dh) 43 | { 44 | ?> 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 63 | 64 | 68 | 69 |
No.Nama HukumanNomor SKTanggal SKTanggal MulaiTanggal SelesaiMasa BerlakuAksi
54 |
55 | Lihat Detail 56 | 57 | 61 |
62 |
70 |
71 |
72 | 73 | 74 | 77 | 78 | 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_keluarga/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_keluarga/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_keluarga/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_keluarga/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_keluarga/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | result_array() as $dk) 42 | { 43 | ?> 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 62 | 63 | 67 | 68 |
No.Nama KeluargaTanggal LahirStatus KawinTanggal NikahPekerjaanAksi
52 |
53 | 54 | Lihat Detail 55 | 56 | 60 |
61 |
69 |
70 |
71 | 72 | 73 | 76 | 77 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_organisasi/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_organisasi/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_organisasi/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_organisasi/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_organisasi/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_organisasi/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_organisasi/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_organisasi/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_organisasi/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | result_array() as $ds) 40 | { 41 | ?> 42 | 43 | 44 | 45 | 46 | 47 | 57 | 58 | 62 | 63 |
No.UraianLokasiTanggalAksi
48 |
49 | Lihat Detail 50 | 51 | 55 |
56 |
64 |
65 |
66 | 67 | 68 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_organisasi/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Data Seminar - session->userdata("nama_pegawai"); ?> 37 | 38 |
39 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 49 |
50 |
51 | 52 |
53 | 54 |
55 | 57 |
58 |
59 | 60 | 61 | 62 | 63 | 64 |
65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pelatihan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pelatihan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pelatihan/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pelatihan/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pelatihan/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pelatihan/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pelatihan/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pelatihan/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pelatihan/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | result_array() as $dpl) 42 | { 43 | ?> 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 61 | 62 | 66 | 67 |
No.Nama PelatihanLokasiTanggal SertifikatJam PelatihanNegaraAksi
52 |
53 | Lihat Detail 54 | 55 | 59 |
60 |
68 |
69 |
70 | 71 | 72 | 75 | 76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pendidikan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pendidikan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pendidikan/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pendidikan/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pendidikan/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pendidikan/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pendidikan/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_pendidikan/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_pendidikan/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | result_array() as $dpn) 42 | { 43 | ?> 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 61 | 62 | 66 | 67 |
No.Tingkat PendidikanJurusanTeknik/Non TeknikSekolahTanggal LulusAksi
52 |
53 | Lihat Detail 54 | 55 | 59 |
60 |
68 |
69 |
70 | 71 | 72 | 75 | 76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_penghargaan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_penghargaan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_penghargaan/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_penghargaan/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_penghargaan/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_penghargaan/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_penghargaan/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_penghargaan/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_penghargaan/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | result_array() as $drj) 40 | { 41 | ?> 42 | 43 | 44 | 45 | 46 | 47 | 57 | 58 | 62 | 63 |
No.Nama PenghargaanNomor SKTanggal SKAksi
48 |
49 | Lihat Detail 50 | 51 | 55 |
56 |
64 |
65 |
66 | 67 | 68 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_jabatan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_jabatan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_jabatan/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_jabatan/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_jabatan/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_jabatan/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_jabatan/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_jabatan/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_jabatan/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | result_array() as $drj) 42 | { 43 | ?> 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 61 | 62 | 66 | 67 |
No.StatusPenempatanJabatanUnit KerjaEselonAksi
52 |
53 | Lihat Detail 54 | 55 | 59 |
60 |
68 |
69 |
70 | 71 | 72 | 75 | 76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_pangkat/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_pangkat/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_pangkat/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_pangkat/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_pangkat/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_pangkat/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_pangkat/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_riwayat_pangkat/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_riwayat_pangkat/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | result_array() as $dk) 42 | { 43 | ?> 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 62 | 63 | 67 | 68 |
No.Nama GolonganStatusNomor SKTanggal SKMasa KerjaAksi
52 |
53 | 54 | Lihat Detail 55 | 56 | 60 |
61 |
69 |
70 |
71 | 72 | 73 | 76 | 77 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_seminar/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_seminar/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_seminar/._bg_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_seminar/._bg_home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_seminar/._detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_seminar/._detail.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_seminar/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master/data_seminar/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_seminar/bg_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | result_array() as $ds) 40 | { 41 | ?> 42 | 43 | 44 | 45 | 46 | 47 | 57 | 58 | 62 | 63 |
No.UraianLokasiTanggalAksi
48 |
49 | Lihat Detail 50 | 51 | 55 |
56 |
64 |
65 |
66 | 67 | 68 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master/data_seminar/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Data Seminar - session->userdata("nama_pegawai"); ?> 37 | 38 |
39 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 49 |
50 |
51 | 52 |
53 | 54 |
55 | 57 |
58 |
59 | 60 | 61 | 62 | 63 | 64 |
65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_eselon/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_eselon/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_eselon/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_eselon/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_eselon/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Eselon 30 | 31 |
32 | 33 |
34 |
35 |
36 | 37 |
38 | 39 |
40 |
41 | 42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_eselon/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Eselon 37 | 38 |
39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 |
47 |
48 | 49 | 50 |
51 |
52 | 53 | 54 |
55 |
56 | 57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_golongan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_golongan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_golongan/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_golongan/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_golongan/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Golongan 30 | 31 |
32 | 33 |
34 |
35 |
36 | 37 |
38 | 39 |
40 |
41 |
42 | 43 |
44 | 45 |
46 |
47 | 48 |
49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_golongan/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Golongan 37 | 38 |
39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 |
47 |
48 |
49 | 50 |
51 | 52 |
53 |
54 | 55 | 56 |
57 |
58 | 59 | 60 |
61 |
62 | 63 |
64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_hukuman/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_hukuman/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_hukuman/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_hukuman/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_hukuman/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Hukuman 30 | 31 |
32 | 33 |
34 |
35 | 36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_hukuman/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Hukuman 37 | 38 |
39 | 40 |
41 |
42 | 43 | 44 |
45 |
46 | 47 | 48 |
49 |
50 | 51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_jabatan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_jabatan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_jabatan/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_jabatan/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_jabatan/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Jabatan 30 | 31 |
32 | 33 |
34 |
35 |
36 | 37 |
38 | 39 |
40 |
41 | 42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_jabatan/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Jabatan 37 | 38 |
39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 |
47 |
48 | 49 | 50 |
51 |
52 | 53 | 54 |
55 |
56 | 57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_kerja/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_lokasi_kerja/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_kerja/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_lokasi_kerja/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_kerja/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Lokasi Pelatihan 30 | 31 |
32 | 33 |
34 |
35 | 36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_kerja/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Lokasi Kerja 37 | 38 |
39 | 40 |
41 |
42 | 43 | 44 |
45 |
46 | 47 | 48 |
49 |
50 | 51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_pelatihan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_lokasi_pelatihan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_pelatihan/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_lokasi_pelatihan/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_pelatihan/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Lokasi Pelatihan 30 | 31 |
32 | 33 |
34 |
35 | 36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_lokasi_pelatihan/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Lokasi Pelatihan 37 | 38 |
39 | 40 |
41 |
42 | 43 | 44 |
45 |
46 | 47 | 48 |
49 |
50 | 51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_pelatihan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_pelatihan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_pelatihan/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_pelatihan/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_pelatihan/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Pelatihan 30 | 31 |
32 | 33 |
34 |
35 |
36 | 37 |
38 | 39 |
40 |
41 | 42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_pelatihan/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Pelatihan 37 | 38 |
39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 |
47 |
48 | 49 | 50 |
51 |
52 | 53 | 54 |
55 |
56 | 57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_penghargaan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_penghargaan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_penghargaan/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_penghargaan/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_penghargaan/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Penghargaan 30 | 31 |
32 | 33 |
34 |
35 | 36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_penghargaan/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Penghargaan 37 | 38 |
39 | 40 |
41 |
42 | 43 | 44 |
45 |
46 | 47 | 48 |
49 |
50 | 51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_ppk/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_ppk/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_ppk/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_ppk/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_ppk/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Unit Kerja 30 | 31 |
32 | 33 |
34 |
35 |
36 | 37 |
38 | 39 |
40 |
41 | 42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_ppk/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master PPK 37 | 38 |
39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 |
47 |
48 | 49 | 50 |
51 |
52 | 53 | 54 |
55 |
56 | 57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_satuan_kerja/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_satuan_kerja/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_satuan_kerja/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_satuan_kerja/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_satuan_kerja/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Unit Kerja 30 | 31 |
32 | 33 |
34 |
35 |
36 | 37 |
38 | 39 |
40 |
41 | 42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_satuan_kerja/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Satuan Kerja 37 | 38 |
39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 |
47 |
48 | 49 | 50 |
51 |
52 | 53 | 54 |
55 |
56 | 57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_jabatan/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_status_jabatan/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_jabatan/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_status_jabatan/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_jabatan/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Status Jabatan 30 | 31 |
32 | 33 |
34 |
35 | 36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_jabatan/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Status Jabatan 37 | 38 |
39 | 40 |
41 |
42 | 43 | 44 |
45 |
46 | 47 | 48 |
49 |
50 | 51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_pegawai/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_status_pegawai/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_pegawai/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_status_pegawai/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_pegawai/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Status Pegawai 30 | 31 |
32 | 33 |
34 |
35 | 36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_status_pegawai/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Status Pegawai 37 | 38 |
39 | 40 |
41 |
42 | 43 | 44 |
45 |
46 | 47 | 48 |
49 |
50 | 51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_unit_kerja/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_unit_kerja/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_unit_kerja/._home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/master_unit_kerja/._home.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_unit_kerja/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | Master Unit Kerja 30 | 31 |
32 | 33 |
34 |
35 |
36 | 37 |
38 | 39 |
40 |
41 |
42 | 43 |
44 | 45 |
46 |
47 | 48 |
49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/master_unit_kerja/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 |

Terjadi Kesalahan!

31 | 32 |
33 | 34 | 35 |
36 | Master Unit Kerja 37 | 38 |
39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 |
47 |
48 |
49 | 50 |
51 | 52 |
53 |
54 | 55 | 56 |
57 |
58 | 59 | 60 |
61 |
62 | 63 |
64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/pegawai/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/pegawai/._.DS_Store -------------------------------------------------------------------------------- /application/views/dashboard_admin/pegawai/._detail_pegawai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/pegawai/._detail_pegawai.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/pegawai/._input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/pegawai/._input.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/user/bg_change_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/application/views/dashboard_admin/user/bg_change_password.php -------------------------------------------------------------------------------- /application/views/dashboard_admin/user/detail.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | session->flashdata('pass'); ?> 28 | 29 |
30 | 31 |

Terjadi Kesalahan!

32 | 33 |
34 | 35 | 36 |
37 | Manajemen User 38 | 39 |
40 | 41 |
42 |
43 |
44 | 45 |
46 | 47 |
48 |
49 | 50 | 51 | 52 | 53 |
54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /application/views/dashboard_admin/user/input.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | session->flashdata('pass'); ?> 28 | 29 |
30 | 31 |

Terjadi Kesalahan!

32 | 33 |
34 | 35 | 36 |
37 | Manajemen User 38 | 39 |
40 | 41 |
42 |
43 |
44 | 45 |
46 | placeholder="Username"> 47 |
48 |
49 |
50 | 51 |
52 | 53 |
54 |
55 | 56 | 57 | 58 |
59 |
60 | 61 | 62 |
63 |
64 | 65 |
66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /asset/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/._.DS_Store -------------------------------------------------------------------------------- /asset/colorbox/._jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/colorbox/._jquery.min.js -------------------------------------------------------------------------------- /asset/colorbox/colorbox - Copy.css: -------------------------------------------------------------------------------- 1 | /* 2 | ColorBox Core Style: 3 | The following CSS is consistent between example themes and should not be altered. 4 | */ 5 | #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;} 6 | #cboxOverlay{position:fixed; width:100%; height:100%;} 7 | #cboxMiddleLeft, #cboxBottomLeft{clear:left;} 8 | #cboxContent{position:relative;} 9 | #cboxLoadedContent{overflow:auto;} 10 | #cboxTitle{margin:0;} 11 | #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;} 12 | #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;} 13 | .cboxPhoto{float:left; margin:auto; border:0; display:block;} 14 | .cboxIframe{width:100%; height:100%; display:block; border:0;} 15 | 16 | /* 17 | User Style: 18 | Change the following styles to modify the appearance of ColorBox. They are 19 | ordered & tabbed in a way that represents the nesting of the generated HTML. 20 | */ 21 | #cboxOverlay{background:#121212;} 22 | #colorbox{} 23 | #cboxContent{} 24 | .cboxIframe{background:#eaeaea;} 25 | #cboxError{padding:30px; border:1px solid #ccc;} 26 | #cboxLoadedContent{border:1px solid #3d9200; background:#fff;} 27 | #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;} 28 | #cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;} 29 | #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;} 30 | #cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(../colorbox/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;} 31 | #cboxPrevious:hover{background-position:bottom left;} 32 | #cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(../colorbox/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;} 33 | #cboxNext:hover{background-position:bottom right;} 34 | #cboxLoadingOverlay{background:#000;} 35 | #cboxLoadingGraphic{background:url(../colorbox/loading.gif) no-repeat center center;} 36 | #cboxClose{position:absolute; top:5px; right:5px; display:block; background:url(../colorbox/controls.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;} 37 | #cboxClose:hover{background-position:bottom center;} -------------------------------------------------------------------------------- /asset/colorbox/colorbox.css: -------------------------------------------------------------------------------- 1 | /* 2 | ColorBox Core Style: 3 | The following CSS is consistent between example themes and should not be altered. 4 | */ 5 | #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;} 6 | #cboxOverlay{position:fixed; width:100%; height:100%;} 7 | #cboxMiddleLeft, #cboxBottomLeft{clear:left;} 8 | #cboxContent{position:relative;} 9 | #cboxLoadedContent{overflow:auto;} 10 | #cboxTitle{margin:0;} 11 | #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;} 12 | #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;} 13 | .cboxPhoto{float:left; margin:auto; border:0; display:block;} 14 | .cboxIframe{width:100%; height:100%; display:block; border:0;} 15 | 16 | /* 17 | User Style: 18 | Change the following styles to modify the appearance of ColorBox. They are 19 | ordered & tabbed in a way that represents the nesting of the generated HTML. 20 | */ 21 | #cboxOverlay{background:#121212; border:5px solid #000000; background-image:url(overlay.png); background-repeat:repeat;} 22 | #colorbox{ border:10px solid #000000; -moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius: 15px; } 23 | #cboxContent{} 24 | .cboxIframe{background:#eaeaea; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; } 25 | #cboxError{ } 26 | #cboxLoadedContent{ } 27 | #cboxTitle{position:absolute; bottom:0; left:0; text-align:center; width:100%; font-size:12px; font-weight:normal; color:#fff; background-image:url(../images/transparent-bg.png);} 28 | #cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;} 29 | #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;} 30 | #cboxPrevious{position:absolute; top:50%; left:0px; margin-top:-32px; background:url(../colorbox/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;} 31 | #cboxPrevious:hover{background-position:bottom left;} 32 | #cboxNext{position:absolute; top:50%; right:0px; margin-top:-32px; background:url(../colorbox/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;} 33 | #cboxNext:hover{background-position:bottom right;} 34 | #cboxLoadingOverlay{background:#000;} 35 | #cboxLoadingGraphic{background:url(../colorbox/loading.gif) no-repeat center center;} 36 | #cboxClose{position:absolute; top:0px; right:0px; display:block; background:url(../colorbox/controls.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;} 37 | #cboxClose:hover{background-position:bottom center;} -------------------------------------------------------------------------------- /asset/colorbox/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/colorbox/controls.png -------------------------------------------------------------------------------- /asset/colorbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/colorbox/loading.gif -------------------------------------------------------------------------------- /asset/colorbox/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/colorbox/overlay.png -------------------------------------------------------------------------------- /asset/css/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/css/._.DS_Store -------------------------------------------------------------------------------- /asset/css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/css/chosen-sprite.png -------------------------------------------------------------------------------- /asset/foto_pegawai/213520930-20121119-010814.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/213520930-20121119-010814.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/575523315-20121119-011345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/575523315-20121119-011345.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/698627129-20121119-021523.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/698627129-20121119-021523.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/medium/213520930-20121119-010814.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/medium/213520930-20121119-010814.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/medium/575523315-20121119-011345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/medium/575523315-20121119-011345.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/medium/698627129-20121119-021523.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/medium/698627129-20121119-021523.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/medium/no-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/medium/no-img.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/no-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/no-img.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/thumb/213520930-20121119-010814.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/thumb/213520930-20121119-010814.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/thumb/575523315-20121119-011345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/thumb/575523315-20121119-011345.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/thumb/698627129-20121119-021523.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/thumb/698627129-20121119-021523.jpg -------------------------------------------------------------------------------- /asset/foto_pegawai/thumb/no-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/foto_pegawai/thumb/no-img.jpg -------------------------------------------------------------------------------- /asset/img/._bg_dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/img/._bg_dotted.png -------------------------------------------------------------------------------- /asset/img/bg_dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/img/bg_dotted.png -------------------------------------------------------------------------------- /asset/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /asset/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /asset/js/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/js/._.DS_Store -------------------------------------------------------------------------------- /asset/js/._bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/asset/js/._bootstrap-tab.js -------------------------------------------------------------------------------- /asset/js/bootswatch.js: -------------------------------------------------------------------------------- 1 | $('#main-menu').load('/js/snippets/main-menu.html', function(){ 2 | if($('body').hasClass('preview')){ 3 | $('#main-menu-left').append(''); 4 | $('#preview-menu').load('/js/snippets/preview-menu.html'); 5 | } 6 | 7 | $('a[rel=tooltip]').tooltip({ 8 | 'placement': 'bottom' 9 | }); 10 | }); 11 | 12 | function parseRSS(url, callback) { 13 | $.ajax({ 14 | url: 'http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url), 15 | dataType: 'json', 16 | success: function(data) { 17 | callback(data.responseData.feed); 18 | } 19 | }); 20 | } -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- 1 | $class) 45 | { 46 | $this->$var =& load_class($class); 47 | } 48 | 49 | $this->load =& load_class('Loader', 'core'); 50 | 51 | $this->load->initialize(); 52 | 53 | log_message('debug', "Controller Class Initialized"); 54 | } 55 | 56 | public static function &get_instance() 57 | { 58 | return self::$instance; 59 | } 60 | } 61 | // END Controller class 62 | 63 | /* End of file Controller.php */ 64 | /* Location: ./system/core/Controller.php */ -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- 1 | $key; 52 | } 53 | } 54 | // END Model Class 55 | 56 | /* End of file Model.php */ 57 | /* Location: ./system/core/Model.php */ -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | 85 | } 86 | 87 | /* End of file mssql_utility.php */ 88 | /* Location: ./system/database/drivers/mssql/mssql_utility.php */ -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- 1 | db->_escape_identifiers($table); 52 | } 53 | 54 | // -------------------------------------------------------------------- 55 | 56 | /** 57 | * Repair table query 58 | * 59 | * Generates a platform-specific query so that a table can be repaired 60 | * 61 | * @access private 62 | * @param string the table name 63 | * @return object 64 | */ 65 | function _repair_table($table) 66 | { 67 | return "REPAIR TABLE ".$this->db->_escape_identifiers($table); 68 | } 69 | 70 | // -------------------------------------------------------------------- 71 | 72 | /** 73 | * MySQLi Export 74 | * 75 | * @access private 76 | * @param array Preferences 77 | * @return mixed 78 | */ 79 | function _backup($params = array()) 80 | { 81 | // Currently unsupported 82 | return $this->db->display_error('db_unsuported_feature'); 83 | } 84 | } 85 | 86 | /* End of file mysqli_utility.php */ 87 | /* Location: ./system/database/drivers/mysqli/mysqli_utility.php */ -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | } 85 | 86 | /* End of file oci8_utility.php */ 87 | /* Location: ./system/database/drivers/oci8/oci8_utility.php */ -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- 1 | db->db_debug) 37 | { 38 | return $this->db->display_error('db_unsuported_feature'); 39 | } 40 | return FALSE; 41 | } 42 | 43 | // -------------------------------------------------------------------- 44 | 45 | /** 46 | * Optimize table query 47 | * 48 | * Generates a platform-specific query so that a table can be optimized 49 | * 50 | * @access private 51 | * @param string the table name 52 | * @return object 53 | */ 54 | function _optimize_table($table) 55 | { 56 | // Not a supported ODBC feature 57 | if ($this->db->db_debug) 58 | { 59 | return $this->db->display_error('db_unsuported_feature'); 60 | } 61 | return FALSE; 62 | } 63 | 64 | // -------------------------------------------------------------------- 65 | 66 | /** 67 | * Repair table query 68 | * 69 | * Generates a platform-specific query so that a table can be repaired 70 | * 71 | * @access private 72 | * @param string the table name 73 | * @return object 74 | */ 75 | function _repair_table($table) 76 | { 77 | // Not a supported ODBC feature 78 | if ($this->db->db_debug) 79 | { 80 | return $this->db->display_error('db_unsuported_feature'); 81 | } 82 | return FALSE; 83 | } 84 | 85 | // -------------------------------------------------------------------- 86 | 87 | /** 88 | * ODBC Export 89 | * 90 | * @access private 91 | * @param array Preferences 92 | * @return mixed 93 | */ 94 | function _backup($params = array()) 95 | { 96 | // Currently unsupported 97 | return $this->db->display_error('db_unsuported_feature'); 98 | } 99 | 100 | } 101 | 102 | /* End of file odbc_utility.php */ 103 | /* Location: ./system/database/drivers/odbc/odbc_utility.php */ -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- 1 | db->db_debug) 37 | { 38 | return $this->db->display_error('db_unsuported_feature'); 39 | } 40 | return FALSE; 41 | } 42 | 43 | // -------------------------------------------------------------------- 44 | 45 | /** 46 | * Optimize table query 47 | * 48 | * Generates a platform-specific query so that a table can be optimized 49 | * 50 | * @access private 51 | * @param string the table name 52 | * @return object 53 | */ 54 | function _optimize_table($table) 55 | { 56 | // Not a supported PDO feature 57 | if ($this->db->db_debug) 58 | { 59 | return $this->db->display_error('db_unsuported_feature'); 60 | } 61 | return FALSE; 62 | } 63 | 64 | // -------------------------------------------------------------------- 65 | 66 | /** 67 | * Repair table query 68 | * 69 | * Generates a platform-specific query so that a table can be repaired 70 | * 71 | * @access private 72 | * @param string the table name 73 | * @return object 74 | */ 75 | function _repair_table($table) 76 | { 77 | // Not a supported PDO feature 78 | if ($this->db->db_debug) 79 | { 80 | return $this->db->display_error('db_unsuported_feature'); 81 | } 82 | return FALSE; 83 | } 84 | 85 | // -------------------------------------------------------------------- 86 | 87 | /** 88 | * PDO Export 89 | * 90 | * @access private 91 | * @param array Preferences 92 | * @return mixed 93 | */ 94 | function _backup($params = array()) 95 | { 96 | // Currently unsupported 97 | return $this->db->display_error('db_unsuported_feature'); 98 | } 99 | 100 | } 101 | 102 | /* End of file pdo_utility.php */ 103 | /* Location: ./system/database/drivers/pdo/pdo_utility.php */ -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | } 85 | 86 | 87 | /* End of file postgre_utility.php */ 88 | /* Location: ./system/database/drivers/postgre/postgre_utility.php */ -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- 1 | db_debug) 41 | { 42 | return $this->db->display_error('db_unsuported_feature'); 43 | } 44 | return array(); 45 | } 46 | 47 | // -------------------------------------------------------------------- 48 | 49 | /** 50 | * Optimize table query 51 | * 52 | * Is optimization even supported in SQLite? 53 | * 54 | * @access private 55 | * @param string the table name 56 | * @return object 57 | */ 58 | function _optimize_table($table) 59 | { 60 | return FALSE; 61 | } 62 | 63 | // -------------------------------------------------------------------- 64 | 65 | /** 66 | * Repair table query 67 | * 68 | * Are table repairs even supported in SQLite? 69 | * 70 | * @access private 71 | * @param string the table name 72 | * @return object 73 | */ 74 | function _repair_table($table) 75 | { 76 | return FALSE; 77 | } 78 | 79 | // -------------------------------------------------------------------- 80 | 81 | /** 82 | * SQLite Export 83 | * 84 | * @access private 85 | * @param array Preferences 86 | * @return mixed 87 | */ 88 | function _backup($params = array()) 89 | { 90 | // Currently unsupported 91 | return $this->db->display_error('db_unsuported_feature'); 92 | } 93 | } 94 | 95 | /* End of file sqlite_utility.php */ 96 | /* Location: ./system/database/drivers/sqlite/sqlite_utility.php */ -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | 85 | } 86 | 87 | /* End of file mssql_utility.php */ 88 | /* Location: ./system/database/drivers/mssql/mssql_utility.php */ -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedelumbung/simpeg/f6c78eb3bcb1fae17c552b3cf461e26118a3fb53/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- 1 | 0) && @is_dir($source_dir.$file)) 61 | { 62 | $filedata[$file] = directory_map($source_dir.$file.DIRECTORY_SEPARATOR, $new_depth, $hidden); 63 | } 64 | else 65 | { 66 | $filedata[] = $file; 67 | } 68 | } 69 | 70 | closedir($fp); 71 | return $filedata; 72 | } 73 | 74 | return FALSE; 75 | } 76 | } 77 | 78 | 79 | /* End of file directory_helper.php */ 80 | /* Location: ./system/helpers/directory_helper.php */ -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | lang->line($line); 46 | 47 | if ($id != '') 48 | { 49 | $line = '"; 50 | } 51 | 52 | return $line; 53 | } 54 | } 55 | 56 | // ------------------------------------------------------------------------ 57 | /* End of file language_helper.php */ 58 | /* Location: ./system/helpers/language_helper.php */ -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- 1 | lang->load('number'); 43 | 44 | if ($num >= 1000000000000) 45 | { 46 | $num = round($num / 1099511627776, $precision); 47 | $unit = $CI->lang->line('terabyte_abbr'); 48 | } 49 | elseif ($num >= 1000000000) 50 | { 51 | $num = round($num / 1073741824, $precision); 52 | $unit = $CI->lang->line('gigabyte_abbr'); 53 | } 54 | elseif ($num >= 1000000) 55 | { 56 | $num = round($num / 1048576, $precision); 57 | $unit = $CI->lang->line('megabyte_abbr'); 58 | } 59 | elseif ($num >= 1000) 60 | { 61 | $num = round($num / 1024, $precision); 62 | $unit = $CI->lang->line('kilobyte_abbr'); 63 | } 64 | else 65 | { 66 | $unit = $CI->lang->line('bytes'); 67 | return number_format($num).' '.$unit; 68 | } 69 | 70 | return number_format($num, $precision).' '.$unit; 71 | } 72 | } 73 | 74 | 75 | /* End of file number_helper.php */ 76 | /* Location: ./system/helpers/number_helper.php */ -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- 1 | load->library('typography'); 44 | 45 | return $CI->typography->nl2br_except_pre($str); 46 | } 47 | } 48 | 49 | // ------------------------------------------------------------------------ 50 | 51 | /** 52 | * Auto Typography Wrapper Function 53 | * 54 | * 55 | * @access public 56 | * @param string 57 | * @param bool whether to allow javascript event handlers 58 | * @param bool whether to reduce multiple instances of double newlines to two 59 | * @return string 60 | */ 61 | if ( ! function_exists('auto_typography')) 62 | { 63 | function auto_typography($str, $strip_js_event_handlers = TRUE, $reduce_linebreaks = FALSE) 64 | { 65 | $CI =& get_instance(); 66 | $CI->load->library('typography'); 67 | return $CI->typography->auto_typography($str, $strip_js_event_handlers, $reduce_linebreaks); 68 | } 69 | } 70 | 71 | 72 | // -------------------------------------------------------------------- 73 | 74 | /** 75 | * HTML Entities Decode 76 | * 77 | * This function is a replacement for html_entity_decode() 78 | * 79 | * @access public 80 | * @param string 81 | * @return string 82 | */ 83 | if ( ! function_exists('entity_decode')) 84 | { 85 | function entity_decode($str, $charset='UTF-8') 86 | { 87 | global $SEC; 88 | return $SEC->entity_decode($str, $charset); 89 | } 90 | } 91 | 92 | /* End of file typography_helper.php */ 93 | /* Location: ./system/helpers/typography_helper.php */ -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- 1 | ","\"", "'", "-"), 53 | array("&", "<", ">", """, "'", "-"), 54 | $str); 55 | 56 | // Decode the temp markers back to entities 57 | $str = preg_replace("/$temp(\d+);/","&#\\1;",$str); 58 | 59 | if ($protect_all === TRUE) 60 | { 61 | $str = preg_replace("/$temp(\w+);/","&\\1;", $str); 62 | } 63 | 64 | return $str; 65 | } 66 | } 67 | 68 | // ------------------------------------------------------------------------ 69 | 70 | /* End of file xml_helper.php */ 71 | /* Location: ./system/helpers/xml_helper.php */ -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | --------------------------------------------------------------------------------