├── .htaccess
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── foreign_chars.php
│ ├── hooks.php
│ ├── index.html
│ ├── memcached.php
│ ├── migration.php
│ ├── mimes.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── Pelanggan.php
│ ├── Sopi.php
│ ├── Sopir.php
│ ├── Tarif.php
│ ├── Transaksi.php
│ ├── Users.php
│ ├── Welcome.php
│ ├── index.html
│ └── kendaraan.php
├── core
│ └── index.html
├── helpers
│ ├── hform_helper.php
│ └── index.html
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── english
│ │ └── index.html
│ └── index.html
├── libraries
│ ├── Template.php
│ └── index.html
├── logs
│ └── index.html
├── models
│ ├── Kendaraan_model.php
│ ├── Pelanggan_model.php
│ ├── Sopi_model.php
│ ├── Sopir_model.php
│ ├── Tarif_model.php
│ ├── Transaksi_model.php
│ └── index.html
├── third_party
│ └── index.html
└── views
│ ├── adminTemplate.php
│ ├── dashboard.php
│ ├── errors
│ ├── cli
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── html
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ └── index.html
│ ├── index.html
│ ├── kendaraan
│ ├── create.php
│ └── index.php
│ ├── kendaraan_form.php
│ ├── kendaraan_list.php
│ ├── kendaraan_read.php
│ ├── login.php
│ ├── pelanggan_form.php
│ ├── pelanggan_list.php
│ ├── pelanggan_read.php
│ ├── sopir_form.php
│ ├── sopir_list.php
│ ├── sopir_read.php
│ ├── tarif_form.php
│ ├── tarif_list.php
│ ├── tarif_read.php
│ ├── transaksi_cetak.php
│ ├── transaksi_form.php
│ ├── transaksi_list.php
│ ├── transaksi_read.php
│ └── welcome_message.php
├── assets
├── bootstrap
│ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ └── bootstrap.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ └── js
│ │ ├── bootstrap.js
│ │ └── bootstrap.min.js
├── css
│ ├── bootstrap.css
│ ├── bootstrap.min.css
│ ├── plugins
│ │ ├── dataTables.bootstrap.css
│ │ ├── metisMenu
│ │ │ ├── metisMenu.css
│ │ │ └── metisMenu.min.css
│ │ ├── morris.css
│ │ ├── social-buttons.css
│ │ └── timeline.css
│ └── sb-admin-2.css
├── datatables
│ ├── dataTables.bootstrap.css
│ ├── dataTables.bootstrap.js
│ ├── images
│ │ ├── sort_asc.png
│ │ ├── sort_asc_disabled.png
│ │ ├── sort_both.png
│ │ ├── sort_desc.png
│ │ └── sort_desc_disabled.png
│ └── jquery.dataTables.js
├── font-awesome-4.1.0
│ ├── css
│ │ ├── font-awesome.css
│ │ └── font-awesome.min.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ ├── less
│ │ ├── bordered-pulled.less
│ │ ├── core.less
│ │ ├── fixed-width.less
│ │ ├── font-awesome.less
│ │ ├── icons.less
│ │ ├── larger.less
│ │ ├── list.less
│ │ ├── mixins.less
│ │ ├── path.less
│ │ ├── rotated-flipped.less
│ │ ├── spinning.less
│ │ ├── stacked.less
│ │ └── variables.less
│ └── scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _spinning.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── images
│ ├── B 1111 VGA.jpg
│ ├── B 2222 VGA.jpg
│ ├── B 3333 VGA.jpg
│ ├── B 4444 VGA.jpg
│ ├── B 5555 VGA.jpg
│ ├── B 6666 VGA.jpg
│ ├── B 7777 VGA.jpg
│ ├── B 8888 VGA.jpg
│ └── B 9999 VGA.jpg
├── js
│ ├── bootstrap.js
│ ├── bootstrap.min.js
│ ├── jquery-1.11.0.js
│ ├── jquery-1.11.2.min.js
│ ├── plugins
│ │ ├── dataTables
│ │ │ ├── dataTables.bootstrap.js
│ │ │ └── jquery.dataTables.js
│ │ ├── flot
│ │ │ ├── excanvas.min.js
│ │ │ ├── flot-data.js
│ │ │ ├── jquery.flot.js
│ │ │ ├── jquery.flot.pie.js
│ │ │ ├── jquery.flot.resize.js
│ │ │ └── jquery.flot.tooltip.min.js
│ │ ├── metisMenu
│ │ │ ├── metisMenu.js
│ │ │ └── metisMenu.min.js
│ │ └── morris
│ │ │ ├── morris-data.js
│ │ │ ├── morris.js
│ │ │ ├── morris.min.js
│ │ │ └── raphael.min.js
│ └── sb-admin-2.js
└── less
│ ├── mixins.less
│ ├── sb-admin-2.less
│ └── variables.less
├── contributing.md
├── harviacode
├── index.php
└── lib
│ ├── bootstrap.min.css
│ ├── config.php
│ ├── createConfigPagination.php
│ ├── createController.php
│ ├── createModel.php
│ ├── createViewForm.php
│ ├── createViewList.php
│ ├── createViewListDatatables.php
│ └── createViewRead.php
├── index.php
├── license.txt
├── nbproject
├── private
│ ├── private.properties
│ └── private.xml
├── project.properties
└── project.xml
├── readme.rst
├── system
├── .htaccess
├── core
│ ├── Benchmark.php
│ ├── CodeIgniter.php
│ ├── Common.php
│ ├── Config.php
│ ├── Controller.php
│ ├── Exceptions.php
│ ├── Hooks.php
│ ├── Input.php
│ ├── Lang.php
│ ├── Loader.php
│ ├── Log.php
│ ├── Model.php
│ ├── Output.php
│ ├── Router.php
│ ├── Security.php
│ ├── URI.php
│ ├── Utf8.php
│ ├── compat
│ │ ├── hash.php
│ │ ├── index.html
│ │ ├── mbstring.php
│ │ ├── password.php
│ │ └── standard.php
│ └── index.html
├── database
│ ├── DB.php
│ ├── DB_cache.php
│ ├── DB_driver.php
│ ├── DB_forge.php
│ ├── DB_query_builder.php
│ ├── DB_result.php
│ ├── DB_utility.php
│ ├── drivers
│ │ ├── cubrid
│ │ │ ├── cubrid_driver.php
│ │ │ ├── cubrid_forge.php
│ │ │ ├── cubrid_result.php
│ │ │ ├── cubrid_utility.php
│ │ │ └── index.html
│ │ ├── ibase
│ │ │ ├── ibase_driver.php
│ │ │ ├── ibase_forge.php
│ │ │ ├── ibase_result.php
│ │ │ ├── ibase_utility.php
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── mssql
│ │ │ ├── index.html
│ │ │ ├── mssql_driver.php
│ │ │ ├── mssql_forge.php
│ │ │ ├── mssql_result.php
│ │ │ └── mssql_utility.php
│ │ ├── mysql
│ │ │ ├── index.html
│ │ │ ├── mysql_driver.php
│ │ │ ├── mysql_forge.php
│ │ │ ├── mysql_result.php
│ │ │ └── mysql_utility.php
│ │ ├── mysqli
│ │ │ ├── index.html
│ │ │ ├── mysqli_driver.php
│ │ │ ├── mysqli_forge.php
│ │ │ ├── mysqli_result.php
│ │ │ └── mysqli_utility.php
│ │ ├── oci8
│ │ │ ├── index.html
│ │ │ ├── oci8_driver.php
│ │ │ ├── oci8_forge.php
│ │ │ ├── oci8_result.php
│ │ │ └── oci8_utility.php
│ │ ├── odbc
│ │ │ ├── index.html
│ │ │ ├── odbc_driver.php
│ │ │ ├── odbc_forge.php
│ │ │ ├── odbc_result.php
│ │ │ └── odbc_utility.php
│ │ ├── pdo
│ │ │ ├── index.html
│ │ │ ├── pdo_driver.php
│ │ │ ├── pdo_forge.php
│ │ │ ├── pdo_result.php
│ │ │ ├── pdo_utility.php
│ │ │ └── subdrivers
│ │ │ │ ├── index.html
│ │ │ │ ├── pdo_4d_driver.php
│ │ │ │ ├── pdo_4d_forge.php
│ │ │ │ ├── pdo_cubrid_driver.php
│ │ │ │ ├── pdo_cubrid_forge.php
│ │ │ │ ├── pdo_dblib_driver.php
│ │ │ │ ├── pdo_dblib_forge.php
│ │ │ │ ├── pdo_firebird_driver.php
│ │ │ │ ├── pdo_firebird_forge.php
│ │ │ │ ├── pdo_ibm_driver.php
│ │ │ │ ├── pdo_ibm_forge.php
│ │ │ │ ├── pdo_informix_driver.php
│ │ │ │ ├── pdo_informix_forge.php
│ │ │ │ ├── pdo_mysql_driver.php
│ │ │ │ ├── pdo_mysql_forge.php
│ │ │ │ ├── pdo_oci_driver.php
│ │ │ │ ├── pdo_oci_forge.php
│ │ │ │ ├── pdo_odbc_driver.php
│ │ │ │ ├── pdo_odbc_forge.php
│ │ │ │ ├── pdo_pgsql_driver.php
│ │ │ │ ├── pdo_pgsql_forge.php
│ │ │ │ ├── pdo_sqlite_driver.php
│ │ │ │ ├── pdo_sqlite_forge.php
│ │ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ │ └── pdo_sqlsrv_forge.php
│ │ ├── postgre
│ │ │ ├── index.html
│ │ │ ├── postgre_driver.php
│ │ │ ├── postgre_forge.php
│ │ │ ├── postgre_result.php
│ │ │ └── postgre_utility.php
│ │ ├── sqlite
│ │ │ ├── index.html
│ │ │ ├── sqlite_driver.php
│ │ │ ├── sqlite_forge.php
│ │ │ ├── sqlite_result.php
│ │ │ └── sqlite_utility.php
│ │ ├── sqlite3
│ │ │ ├── index.html
│ │ │ ├── sqlite3_driver.php
│ │ │ ├── sqlite3_forge.php
│ │ │ ├── sqlite3_result.php
│ │ │ └── sqlite3_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
│ │ ├── pagination_lang.php
│ │ ├── profiler_lang.php
│ │ ├── unit_test_lang.php
│ │ └── upload_lang.php
│ └── index.html
└── libraries
│ ├── Cache
│ ├── Cache.php
│ ├── drivers
│ │ ├── Cache_apc.php
│ │ ├── Cache_dummy.php
│ │ ├── Cache_file.php
│ │ ├── Cache_memcached.php
│ │ ├── Cache_redis.php
│ │ ├── Cache_wincache.php
│ │ └── index.html
│ └── index.html
│ ├── Calendar.php
│ ├── Cart.php
│ ├── Driver.php
│ ├── Email.php
│ ├── Encrypt.php
│ ├── Encryption.php
│ ├── Form_validation.php
│ ├── Ftp.php
│ ├── Image_lib.php
│ ├── Javascript.php
│ ├── Javascript
│ ├── Jquery.php
│ └── index.html
│ ├── Migration.php
│ ├── Pagination.php
│ ├── Parser.php
│ ├── Profiler.php
│ ├── Session
│ ├── Session.php
│ ├── SessionHandlerInterface.php
│ ├── Session_driver.php
│ ├── drivers
│ │ ├── Session_database_driver.php
│ │ ├── Session_files_driver.php
│ │ ├── Session_memcached_driver.php
│ │ ├── Session_redis_driver.php
│ │ └── index.html
│ └── index.html
│ ├── Table.php
│ ├── Trackback.php
│ ├── Typography.php
│ ├── Unit_test.php
│ ├── Upload.php
│ ├── User_agent.php
│ ├── Xmlrpc.php
│ ├── Xmlrpcs.php
│ ├── Zip.php
│ └── index.html
├── ujian.sql
└── user_guide
├── DCO.html
├── _downloads
└── ELDocs.tmbundle.zip
├── _images
├── appflowchart.gif
└── smile.gif
├── _static
├── ajax-loader.gif
├── basic.css
├── ci-icon.ico
├── comment-bright.png
├── comment-close.png
├── comment.png
├── css
│ ├── badge_only.css
│ └── theme.css
├── doctools.js
├── down-pressed.png
├── down.png
├── file.png
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── jquery.js
├── js
│ ├── oldtheme.js
│ └── theme.js
├── minus.png
├── plus.png
├── pygments.css
├── searchtools.js
├── underscore.js
├── up-pressed.png
├── up.png
└── websupport.js
├── changelog.html
├── contributing
└── index.html
├── database
├── caching.html
├── call_function.html
├── configuration.html
├── connecting.html
├── db_driver_reference.html
├── examples.html
├── forge.html
├── helpers.html
├── index.html
├── metadata.html
├── queries.html
├── query_builder.html
├── results.html
├── transactions.html
└── utilities.html
├── documentation
└── index.html
├── general
├── alternative_php.html
├── ancillary_classes.html
├── autoloader.html
├── caching.html
├── cli.html
├── common_functions.html
├── compatibility_functions.html
├── controllers.html
├── core_classes.html
├── creating_drivers.html
├── creating_libraries.html
├── credits.html
├── drivers.html
├── environments.html
├── errors.html
├── helpers.html
├── hooks.html
├── index.html
├── libraries.html
├── managing_apps.html
├── models.html
├── profiling.html
├── requirements.html
├── reserved_names.html
├── routing.html
├── security.html
├── styleguide.html
├── urls.html
├── views.html
└── welcome.html
├── genindex.html
├── helpers
├── array_helper.html
├── captcha_helper.html
├── cookie_helper.html
├── date_helper.html
├── directory_helper.html
├── download_helper.html
├── email_helper.html
├── file_helper.html
├── form_helper.html
├── html_helper.html
├── index.html
├── inflector_helper.html
├── language_helper.html
├── number_helper.html
├── path_helper.html
├── security_helper.html
├── smiley_helper.html
├── string_helper.html
├── text_helper.html
├── typography_helper.html
├── url_helper.html
└── xml_helper.html
├── index.html
├── installation
├── downloads.html
├── index.html
├── troubleshooting.html
├── upgrade_120.html
├── upgrade_130.html
├── upgrade_131.html
├── upgrade_132.html
├── upgrade_133.html
├── upgrade_140.html
├── upgrade_141.html
├── upgrade_150.html
├── upgrade_152.html
├── upgrade_153.html
├── upgrade_154.html
├── upgrade_160.html
├── upgrade_161.html
├── upgrade_162.html
├── upgrade_163.html
├── upgrade_170.html
├── upgrade_171.html
├── upgrade_172.html
├── upgrade_200.html
├── upgrade_201.html
├── upgrade_202.html
├── upgrade_203.html
├── upgrade_210.html
├── upgrade_211.html
├── upgrade_212.html
├── upgrade_213.html
├── upgrade_214.html
├── upgrade_220.html
├── upgrade_221.html
├── upgrade_300.html
├── upgrade_b11.html
└── upgrading.html
├── libraries
├── benchmark.html
├── caching.html
├── calendar.html
├── cart.html
├── config.html
├── email.html
├── encrypt.html
├── encryption.html
├── file_uploading.html
├── form_validation.html
├── ftp.html
├── image_lib.html
├── index.html
├── input.html
├── javascript.html
├── language.html
├── loader.html
├── migration.html
├── output.html
├── pagination.html
├── parser.html
├── security.html
├── sessions.html
├── table.html
├── trackback.html
├── typography.html
├── unit_testing.html
├── uri.html
├── user_agent.html
├── xmlrpc.html
└── zip.html
├── license.html
├── objects.inv
├── overview
├── appflow.html
├── at_a_glance.html
├── features.html
├── getting_started.html
├── goals.html
├── index.html
└── mvc.html
├── search.html
├── searchindex.js
└── tutorial
├── conclusion.html
├── create_news_items.html
├── index.html
├── news_section.html
└── static_pages.html
/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 6 | 'xhtml1-strict' => '', 7 | 'xhtml1-trans' => '', 8 | 'xhtml1-frame' => '', 9 | 'xhtml-basic11' => '', 10 | 'html5' => '', 11 | 'html4-strict' => '', 12 | 'html4-trans' => '', 13 | 'html4-frame' => '', 14 | 'mathml1' => '', 15 | 'mathml2' => '', 16 | 'svg10' => '', 17 | 'svg11' => '', 18 | 'svg11-basic' => '', 19 | 'svg11-tiny' => '', 20 | 'xhtml-math-svg-xh' => '', 21 | 'xhtml-math-svg-sh' => '', 22 | 'xhtml-rdfa-1' => '', 23 | 'xhtml-rdfa-2' => '' 24 | ); 25 | -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 14 | '/ö|œ/' => 'oe', 15 | '/ü/' => 'ue', 16 | '/Ä/' => 'Ae', 17 | '/Ü/' => 'Ue', 18 | '/Ö/' => 'Oe', 19 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A', 20 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a', 21 | '/Б/' => 'B', 22 | '/б/' => 'b', 23 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 24 | '/ç|ć|ĉ|ċ|č/' => 'c', 25 | '/Д/' => 'D', 26 | '/д/' => 'd', 27 | '/Ð|Ď|Đ|Δ/' => 'Dj', 28 | '/ð|ď|đ|δ/' => 'dj', 29 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E', 30 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e', 31 | '/Ф/' => 'F', 32 | '/ф/' => 'f', 33 | '/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G', 34 | '/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g', 35 | '/Ĥ|Ħ/' => 'H', 36 | '/ĥ|ħ/' => 'h', 37 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I', 38 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i', 39 | '/Ĵ/' => 'J', 40 | '/ĵ/' => 'j', 41 | '/Ķ|Κ|К/' => 'K', 42 | '/ķ|κ|к/' => 'k', 43 | '/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L', 44 | '/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l', 45 | '/М/' => 'M', 46 | '/м/' => 'm', 47 | '/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N', 48 | '/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n', 49 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O', 50 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o', 51 | '/П/' => 'P', 52 | '/п/' => 'p', 53 | '/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R', 54 | '/ŕ|ŗ|ř|ρ|р/' => 'r', 55 | '/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S', 56 | '/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's', 57 | '/Ț|Ţ|Ť|Ŧ|τ|Т/' => 'T', 58 | '/ț|ţ|ť|ŧ|т/' => 't', 59 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U', 60 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u', 61 | '/Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y', 62 | '/ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y', 63 | '/В/' => 'V', 64 | '/в/' => 'v', 65 | '/Ŵ/' => 'W', 66 | '/ŵ/' => 'w', 67 | '/Ź|Ż|Ž|Ζ|З/' => 'Z', 68 | '/ź|ż|ž|ζ|з/' => 'z', 69 | '/Æ|Ǽ/' => 'AE', 70 | '/ß/' => 'ss', 71 | '/IJ/' => 'IJ', 72 | '/ij/' => 'ij', 73 | '/Œ/' => 'OE', 74 | '/ƒ/' => 'f', 75 | '/ξ/' => 'ks', 76 | '/π/' => 'p', 77 | '/β/' => 'v', 78 | '/μ/' => 'm', 79 | '/ψ/' => 'ps', 80 | '/Ё/' => 'Yo', 81 | '/ё/' => 'yo', 82 | '/Є/' => 'Ye', 83 | '/є/' => 'ye', 84 | '/Ї/' => 'Yi', 85 | '/Ж/' => 'Zh', 86 | '/ж/' => 'zh', 87 | '/Х/' => 'Kh', 88 | '/х/' => 'kh', 89 | '/Ц/' => 'Ts', 90 | '/ц/' => 'ts', 91 | '/Ч/' => 'Ch', 92 | '/ч/' => 'ch', 93 | '/Ш/' => 'Sh', 94 | '/ш/' => 'sh', 95 | '/Щ/' => 'Shch', 96 | '/щ/' => 'shch', 97 | '/Ъ|ъ|Ь|ь/' => '', 98 | '/Ю/' => 'Yu', 99 | '/ю/' => 'yu', 100 | '/Я/' => 'Ya', 101 | '/я/' => 'ya' 102 | ); 103 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->current() this is the version that schema will 69 | | be upgraded / downgraded to. 70 | | 71 | */ 72 | $config['migration_version'] = 0; 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Migrations Path 77 | |-------------------------------------------------------------------------- 78 | | 79 | | Path to your migrations folder. 80 | | Typically, it will be within your application path. 81 | | Also, writing permission is required within the migrations path. 82 | | 83 | */ 84 | $config['migration_path'] = APPPATH.'migrations/'; 85 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /application/controllers/Users.php: -------------------------------------------------------------------------------- 1 | template->load('adminTemplate','dashboard'); 7 | } 8 | function login(){ 9 | if(isset($_POST['submit'])) 10 | { 11 | $email = $_POST['email']; 12 | $pass = md5($_POST['password']); 13 | $chek = $this->db->get_where('users',array('email'=>$email,'password'=>$pass )); 14 | if($chek->num_rows()>0) 15 | { 16 | $sess = array('status'=>'login','email'=>$email); 17 | $this->session->set_userdata($sess); 18 | redirect('kendaraan'); 19 | }else{ 20 | $this->load->view('login'); 21 | } 22 | }else{ 23 | $this->load->view('login'); 24 | } 25 | } 26 | 27 | function logout(){ 28 | $this->session->sess_destroy(); 29 | redirect('kendaraan'); 30 | } 31 | } -------------------------------------------------------------------------------- /application/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see http://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->template->load('adminTemplate','dashboard'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/Template.php: -------------------------------------------------------------------------------- 1 | template_data[$name] = $value; 11 | } 12 | 13 | function load($template = '', $view = '' , $view_data = array(), $return = FALSE) 14 | { 15 | $this->CI =& get_instance(); 16 | $this->set('contents', $this->CI->load->view($view, $view_data, TRUE)); 17 | return $this->CI->load->view($template, $this->template_data, $return); 18 | } 19 | } 20 | 21 | /* End of file Template.php */ 22 | /* Location: ./system/application/libraries/Template.php */ -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/Kendaraan_model.php: -------------------------------------------------------------------------------- 1 | db->order_by($this->id, $this->order); 22 | return $this->db->get($this->table)->result(); 23 | } 24 | 25 | // get data by id 26 | function get_by_id($id) 27 | { 28 | $this->db->where($this->id, $id); 29 | return $this->db->get($this->table)->row(); 30 | } 31 | 32 | // get total rows 33 | function total_rows() { 34 | $this->db->from($this->table); 35 | return $this->db->count_all_results(); 36 | } 37 | 38 | // get data with limit 39 | function index_limit($limit, $start = 0) { 40 | $this->db->order_by($this->id, $this->order); 41 | $this->db->limit($limit, $start); 42 | return $this->db->get($this->table)->result(); 43 | } 44 | 45 | // get search total rows 46 | function search_total_rows($keyword = NULL) { 47 | $this->db->like('kendaraan_id', $keyword); 48 | $this->db->or_like('kendaraan_platnomor', $keyword); 49 | $this->db->or_like('kendaraan_merk', $keyword); 50 | $this->db->or_like('kendaraan_tipe', $keyword); 51 | $this->db->or_like('kendaraan_tahunrakit', $keyword); 52 | $this->db->or_like('kendaraan_seat', $keyword); 53 | $this->db->or_like('kendaraan_foto', $keyword); 54 | $this->db->or_like('kendaraan_fasilitas', $keyword); 55 | $this->db->or_like('kendaraan_status', $keyword); 56 | $this->db->from($this->table); 57 | return $this->db->count_all_results(); 58 | } 59 | 60 | // get search data with limit 61 | function search_index_limit($limit, $start = 0, $keyword = NULL) { 62 | $this->db->order_by($this->id, $this->order); 63 | $this->db->like('kendaraan_id', $keyword); 64 | $this->db->or_like('kendaraan_platnomor', $keyword); 65 | $this->db->or_like('kendaraan_merk', $keyword); 66 | $this->db->or_like('kendaraan_tipe', $keyword); 67 | $this->db->or_like('kendaraan_tahunrakit', $keyword); 68 | $this->db->or_like('kendaraan_seat', $keyword); 69 | $this->db->or_like('kendaraan_foto', $keyword); 70 | $this->db->or_like('kendaraan_fasilitas', $keyword); 71 | $this->db->or_like('kendaraan_status', $keyword); 72 | $this->db->limit($limit, $start); 73 | return $this->db->get($this->table)->result(); 74 | } 75 | 76 | // insert data 77 | function insert($data) 78 | { 79 | $this->db->insert($this->table, $data); 80 | } 81 | 82 | // update data 83 | function update($id, $data) 84 | { 85 | $this->db->where($this->id, $id); 86 | $this->db->update($this->table, $data); 87 | } 88 | 89 | // delete data 90 | function delete($id) 91 | { 92 | $this->db->where($this->id, $id); 93 | $this->db->delete($this->table); 94 | } 95 | 96 | } 97 | 98 | /* End of file Kendaraan_model.php */ 99 | /* Location: ./application/models/Kendaraan_model.php */ -------------------------------------------------------------------------------- /application/models/Pelanggan_model.php: -------------------------------------------------------------------------------- 1 | db->order_by($this->id, $this->order); 22 | return $this->db->get($this->table)->result(); 23 | } 24 | 25 | // get data by id 26 | function get_by_id($id) 27 | { 28 | $this->db->where($this->id, $id); 29 | return $this->db->get($this->table)->row(); 30 | } 31 | 32 | // get total rows 33 | function total_rows() { 34 | $this->db->from($this->table); 35 | return $this->db->count_all_results(); 36 | } 37 | 38 | // get data with limit 39 | function index_limit($limit, $start = 0) { 40 | $this->db->order_by($this->id, $this->order); 41 | $this->db->limit($limit, $start); 42 | return $this->db->get($this->table)->result(); 43 | } 44 | 45 | // get search total rows 46 | function search_total_rows($keyword = NULL) { 47 | $this->db->like('pelanggan_id', $keyword); 48 | $this->db->or_like('pelanggan_nama', $keyword); 49 | $this->db->or_like('pelanggan_alamat', $keyword); 50 | $this->db->or_like('pelanggan_telpon', $keyword); 51 | $this->db->from($this->table); 52 | return $this->db->count_all_results(); 53 | } 54 | 55 | // get search data with limit 56 | function search_index_limit($limit, $start = 0, $keyword = NULL) { 57 | $this->db->order_by($this->id, $this->order); 58 | $this->db->like('pelanggan_id', $keyword); 59 | $this->db->or_like('pelanggan_nama', $keyword); 60 | $this->db->or_like('pelanggan_alamat', $keyword); 61 | $this->db->or_like('pelanggan_telpon', $keyword); 62 | $this->db->limit($limit, $start); 63 | return $this->db->get($this->table)->result(); 64 | } 65 | 66 | // insert data 67 | function insert($data) 68 | { 69 | $this->db->insert($this->table, $data); 70 | } 71 | 72 | // update data 73 | function update($id, $data) 74 | { 75 | $this->db->where($this->id, $id); 76 | $this->db->update($this->table, $data); 77 | } 78 | 79 | // delete data 80 | function delete($id) 81 | { 82 | $this->db->where($this->id, $id); 83 | $this->db->delete($this->table); 84 | } 85 | 86 | } 87 | 88 | /* End of file Pelanggan_model.php */ 89 | /* Location: ./application/models/Pelanggan_model.php */ -------------------------------------------------------------------------------- /application/models/Sopi_model.php: -------------------------------------------------------------------------------- 1 | db->order_by($this->id, $this->order); 22 | return $this->db->get($this->table)->result(); 23 | } 24 | 25 | // get data by id 26 | function get_by_id($id) 27 | { 28 | $this->db->where($this->id, $id); 29 | return $this->db->get($this->table)->row(); 30 | } 31 | 32 | // get total rows 33 | function total_rows() { 34 | $this->db->from($this->table); 35 | return $this->db->count_all_results(); 36 | } 37 | 38 | // get data with limit 39 | function index_limit($limit, $start = 0) { 40 | $this->db->order_by($this->id, $this->order); 41 | $this->db->limit($limit, $start); 42 | return $this->db->get($this->table)->result(); 43 | } 44 | 45 | // get search total rows 46 | function search_total_rows($keyword = NULL) { 47 | $this->db->like('sopir_id', $keyword); 48 | $this->db->or_like('sopir_alamat', $keyword); 49 | $this->db->or_like('sopir_nama', $keyword); 50 | $this->db->or_like('sopir_telpon', $keyword); 51 | $this->db->or_like('sopir_ktp', $keyword); 52 | $this->db->or_like('sopir_sim', $keyword); 53 | $this->db->or_like('sopir_status', $keyword); 54 | $this->db->from($this->table); 55 | return $this->db->count_all_results(); 56 | } 57 | 58 | // get search data with limit 59 | function search_index_limit($limit, $start = 0, $keyword = NULL) { 60 | $this->db->order_by($this->id, $this->order); 61 | $this->db->like('sopir_id', $keyword); 62 | $this->db->or_like('sopir_alamat', $keyword); 63 | $this->db->or_like('sopir_nama', $keyword); 64 | $this->db->or_like('sopir_telpon', $keyword); 65 | $this->db->or_like('sopir_ktp', $keyword); 66 | $this->db->or_like('sopir_sim', $keyword); 67 | $this->db->or_like('sopir_status', $keyword); 68 | $this->db->limit($limit, $start); 69 | return $this->db->get($this->table)->result(); 70 | } 71 | 72 | // insert data 73 | function insert($data) 74 | { 75 | $this->db->insert($this->table, $data); 76 | } 77 | 78 | // update data 79 | function update($id, $data) 80 | { 81 | $this->db->where($this->id, $id); 82 | $this->db->update($this->table, $data); 83 | } 84 | 85 | // delete data 86 | function delete($id) 87 | { 88 | $this->db->where($this->id, $id); 89 | $this->db->delete($this->table); 90 | } 91 | 92 | } 93 | 94 | /* End of file Sopi_model.php */ 95 | /* Location: ./application/models/Sopi_model.php */ -------------------------------------------------------------------------------- /application/models/Sopir_model.php: -------------------------------------------------------------------------------- 1 | db->order_by($this->id, $this->order); 22 | return $this->db->get($this->table)->result(); 23 | } 24 | 25 | // get data by id 26 | function get_by_id($id) 27 | { 28 | $this->db->where($this->id, $id); 29 | return $this->db->get($this->table)->row(); 30 | } 31 | 32 | // get total rows 33 | function total_rows() { 34 | $this->db->from($this->table); 35 | return $this->db->count_all_results(); 36 | } 37 | 38 | // get data with limit 39 | function index_limit($limit, $start = 0) { 40 | $this->db->order_by($this->id, $this->order); 41 | $this->db->limit($limit, $start); 42 | return $this->db->get($this->table)->result(); 43 | } 44 | 45 | // get search total rows 46 | function search_total_rows($keyword = NULL) { 47 | $this->db->like('sopir_id', $keyword); 48 | $this->db->or_like('sopir_alamat', $keyword); 49 | $this->db->or_like('sopir_nama', $keyword); 50 | $this->db->or_like('sopir_telpon', $keyword); 51 | $this->db->or_like('sopir_ktp', $keyword); 52 | $this->db->or_like('sopir_sim', $keyword); 53 | $this->db->or_like('sopir_status', $keyword); 54 | $this->db->from($this->table); 55 | return $this->db->count_all_results(); 56 | } 57 | 58 | // get search data with limit 59 | function search_index_limit($limit, $start = 0, $keyword = NULL) { 60 | $this->db->order_by($this->id, $this->order); 61 | $this->db->like('sopir_id', $keyword); 62 | $this->db->or_like('sopir_alamat', $keyword); 63 | $this->db->or_like('sopir_nama', $keyword); 64 | $this->db->or_like('sopir_telpon', $keyword); 65 | $this->db->or_like('sopir_ktp', $keyword); 66 | $this->db->or_like('sopir_sim', $keyword); 67 | $this->db->or_like('sopir_status', $keyword); 68 | $this->db->limit($limit, $start); 69 | return $this->db->get($this->table)->result(); 70 | } 71 | 72 | // insert data 73 | function insert($data) 74 | { 75 | $this->db->insert($this->table, $data); 76 | } 77 | 78 | // update data 79 | function update($id, $data) 80 | { 81 | $this->db->where($this->id, $id); 82 | $this->db->update($this->table, $data); 83 | } 84 | 85 | // delete data 86 | function delete($id) 87 | { 88 | $this->db->where($this->id, $id); 89 | $this->db->delete($this->table); 90 | } 91 | 92 | } 93 | 94 | /* End of file Sopir_model.php */ 95 | /* Location: ./application/models/Sopir_model.php */ -------------------------------------------------------------------------------- /application/models/Tarif_model.php: -------------------------------------------------------------------------------- 1 | db->order_by($this->id, $this->order); 22 | return $this->db->get($this->table)->result(); 23 | } 24 | 25 | // get data by id 26 | function get_by_id($id) 27 | { 28 | $this->db->where($this->id, $id); 29 | return $this->db->get($this->table)->row(); 30 | } 31 | 32 | // get total rows 33 | function total_rows() { 34 | $this->db->from($this->table); 35 | return $this->db->count_all_results(); 36 | } 37 | 38 | // get data with limit 39 | function index_limit($limit, $start = 0) { 40 | $this->db->order_by($this->id, $this->order); 41 | $this->db->limit($limit, $start); 42 | return $this->db->get($this->table)->result(); 43 | } 44 | 45 | // get search total rows 46 | function search_total_rows($keyword = NULL) { 47 | $this->db->like('tarif_id', $keyword); 48 | $this->db->or_like('kendaraan_id', $keyword); 49 | $this->db->or_like('tarif_perhari', $keyword); 50 | $this->db->or_like('tarif_overtime', $keyword); 51 | $this->db->from($this->table); 52 | return $this->db->count_all_results(); 53 | } 54 | 55 | // get search data with limit 56 | function search_index_limit($limit, $start = 0, $keyword = NULL) { 57 | $this->db->order_by($this->id, $this->order); 58 | $this->db->like('tarif_id', $keyword); 59 | $this->db->or_like('kendaraan_id', $keyword); 60 | $this->db->or_like('tarif_perhari', $keyword); 61 | $this->db->or_like('tarif_overtime', $keyword); 62 | $this->db->limit($limit, $start); 63 | return $this->db->get($this->table)->result(); 64 | } 65 | 66 | // insert data 67 | function insert($data) 68 | { 69 | $this->db->insert($this->table, $data); 70 | } 71 | 72 | // update data 73 | function update($id, $data) 74 | { 75 | $this->db->where($this->id, $id); 76 | $this->db->update($this->table, $data); 77 | } 78 | 79 | // delete data 80 | function delete($id) 81 | { 82 | $this->db->where($this->id, $id); 83 | $this->db->delete($this->table); 84 | } 85 | 86 | } 87 | 88 | /* End of file Tarif_model.php */ 89 | /* Location: ./application/models/Tarif_model.php */ -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | An uncaught Exception was encountered 6 | 7 | Type: 8 | Message: 9 | Filename: getFile(); ?> 10 | Line Number: getLine(); ?> 11 | 12 | 13 | 14 | Backtrace: 15 | getTrace() as $error): ?> 16 | 17 | 18 | File: 19 | Line: 20 | Function: 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | A PHP Error was encountered 6 | 7 | Severity: 8 | Message: 9 | Filename: 10 | Line Number: 11 | 12 | 13 | 14 | Backtrace: 15 | 16 | 17 | 18 | File: 19 | Line: 20 | Function: 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 |Type:
10 |Message:
11 |Filename: getFile(); ?>
12 |Line Number: getLine(); ?>
13 | 14 | 15 | 16 |Backtrace:
17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Severity:
10 |Message:
11 |Filename:
12 |Line Number:
13 | 14 | 15 | 16 |Backtrace:
17 | 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/kendaraan/create.php: -------------------------------------------------------------------------------- 1 |No Plat | Merk | ||
Type | Tahun Rakit | ||
Jumlah Seat | Status | ||
7 | uri->segment(1),'Kembali',array('class'=>'btn btn-danger')) 9 | ?> 10 | |
No | 27 |PLAT NOMOR | 28 |MERK | 29 |TIPE | 30 | 31 |SEAT | 32 |FOTO | 33 |STATUS | 34 |Action | 35 |
---|---|---|---|---|---|---|---|
45 | | kendaraan_platnomor ?> | 46 |kendaraan_merk ?> | 47 |kendaraan_tipe ?> | 48 | 49 |kendaraan_seat ?> | 50 |kendaraan_foto ?> | 51 |kendaraan_status ?> | 52 |53 | kendaraan_id),'Read',array('class'=>'btn btn-danger btn-sm')); 55 | echo ' '; 56 | if($this->session->userdata('status')=='login') 57 | { 58 | echo anchor(site_url('kendaraan/update/'.$kendaraan->kendaraan_id),'Update',array('class'=>'btn btn-danger btn-sm')); 59 | echo ' '; 60 | echo anchor(site_url('kendaraan/delete/'.$kendaraan->kendaraan_id),'Delete',array('class'=>'btn btn-danger btn-sm','onClick'=>"javasciprt: return confirm('Are You Sure ?')")); 61 | } 62 | ?> 63 | | 64 |
PLAT NOMOR | ||
MERK | ||
TIPE | ||
TAHUN RAKIT | ||
SEAT | ||
FOTO | ||
FASILITAS | ||
STATUS | ||
Cancel |
No | 28 |NAMA LENGKAP | 29 |ALAMAT | 30 |NO TELPON | 31 |Action | 32 |
---|---|---|---|---|
41 | | pelanggan_nama ?> | 42 |pelanggan_alamat ?> | 43 |pelanggan_telpon ?> | 44 |45 | pelanggan_id), 'Read', array('class' => 'btn btn-danger btn-sm')); 47 | echo ' '; 48 | if ($this->session->userdata('status') == 'login') { 49 | echo anchor(site_url('pelanggan/update/' . $pelanggan->pelanggan_id), 'Update', array('class' => 'btn btn-danger btn-sm')); 50 | echo ' '; 51 | echo anchor(site_url('pelanggan/delete/' . $pelanggan->pelanggan_id), 'Delete', array('class' => 'btn btn-danger btn-sm', 'onClick' => "javasciprt: return confirm('Are You Sure ?')")); 52 | } 53 | ?> 54 | | 55 |
pelanggan_nama | |
pelanggan_alamat | |
pelanggan_telpon | |
Cancel |
No | 28 |NAMA | 29 |TELPON | 30 |KTP | 31 |SIM | 32 |STATUS | 33 |34 | |
---|---|---|---|---|---|---|
43 | | sopir_nama ?> | 44 |sopir_telpon ?> | 45 |sopir_ktp ?> | 46 |sopir_sim ?> | 47 |sopir_status ?> | 48 |49 | sopir_id), 'Read', array('class' => 'btn btn-danger btn-sm')); 51 | echo ' '; 52 | if ($this->session->userdata('status') == 'login') { 53 | echo anchor(site_url('sopir/update/' . $sopir->sopir_id), 'Update', array('class' => 'btn btn-danger btn-sm')); 54 | echo ' '; 55 | echo anchor(site_url('sopir/delete/' . $sopir->sopir_id), 'Delete', array('class' => 'btn btn-danger btn-sm', 'onClick' => "javasciprt: return confirm('Are You Sure ?')")); 56 | } 57 | ?> 58 | | 59 |
sopir_alamat | |
sopir_nama | |
sopir_telpon | |
sopir_ktp | |
sopir_sim | |
sopir_status | |
Cancel |
No | 26 |KENDARAAN | 27 |TARIF PERHARI | 28 |TARIF OVERTIME | 29 |Action | 30 |
---|---|---|---|---|
39 | | kendaraan_platnomor ?> | 40 |tarif_perhari ?> | 41 |tarif_overtime ?> | 42 |43 | tarif_id), 'Read', array('class' => 'btn btn-danger btn-sm')); 45 | echo ' '; 46 | if ($this->session->userdata('status') == 'login') { 47 | echo anchor(site_url('tarif/update/' . $tarif->tarif_id), 'Update', array('class' => 'btn btn-danger btn-sm')); 48 | echo ' '; 49 | echo anchor(site_url('tarif/delete/' . $tarif->tarif_id), 'Delete', array('class' => 'btn btn-danger btn-sm', 'onClick' => "javasciprt: return confirm('Are You Sure ?')")); 50 | } 51 | ?> 52 | | 53 |
PLAT NOMOR | |
TARIF PERHARI | |
TARIF OVERTIME | |
Cancel |
NO | TANGGAL TRANSAKSI | SELESAI | SOPIR | MOBIL | PELANGGAN | TOTAL | $no | 10 |". tgl_indo($t->transaksi_tglmulai)." | 11 |". tgl_indo($t->transaksi_tglselesai)." | 12 |$t->sopir_nama | 13 |$t->kendaraan_platnomor | 14 |$t->pelanggan_nama | 15 |$t->transaksi_total | 16 | "; 17 | $no++; 18 | } 19 | ?> 20 |
---|
PELANGGAN | |
SOPIR | |
PLAT NOMOR | |
MULAI | |
SELESAI | |
JUMLAH HARI | |
TANGGAL OVERTIME | |
JML HARI OVERTIME | |
TOTAL | |
STATUS | |
Cancel |
The page you are looking at is being generated dynamically by CodeIgniter.
75 | 76 |If you would like to edit this page you'll find it located at:
77 |application/views/welcome_message.php
78 |
79 | The corresponding controller for this page is found at:
80 |application/controllers/Welcome.php
81 |
82 | If you are exploring CodeIgniter for the very first time, you should start by reading the User Guide.
83 |" . $path . "
"; 58 | ?> -------------------------------------------------------------------------------- /harviacode/lib/createViewForm.php: -------------------------------------------------------------------------------- 1 | 8 | 19 |" . $path . "
"; 52 | ?> -------------------------------------------------------------------------------- /harviacode/lib/createViewRead.php: -------------------------------------------------------------------------------- 1 | 8 | 19 |".$row1["COLUMN_NAME"]." | |
\" class=\"btn btn-default\">Cancel |
" . $path . "
"; 38 | ?> -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 - 2015, British Columbia Institute of Technology 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | index.file=index.php 2 | url=http://localhost/ujian/ 3 | -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- 1 | db->data_cache['db_names'])) 57 | { 58 | return $this->db->data_cache['db_names']; 59 | } 60 | 61 | return $this->db->data_cache['db_names'] = cubrid_list_dbs($this->db->conn_id); 62 | } 63 | 64 | // -------------------------------------------------------------------- 65 | 66 | /** 67 | * CUBRID Export 68 | * 69 | * @param array Preferences 70 | * @return mixed 71 | */ 72 | protected function _backup($params = array()) 73 | { 74 | // No SQL based support in CUBRID as of version 8.4.0. Database or 75 | // table backup can be performed using CUBRID Manager 76 | // database administration tool. 77 | return $this->db->display_error('db_unsupported_feature'); 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- 1 | db->hostname, $this->db->username, $this->db->password)) 58 | { 59 | $res = ibase_backup($service, $this->db->database, $filename.'.fbk'); 60 | 61 | // Close the service connection 62 | ibase_service_detach($service); 63 | return $res; 64 | } 65 | 66 | return FALSE; 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 75 | } 76 | 77 | } 78 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 66 | } 67 | 68 | } 69 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 75 | } 76 | 77 | } 78 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | lang->line($line); 67 | 68 | if ($for !== '') 69 | { 70 | $line = ''; 71 | } 72 | 73 | return $line; 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- 1 | lang->load('number'); 65 | 66 | if ($num >= 1000000000000) 67 | { 68 | $num = round($num / 1099511627776, $precision); 69 | $unit = $CI->lang->line('terabyte_abbr'); 70 | } 71 | elseif ($num >= 1000000000) 72 | { 73 | $num = round($num / 1073741824, $precision); 74 | $unit = $CI->lang->line('gigabyte_abbr'); 75 | } 76 | elseif ($num >= 1000000) 77 | { 78 | $num = round($num / 1048576, $precision); 79 | $unit = $CI->lang->line('megabyte_abbr'); 80 | } 81 | elseif ($num >= 1000) 82 | { 83 | $num = round($num / 1024, $precision); 84 | $unit = $CI->lang->line('kilobyte_abbr'); 85 | } 86 | else 87 | { 88 | $unit = $CI->lang->line('bytes'); 89 | return number_format($num).' '.$unit; 90 | } 91 | 92 | return number_format($num, $precision).' '.$unit; 93 | } 94 | } 95 | -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- 1 | ', '"', "'", '-'), 76 | array('&', '<', '>', '"', ''', '-'), 77 | $str 78 | ); 79 | 80 | // Decode the temp markers back to entities 81 | $str = preg_replace('/'.$temp.'(\d+);/', '\\1;', $str); 82 | 83 | if ($protect_all === TRUE) 84 | { 85 | return preg_replace('/'.$temp.'(\w+);/', '&\\1;', $str); 86 | } 87 | 88 | return $str; 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/css/badge_only.css: -------------------------------------------------------------------------------- 1 | .fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-weight:normal;font-style:normal;src:url("../font/fontawesome_webfont.eot");src:url("../font/fontawesome_webfont.eot?#iefix") format("embedded-opentype"),url("../font/fontawesome_webfont.woff") format("woff"),url("../font/fontawesome_webfont.ttf") format("truetype"),url("../font/fontawesome_webfont.svg#FontAwesome") format("svg")}.fa:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa{display:inline-block;text-decoration:inherit}li .fa{display:inline-block}li .fa-large:before,li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-0.8em}ul.fas li .fa{width:0.8em}ul.fas li .fa-large:before,ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before{content:""}.icon-book:before{content:""}.fa-caret-down:before{content:""}.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.icon-caret-up:before{content:""}.fa-caret-left:before{content:""}.icon-caret-left:before{content:""}.fa-caret-right:before{content:""}.icon-caret-right:before{content:""}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}} 2 | /*# sourceMappingURL=badge_only.css.map */ 3 | -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /user_guide/_static/js/oldtheme.js: -------------------------------------------------------------------------------- 1 | $( document ).ready(function() { 2 | // Shift nav in mobile when clicking the menu. 3 | $(document).on('click', "[data-toggle='wy-nav-top']", function() { 4 | $("[data-toggle='wy-nav-shift']").toggleClass("shift"); 5 | $("[data-toggle='rst-versions']").toggleClass("shift"); 6 | }); 7 | // Close menu when you click a link. 8 | $(document).on('click', ".wy-menu-vertical .current ul li a", function() { 9 | $("[data-toggle='wy-nav-shift']").removeClass("shift"); 10 | $("[data-toggle='rst-versions']").toggleClass("shift"); 11 | }); 12 | $(document).on('click', "[data-toggle='rst-current-version']", function() { 13 | $("[data-toggle='rst-versions']").toggleClass("shift-up"); 14 | }); 15 | // Make tables responsive 16 | $("table.docutils:not(.field-list)").wrap(""); 17 | }); 18 | 19 | window.SphinxRtdTheme = (function (jquery) { 20 | var stickyNav = (function () { 21 | var navBar, 22 | win, 23 | stickyNavCssClass = 'stickynav', 24 | applyStickNav = function () { 25 | if (navBar.height() <= win.height()) { 26 | navBar.addClass(stickyNavCssClass); 27 | } else { 28 | navBar.removeClass(stickyNavCssClass); 29 | } 30 | }, 31 | enable = function () { 32 | applyStickNav(); 33 | win.on('resize', applyStickNav); 34 | }, 35 | init = function () { 36 | navBar = jquery('nav.wy-nav-side:first'); 37 | win = jquery(window); 38 | }; 39 | jquery(init); 40 | return { 41 | enable : enable 42 | }; 43 | }()); 44 | return { 45 | StickyNav : stickyNav 46 | }; 47 | }($)); 48 | -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nurisakbar/travel-rental/a7620ec426292afd6bd00672b8e2e797b082ec71/user_guide/objects.inv --------------------------------------------------------------------------------