├── application ├── views │ ├── pdf │ │ └── vpdf.php │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── index.html │ │ ├── index.html │ │ └── html │ │ │ └── index.html │ └── index.html ├── pdf │ └── mpdf │ │ ├── patterns │ │ ├── dictionary.txt │ │ └── NOTES.txt │ │ ├── CREDITS.txt │ │ ├── CHANGELOG.txt │ │ ├── FONT INFO.txt │ │ ├── classes │ │ └── svg.php │ │ ├── includes │ │ ├── Thumbs.db │ │ └── no_image.jpg │ │ ├── ttfonts │ │ ├── Garuda.ttf │ │ ├── Norasi.ttf │ │ ├── XB Zar.ttf │ │ ├── ocrb10.ttf │ │ ├── XB Riyaz.ttf │ │ ├── XB Zar Bd.ttf │ │ ├── XB Zar It.ttf │ │ ├── DejaVuSans.ttf │ │ ├── DejaVuSerif.ttf │ │ ├── Garuda-Bold.ttf │ │ ├── Norasi-Bold.ttf │ │ ├── XB RiyazBd.ttf │ │ ├── XB RiyazBdIt.ttf │ │ ├── XB RiyazIt.ttf │ │ ├── XB Zar BdIt.ttf │ │ ├── ind_bn_1_001.ttf │ │ ├── ind_gu_1_001.ttf │ │ ├── ind_hi_1_001.ttf │ │ ├── ind_kn_1_001.ttf │ │ ├── ind_ml_1_001.ttf │ │ ├── ind_or_1_001.ttf │ │ ├── ind_pa_1_001.ttf │ │ ├── ind_ta_1_001.ttf │ │ ├── ind_te_1_001.ttf │ │ ├── DejaVuSansMono.ttf │ │ ├── Garuda-Oblique.ttf │ │ ├── Norasi-Oblique.ttf │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSerif-Bold.ttf │ │ ├── DejaVuSans-Oblique.ttf │ │ ├── DejaVuSansCondensed.ttf │ │ ├── DejaVuSansMono-Bold.ttf │ │ ├── DejaVuSerif-Italic.ttf │ │ ├── Garuda-BoldOblique.ttf │ │ ├── Norasi-BoldOblique.ttf │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSansMono-Oblique.ttf │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ ├── DejaVuSerifCondensed.ttf │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ ├── DejaVuSansCondensed-Oblique.ttf │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ ├── DejaVuSerifCondensed-Bold.ttf │ │ ├── DejaVuSerifCondensed-Italic.ttf │ │ ├── DejaVuSansCondensed-BoldOblique.ttf │ │ └── DejaVuSerifCondensed-BoldItalic.ttf │ │ ├── graph_cache │ │ └── dummy.txt │ │ ├── ttfontdata │ │ ├── dummy.txt │ │ ├── dejavusansmono.cw.dat │ │ ├── dejavusanscondensed.cw.dat │ │ ├── dejavusanscondensedB.cw.dat │ │ ├── dejavusanscondensedI.cw.dat │ │ ├── dejavuserifcondensed.cw.dat │ │ ├── dejavuserifcondensedB.cw.dat │ │ ├── dejavuserifcondensedI.cw.dat │ │ ├── dejavuserifcondensedBI.cw.dat │ │ ├── dejavusansmono.mtx.php │ │ ├── dejavusanscondensed.mtx.php │ │ ├── dejavuserifcondensed.mtx.php │ │ ├── dejavusanscondensedB.mtx.php │ │ ├── dejavusanscondensedI.mtx.php │ │ ├── dejavuserifcondensedB.mtx.php │ │ ├── dejavuserifcondensedI.mtx.php │ │ └── dejavuserifcondensedBI.mtx.php │ │ ├── iccprofiles │ │ ├── SWOP2006_Coated5v2.icc │ │ └── sRGB_IEC61966-2-1.icc │ │ ├── font │ │ ├── ccourier.php │ │ ├── ccourierb.php │ │ ├── ccourierbi.php │ │ └── ccourieri.php │ │ ├── mpdf.css │ │ └── utils │ │ └── index.php ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── index.html ├── config │ ├── index.html │ ├── hooks.php │ ├── profiler.php │ └── memcached.php ├── core │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html ├── logs │ └── index.html ├── models │ ├── index.html │ └── loginmodel.php ├── controllers │ └── index.html ├── libraries │ ├── index.html │ └── M_pdf.php └── third_party │ └── index.html ├── assets ├── plugins │ ├── datatables │ │ ├── extensions │ │ │ ├── Responsive │ │ │ │ └── Readme.md │ │ │ ├── FixedHeader │ │ │ │ └── css │ │ │ │ │ ├── dataTables.fixedHeader.min.css │ │ │ │ │ └── dataTables.fixedHeader.css │ │ │ ├── KeyTable │ │ │ │ └── css │ │ │ │ │ ├── dataTables.keyTable.min.css │ │ │ │ │ └── dataTables.keyTable.css │ │ │ ├── TableTools │ │ │ │ ├── images │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── xls.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── printer.psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── copy document.psd │ │ │ │ │ ├── xls_hover.png │ │ │ │ │ └── collection_hover.png │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ ├── AutoFill │ │ │ │ ├── images │ │ │ │ │ └── filler.png │ │ │ │ └── css │ │ │ │ │ ├── dataTables.autoFill.min.css │ │ │ │ │ └── dataTables.autoFill.css │ │ │ ├── ColReorder │ │ │ │ ├── images │ │ │ │ │ └── insert.png │ │ │ │ └── css │ │ │ │ │ ├── dataTables.colReorder.min.css │ │ │ │ │ └── dataTables.colReorder.css │ │ │ ├── Scroller │ │ │ │ ├── images │ │ │ │ │ └── loading-background.png │ │ │ │ └── css │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ └── FixedColumns │ │ │ │ └── css │ │ │ │ ├── dataTables.fixedColumns.min.css │ │ │ │ └── dataTables.fixedColumns.css │ │ └── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_asc_disabled.png │ │ │ └── sort_desc_disabled.png │ ├── input-mask │ │ └── phone-codes │ │ │ └── readme.txt │ ├── iCheck │ │ ├── flat │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── flat.png │ │ │ ├── grey.png │ │ │ ├── pink.png │ │ │ ├── red.png │ │ │ ├── green.png │ │ │ ├── orange.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── flat@2x.png │ │ │ ├── green@2x.png │ │ │ ├── grey@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── pink@2x.png │ │ │ ├── purple@2x.png │ │ │ └── yellow@2x.png │ │ ├── line │ │ │ ├── line.png │ │ │ └── line@2x.png │ │ ├── minimal │ │ │ ├── red.png │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ ├── pink.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── green@2x.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.png │ │ │ ├── pink@2x.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── purple@2x.png │ │ │ └── yellow@2x.png │ │ ├── square │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── grey.png │ │ │ ├── pink.png │ │ │ ├── red.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── green.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── square.png │ │ │ ├── yellow.png │ │ │ ├── green@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── purple@2x.png │ │ │ ├── square@2x.png │ │ │ └── yellow@2x.png │ │ ├── polaris │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ └── futurico │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ ├── colorpicker │ │ └── img │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ ├── saturation.png │ │ │ ├── hue-horizontal.png │ │ │ └── alpha-horizontal.png │ ├── ckeditor │ │ ├── plugins │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── link │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon-rtl.png │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ └── dialog │ │ │ │ └── dialogDefinition.js │ │ ├── samples │ │ │ ├── img │ │ │ │ ├── logo.png │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── navigation-tip.png │ │ │ │ └── header-separator.png │ │ │ ├── old │ │ │ │ ├── assets │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ └── htmlwriter │ │ │ │ │ └── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ └── outputforflash.swf │ │ │ └── toolbarconfigurator │ │ │ │ └── font │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.ttf │ │ │ │ ├── fontello.woff │ │ │ │ ├── LICENSE.txt │ │ │ │ └── config.json │ │ └── skins │ │ │ └── moono │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ └── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ ├── spinner.gif │ │ │ ├── hidpi │ │ │ ├── lock.png │ │ │ ├── close.png │ │ │ ├── refresh.png │ │ │ └── lock-open.png │ │ │ └── lock-open.png │ ├── ionslider │ │ └── img │ │ │ ├── sprite-skin-flat.png │ │ │ └── sprite-skin-nice.png │ ├── morris │ │ └── morris.css │ ├── datepicker │ │ └── locales │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ ├── bootstrap-datepicker.az.js │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.no.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ └── bootstrap-datepicker.is.js │ └── select2 │ │ └── i18n │ │ ├── zh-TW.js │ │ ├── az.js │ │ ├── zh-CN.js │ │ ├── fi.js │ │ ├── ja.js │ │ ├── hu.js │ │ ├── tr.js │ │ ├── th.js │ │ ├── ko.js │ │ ├── vi.js │ │ ├── id.js │ │ └── is.js ├── dist │ └── img │ │ ├── icons.png │ │ ├── avatar.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── avatar04.png │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── credit │ │ ├── visa.png │ │ ├── cirrus.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ ├── mastercard.png │ │ └── american-express.png │ │ ├── default-50x50.gif │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ └── user8-128x128.jpg ├── bootstrap │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ └── npm.js ├── .gitignore ├── build │ ├── bootstrap-less │ │ └── mixins │ │ │ ├── center-block.less │ │ │ ├── size.less │ │ │ ├── opacity.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ ├── background-variant.less │ │ │ ├── tab-focus.less │ │ │ ├── labels.less │ │ │ ├── resize.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── nav-divider.less │ │ │ ├── alerts.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── responsive-visibility.less │ │ │ ├── reset-text.less │ │ │ ├── border-radius.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── hide-text.less │ │ │ ├── list-group.less │ │ │ └── clearfix.less │ └── less │ │ ├── invoice.less │ │ ├── carousel.less │ │ ├── skins │ │ └── _all-skins.less │ │ ├── labels.less │ │ ├── profile.less │ │ └── .csslintrc ├── .jshintrc ├── documentation │ └── build │ │ └── include │ │ ├── browsers.html │ │ ├── license.html │ │ └── dependencies.html ├── composer.json ├── bower.json └── package.json ├── img ├── agya.jpg ├── ayla.jpg ├── avanza.jpg ├── ayla1.jpg ├── foto_pp.png ├── luxio.png ├── xenia.png ├── xenia1.png ├── foto_pp1.png ├── 121116140543100465.jpg └── modifikasi-daihatsu-ayla-ceper-terbaru.png ├── system ├── fonts │ ├── texb.ttf │ └── index.html ├── .htaccess ├── index.html ├── core │ ├── index.html │ └── compat │ │ └── index.html ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlsrv │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ └── sqlite3 │ │ └── index.html ├── helpers │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── user_guide ├── html │ ├── objects.inv │ ├── _static │ │ ├── up.png │ │ ├── down.png │ │ ├── file.png │ │ ├── plus.png │ │ ├── ci-icon.ico │ │ ├── comment.png │ │ ├── minus.png │ │ ├── ajax-loader.gif │ │ ├── down-pressed.png │ │ ├── up-pressed.png │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── images │ │ │ └── ci-icon.ico │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── _images │ │ ├── smile.gif │ │ └── appflowchart.gif │ ├── _downloads │ │ └── ELDocs.tmbundle.zip │ └── .buildinfo └── doctrees │ ├── DCO.doctree │ ├── index.doctree │ ├── license.doctree │ ├── changelog.doctree │ ├── environment.pickle │ ├── general │ ├── cli.doctree │ ├── urls.doctree │ ├── errors.doctree │ ├── hooks.doctree │ ├── index.doctree │ ├── models.doctree │ ├── views.doctree │ ├── caching.doctree │ ├── credits.doctree │ ├── drivers.doctree │ ├── helpers.doctree │ ├── libraries.doctree │ ├── profiling.doctree │ ├── routing.doctree │ ├── security.doctree │ ├── welcome.doctree │ ├── autoloader.doctree │ ├── controllers.doctree │ ├── styleguide.doctree │ ├── core_classes.doctree │ ├── environments.doctree │ ├── managing_apps.doctree │ ├── requirements.doctree │ ├── reserved_names.doctree │ ├── alternative_php.doctree │ ├── common_functions.doctree │ ├── creating_drivers.doctree │ ├── ancillary_classes.doctree │ ├── creating_libraries.doctree │ └── compatibility_functions.doctree │ ├── overview │ ├── mvc.doctree │ ├── goals.doctree │ ├── index.doctree │ ├── appflow.doctree │ ├── features.doctree │ ├── at_a_glance.doctree │ └── getting_started.doctree │ ├── database │ ├── forge.doctree │ ├── index.doctree │ ├── caching.doctree │ ├── examples.doctree │ ├── helpers.doctree │ ├── metadata.doctree │ ├── queries.doctree │ ├── results.doctree │ ├── connecting.doctree │ ├── utilities.doctree │ ├── call_function.doctree │ ├── configuration.doctree │ ├── query_builder.doctree │ ├── transactions.doctree │ └── db_driver_reference.doctree │ ├── helpers │ ├── index.doctree │ ├── date_helper.doctree │ ├── file_helper.doctree │ ├── form_helper.doctree │ ├── html_helper.doctree │ ├── path_helper.doctree │ ├── text_helper.doctree │ ├── url_helper.doctree │ ├── xml_helper.doctree │ ├── array_helper.doctree │ ├── captcha_helper.doctree │ ├── cookie_helper.doctree │ ├── email_helper.doctree │ ├── number_helper.doctree │ ├── smiley_helper.doctree │ ├── string_helper.doctree │ ├── directory_helper.doctree │ ├── download_helper.doctree │ ├── inflector_helper.doctree │ ├── language_helper.doctree │ ├── security_helper.doctree │ └── typography_helper.doctree │ ├── libraries │ ├── cart.doctree │ ├── ftp.doctree │ ├── uri.doctree │ ├── zip.doctree │ ├── caching.doctree │ ├── config.doctree │ ├── email.doctree │ ├── encrypt.doctree │ ├── index.doctree │ ├── input.doctree │ ├── loader.doctree │ ├── output.doctree │ ├── parser.doctree │ ├── table.doctree │ ├── xmlrpc.doctree │ ├── benchmark.doctree │ ├── calendar.doctree │ ├── image_lib.doctree │ ├── language.doctree │ ├── migration.doctree │ ├── security.doctree │ ├── sessions.doctree │ ├── trackback.doctree │ ├── encryption.doctree │ ├── javascript.doctree │ ├── pagination.doctree │ ├── typography.doctree │ ├── unit_testing.doctree │ ├── user_agent.doctree │ ├── file_uploading.doctree │ └── form_validation.doctree │ ├── tutorial │ ├── index.doctree │ ├── conclusion.doctree │ ├── news_section.doctree │ ├── static_pages.doctree │ └── create_news_items.doctree │ ├── contributing │ └── index.doctree │ ├── documentation │ └── index.doctree │ └── installation │ ├── index.doctree │ ├── downloads.doctree │ ├── upgrading.doctree │ ├── upgrade_120.doctree │ ├── upgrade_130.doctree │ ├── upgrade_131.doctree │ ├── upgrade_132.doctree │ ├── upgrade_133.doctree │ ├── upgrade_140.doctree │ ├── upgrade_141.doctree │ ├── upgrade_150.doctree │ ├── upgrade_152.doctree │ ├── upgrade_153.doctree │ ├── upgrade_154.doctree │ ├── upgrade_160.doctree │ ├── upgrade_161.doctree │ ├── upgrade_162.doctree │ ├── upgrade_163.doctree │ ├── upgrade_170.doctree │ ├── upgrade_171.doctree │ ├── upgrade_172.doctree │ ├── upgrade_200.doctree │ ├── upgrade_201.doctree │ ├── upgrade_202.doctree │ ├── upgrade_203.doctree │ ├── upgrade_210.doctree │ ├── upgrade_211.doctree │ ├── upgrade_212.doctree │ ├── upgrade_213.doctree │ ├── upgrade_214.doctree │ ├── upgrade_220.doctree │ ├── upgrade_221.doctree │ ├── upgrade_222.doctree │ ├── upgrade_223.doctree │ ├── upgrade_300.doctree │ ├── upgrade_301.doctree │ ├── upgrade_302.doctree │ ├── upgrade_303.doctree │ ├── upgrade_304.doctree │ ├── upgrade_305.doctree │ ├── upgrade_306.doctree │ ├── upgrade_310.doctree │ ├── upgrade_311.doctree │ ├── upgrade_b11.doctree │ └── troubleshooting.doctree ├── .htaccess ├── .gitignore ├── composer.json └── README.md /application/views/pdf/vpdf.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/pdf/mpdf/patterns/dictionary.txt: -------------------------------------------------------------------------------- 1 | dis/es/tab/lish/men/tar/i/an/ism 2 | -------------------------------------------------------------------------------- /img/agya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/agya.jpg -------------------------------------------------------------------------------- /img/ayla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/ayla.jpg -------------------------------------------------------------------------------- /img/avanza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/avanza.jpg -------------------------------------------------------------------------------- /img/ayla1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/ayla1.jpg -------------------------------------------------------------------------------- /img/foto_pp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/foto_pp.png -------------------------------------------------------------------------------- /img/luxio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/luxio.png -------------------------------------------------------------------------------- /img/xenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/xenia.png -------------------------------------------------------------------------------- /img/xenia1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/xenia1.png -------------------------------------------------------------------------------- /img/foto_pp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/foto_pp1.png -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /assets/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/icons.png -------------------------------------------------------------------------------- /assets/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/avatar2.png -------------------------------------------------------------------------------- /assets/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/avatar3.png -------------------------------------------------------------------------------- /assets/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/avatar5.png -------------------------------------------------------------------------------- /assets/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/photo1.png -------------------------------------------------------------------------------- /assets/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/photo2.png -------------------------------------------------------------------------------- /assets/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/photo3.jpg -------------------------------------------------------------------------------- /assets/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/photo4.jpg -------------------------------------------------------------------------------- /img/121116140543100465.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/121116140543100465.jpg -------------------------------------------------------------------------------- /user_guide/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/objects.inv -------------------------------------------------------------------------------- /assets/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/avatar04.png -------------------------------------------------------------------------------- /assets/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /user_guide/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/up.png -------------------------------------------------------------------------------- /application/pdf/mpdf/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/CREDITS.txt -------------------------------------------------------------------------------- /assets/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/credit/visa.png -------------------------------------------------------------------------------- /assets/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /user_guide/doctrees/DCO.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/DCO.doctree -------------------------------------------------------------------------------- /user_guide/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/down.png -------------------------------------------------------------------------------- /user_guide/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/file.png -------------------------------------------------------------------------------- /user_guide/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/plus.png -------------------------------------------------------------------------------- /application/pdf/mpdf/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/CHANGELOG.txt -------------------------------------------------------------------------------- /application/pdf/mpdf/FONT INFO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/FONT INFO.txt -------------------------------------------------------------------------------- /assets/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /assets/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /user_guide/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/license.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/license.doctree -------------------------------------------------------------------------------- /user_guide/html/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/html/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/comment.png -------------------------------------------------------------------------------- /user_guide/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/minus.png -------------------------------------------------------------------------------- /application/pdf/mpdf/classes/svg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/classes/svg.php -------------------------------------------------------------------------------- /assets/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /user_guide/doctrees/changelog.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/changelog.doctree -------------------------------------------------------------------------------- /application/pdf/mpdf/includes/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/includes/Thumbs.db -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Garuda.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Garuda.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Norasi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Norasi.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB Zar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB Zar.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ocrb10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ocrb10.ttf -------------------------------------------------------------------------------- /assets/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /assets/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /user_guide/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/environment.pickle -------------------------------------------------------------------------------- /user_guide/doctrees/general/cli.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/cli.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/urls.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/urls.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/overview/mvc.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/overview/mvc.doctree -------------------------------------------------------------------------------- /user_guide/html/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/up-pressed.png -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ index.php/$1 [L] -------------------------------------------------------------------------------- /application/pdf/mpdf/includes/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/includes/no_image.jpg -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB Riyaz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB Riyaz.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB Zar Bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB Zar Bd.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB Zar It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB Zar It.ttf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /user_guide/doctrees/database/forge.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/forge.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/errors.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/errors.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/hooks.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/hooks.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/models.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/models.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/views.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/views.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/cart.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/cart.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/ftp.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/ftp.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/uri.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/uri.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/zip.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/zip.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/overview/goals.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/overview/goals.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/overview/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/overview/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/tutorial/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/tutorial/index.doctree -------------------------------------------------------------------------------- /user_guide/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/html/_static/images/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/images/ci-icon.ico -------------------------------------------------------------------------------- /application/pdf/mpdf/graph_cache/dummy.txt: -------------------------------------------------------------------------------- 1 | This is just a placeholder file so that the folder is created on install. 2 | It can be deleted once installed. -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dummy.txt: -------------------------------------------------------------------------------- 1 | This is just a placeholder file so that the folder is created on install. 2 | It can be deleted once installed. -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Garuda-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Garuda-Bold.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Norasi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Norasi-Bold.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB RiyazBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB RiyazBd.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB RiyazBdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB RiyazBdIt.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB RiyazIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB RiyazIt.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/XB Zar BdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/XB Zar BdIt.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_bn_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_bn_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_gu_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_gu_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_hi_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_hi_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_kn_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_kn_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_ml_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_ml_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_or_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_or_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_pa_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_pa_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_ta_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_ta_1_001.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/ind_te_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/ind_te_1_001.ttf -------------------------------------------------------------------------------- /assets/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /assets/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /user_guide/doctrees/database/caching.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/caching.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/examples.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/examples.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/helpers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/helpers.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/metadata.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/metadata.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/queries.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/queries.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/results.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/results.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/caching.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/caching.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/credits.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/credits.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/drivers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/drivers.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/helpers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/helpers.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/libraries.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/libraries.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/profiling.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/profiling.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/routing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/routing.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/security.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/security.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/welcome.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/welcome.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/caching.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/caching.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/config.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/email.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/email.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/encrypt.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/encrypt.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/input.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/input.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/loader.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/loader.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/output.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/output.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/parser.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/parser.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/table.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/table.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/xmlrpc.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/xmlrpc.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/overview/appflow.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/overview/appflow.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/overview/features.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/overview/features.doctree -------------------------------------------------------------------------------- /user_guide/html/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Garuda-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Garuda-Oblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Norasi-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Norasi-Oblique.ttf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /img/modifikasi-daihatsu-ayla-ceper-terbaru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/img/modifikasi-daihatsu-ayla-ceper-terbaru.png -------------------------------------------------------------------------------- /user_guide/doctrees/contributing/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/contributing/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/connecting.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/connecting.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/utilities.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/utilities.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/documentation/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/documentation/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/autoloader.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/autoloader.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/controllers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/controllers.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/styleguide.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/styleguide.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/date_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/date_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/file_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/file_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/form_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/form_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/html_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/html_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/path_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/path_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/text_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/text_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/url_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/url_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/xml_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/xml_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/index.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/benchmark.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/benchmark.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/calendar.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/calendar.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/image_lib.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/image_lib.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/language.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/language.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/migration.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/migration.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/security.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/security.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/sessions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/sessions.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/trackback.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/trackback.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/tutorial/conclusion.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/tutorial/conclusion.doctree -------------------------------------------------------------------------------- /user_guide/html/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /assets/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /assets/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /assets/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /user_guide/doctrees/database/call_function.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/call_function.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/configuration.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/configuration.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/query_builder.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/query_builder.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/database/transactions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/transactions.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/core_classes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/core_classes.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/environments.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/environments.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/managing_apps.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/managing_apps.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/requirements.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/requirements.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/reserved_names.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/reserved_names.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/array_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/array_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/captcha_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/captcha_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/cookie_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/cookie_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/email_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/email_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/number_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/number_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/smiley_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/smiley_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/string_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/string_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/downloads.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/downloads.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrading.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrading.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/encryption.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/encryption.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/javascript.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/javascript.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/pagination.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/pagination.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/typography.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/typography.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/unit_testing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/unit_testing.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/user_agent.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/user_agent.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/overview/at_a_glance.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/overview/at_a_glance.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/tutorial/news_section.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/tutorial/news_section.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/tutorial/static_pages.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/tutorial/static_pages.doctree -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansCondensed.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Garuda-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Garuda-BoldOblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/Norasi-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/Norasi-BoldOblique.ttf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /user_guide/doctrees/general/alternative_php.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/alternative_php.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/common_functions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/common_functions.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/creating_drivers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/creating_drivers.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/directory_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/directory_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/download_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/download_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/inflector_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/inflector_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/language_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/language_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/security_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/security_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_120.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_120.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_130.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_130.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_131.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_131.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_132.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_132.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_133.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_133.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_140.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_140.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_141.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_141.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_150.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_150.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_152.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_152.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_153.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_153.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_154.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_154.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_160.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_160.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_161.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_161.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_162.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_162.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_163.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_163.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_170.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_170.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_171.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_171.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_172.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_172.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_200.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_200.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_201.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_201.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_202.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_202.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_203.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_203.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_210.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_210.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_211.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_211.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_212.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_212.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_213.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_213.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_214.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_214.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_220.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_220.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_221.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_221.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_222.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_222.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_223.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_223.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_300.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_300.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_301.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_301.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_302.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_302.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_303.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_303.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_304.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_304.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_305.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_305.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_306.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_306.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_310.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_310.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_311.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_311.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/upgrade_b11.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/upgrade_b11.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/file_uploading.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/file_uploading.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/overview/getting_started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/overview/getting_started.doctree -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/pdf/mpdf/iccprofiles/SWOP2006_Coated5v2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/iccprofiles/SWOP2006_Coated5v2.icc -------------------------------------------------------------------------------- /application/pdf/mpdf/iccprofiles/sRGB_IEC61966-2-1.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/iccprofiles/sRGB_IEC61966-2-1.icc -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusansmono.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavusansmono.cw.dat -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerifCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerifCondensed.ttf -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /user_guide/doctrees/general/ancillary_classes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/ancillary_classes.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/general/creating_libraries.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/creating_libraries.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/helpers/typography_helper.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/helpers/typography_helper.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/libraries/form_validation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/libraries/form_validation.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/tutorial/create_news_items.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/tutorial/create_news_items.doctree -------------------------------------------------------------------------------- /user_guide/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansCondensed-Bold.ttf -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /user_guide/doctrees/database/db_driver_reference.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/database/db_driver_reference.doctree -------------------------------------------------------------------------------- /user_guide/doctrees/installation/troubleshooting.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/installation/troubleshooting.doctree -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusanscondensed.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavusanscondensed.cw.dat -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusanscondensedB.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavusanscondensedB.cw.dat -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusanscondensedI.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavusanscondensedI.cw.dat -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensed.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavuserifcondensed.cw.dat -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensedB.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavuserifcondensedB.cw.dat -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensedI.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavuserifcondensedI.cw.dat -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansCondensed-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansCondensed-Oblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerifCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerifCondensed-Bold.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerifCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerifCondensed-Italic.ttf -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.log 3 | *.zip 4 | .idea 5 | .sass-cache/ 6 | /nbproject/ 7 | /nbproject/private/ 8 | /node_modules/ 9 | ad.js 10 | TODO 11 | test.html 12 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /user_guide/doctrees/general/compatibility_functions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/user_guide/doctrees/general/compatibility_functions.doctree -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensedBI.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfontdata/dejavuserifcondensedBI.cw.dat -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSansCondensed-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSansCondensed-BoldOblique.ttf -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfonts/DejaVuSerifCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/application/pdf/mpdf/ttfonts/DejaVuSerifCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poeji/AplikasiRentalMobilCI/HEAD/assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /application/pdf/mpdf/font/ccourier.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-23 -250 715 805]'); 6 | $up=-100; 7 | $ut=50; 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /application/pdf/mpdf/font/ccourierb.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-113 -250 749 801]'); 5 | $up=-100; 6 | $ut=50; 7 | 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /application/pdf/mpdf/font/ccourierbi.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-57 -250 869 801]'); 5 | $up=-100; 6 | $ut=50; 7 | 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /application/pdf/mpdf/font/ccourieri.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-27 -250 849 805]'); 5 | $up=-100; 6 | $ut=50; 7 | 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /user_guide/html/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 051c3609b9a9c1f1c9efeddee98066ba 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /application/models/loginmodel.php: -------------------------------------------------------------------------------- 1 | db->get_where($table,$where); 8 | } 9 | 10 | } -------------------------------------------------------------------------------- /application/pdf/mpdf/patterns/NOTES.txt: -------------------------------------------------------------------------------- 1 | Alternative sources of Hyphenation programs or TEX files: 2 | 3 | OpenOffice: http://wiki.services.openoffice.org/wiki/Dictionaries 4 | 5 | Hyphenator4PHP- alternative PHP hyphenator scripts: http://apps.sourceforge.net/trac/hyphenator4php/ -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /assets/build/less/invoice.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Invoice 3 | * ------------- 4 | */ 5 | 6 | .invoice { 7 | position: relative; 8 | background: #fff; 9 | border: 1px solid #f4f4f4; 10 | padding: 20px; 11 | margin: 10px 25px; 12 | } 13 | 14 | .invoice-title { 15 | margin-top: 0; 16 | } 17 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assets/build/less/carousel.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Carousel 3 | * ------------------- 4 | */ 5 | .carousel-control { 6 | &.left, 7 | &.right { 8 | background-image: none; 9 | } 10 | > .fa { 11 | font-size: 40px; 12 | position: absolute; 13 | top: 50%; 14 | z-index: 5; 15 | display: inline-block; 16 | margin-top: -20px; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /assets/build/less/skins/_all-skins.less: -------------------------------------------------------------------------------- 1 | //All skins in one file 2 | @import "skin-blue.less"; 3 | @import "skin-blue-light.less"; 4 | @import "skin-black.less"; 5 | @import "skin-black-light.less"; 6 | @import "skin-green.less"; 7 | @import "skin-green-light.less"; 8 | @import "skin-red.less"; 9 | @import "skin-red-light.less"; 10 | @import "skin-yellow.less"; 11 | @import "skin-yellow-light.less"; 12 | @import "skin-purple.less"; 13 | @import "skin-purple-light.less"; 14 | -------------------------------------------------------------------------------- /assets/build/less/labels.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Label 3 | * ---------------- 4 | */ 5 | .label-default { 6 | background-color: @gray; 7 | color: #444; 8 | } 9 | 10 | .label-danger { 11 | &:extend(.bg-red); 12 | } 13 | 14 | .label-info { 15 | &:extend(.bg-aqua); 16 | } 17 | 18 | .label-warning { 19 | &:extend(.bg-yellow); 20 | } 21 | 22 | .label-primary { 23 | &:extend(.bg-light-blue); 24 | } 25 | 26 | .label-success { 27 | &:extend(.bg-green); 28 | } 29 | -------------------------------------------------------------------------------- /assets/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : "nofunc", 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true, 15 | // External variabls and plugins 16 | "predef": [ "AdminLTEOptions", "FastClick", "moment", "Morris", "Chart" ] 17 | } 18 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

AdminLTE supports the following browsers:

4 | 11 |

Note: IE9 does not support transitions or animations. The template will function properly but it won't use animations/transitions on IE9.

12 | 13 | -------------------------------------------------------------------------------- /assets/documentation/build/include/license.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

AdminLTE

4 |

5 | AdminLTE is an open source project that is licensed under the MIT license. 6 | This allows you to do pretty much anything you want as long as you include 7 | the copyright in "all copies or substantial portions of the Software." 8 | Attribution is not required (though very much appreciated). 9 |

10 |
11 | -------------------------------------------------------------------------------- /application/pdf/mpdf/mpdf.css: -------------------------------------------------------------------------------- 1 | /* 2 | This is a secondary default stylesheet for mPDF 3 | It will only parse element-level CSS here 4 | Remove the comment marks below and edit as required 5 | */ 6 | 7 | 8 | 9 | /* 10 | These values used to be the default prior to mPDF 4.2 11 | Altered to make appearance closer to that of browsers 12 | Uncomment these lines to return to behaviour prior to v4.2 13 | */ 14 | 15 | 16 | /* 17 | img { margin: 0.83em 0; vertical-align: bottom; } 18 | table { margin: 0.5em; } 19 | textarea { vertical-align: top; } 20 | */ 21 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | 8 | .border-right-radius(@radius) { 9 | border-bottom-right-radius: @radius; 10 | border-top-right-radius: @radius; 11 | } 12 | 13 | .border-bottom-radius(@radius) { 14 | border-bottom-right-radius: @radius; 15 | border-bottom-left-radius: @radius; 16 | } 17 | 18 | .border-left-radius(@radius) { 19 | border-bottom-left-radius: @radius; 20 | border-top-left-radius: @radius; 21 | } 22 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /assets/build/less/profile.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Profile 3 | * ------------- 4 | */ 5 | 6 | .profile-user-img { 7 | margin: 0 auto; 8 | width: 100px; 9 | padding: 3px; 10 | border: 3px solid @gray; 11 | } 12 | 13 | .profile-username { 14 | font-size: 21px; 15 | margin-top: 5px; 16 | } 17 | 18 | .post { 19 | border-bottom: 1px solid @gray; 20 | margin-bottom: 15px; 21 | padding-bottom: 15px; 22 | color: #666; 23 | &:last-of-type { 24 | border-bottom: 0; 25 | margin-bottom: 0; 26 | padding-bottom: 0; 27 | } 28 | .user-block { 29 | margin-bottom: 15px; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess 10 | 11 | user_guide_src/build/* 12 | user_guide_src/cilexer/build/* 13 | user_guide_src/cilexer/dist/* 14 | user_guide_src/cilexer/pycilexer.egg-info/* 15 | /vendor/ 16 | 17 | # IDE Files 18 | #------------------------- 19 | /nbproject/ 20 | .idea/* 21 | 22 | ## Sublime Text cache files 23 | *.tmlanguage.cache 24 | *.tmPreferences.cache 25 | *.stTheme.cache 26 | *.sublime-workspace 27 | *.sublime-project 28 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /assets/documentation/build/include/dependencies.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

AdminLTE depends on two main frameworks. 4 | The downloadable package contains both of these libraries, so you don't have to manually download them.

5 | 10 |
11 | -------------------------------------------------------------------------------- /application/libraries/M_pdf.php: -------------------------------------------------------------------------------- 1 | li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The CodeIgniter framework", 3 | "name": "codeigniter/framework", 4 | "type": "project", 5 | "homepage": "https://codeigniter.com", 6 | "license": "MIT", 7 | "support": { 8 | "forum": "http://forum.codeigniter.com/", 9 | "wiki": "https://github.com/bcit-ci/CodeIgniter/wiki", 10 | "irc": "irc://irc.freenode.net/codeigniter", 11 | "source": "https://github.com/bcit-ci/CodeIgniter" 12 | }, 13 | "require": { 14 | "php": ">=5.2.4" 15 | }, 16 | "suggest": { 17 | "paragonie/random_compat": "Provides better randomness in PHP 5.x" 18 | }, 19 | "require-dev": { 20 | "mikey179/vfsStream": "1.1.*" 21 | } 22 | } -------------------------------------------------------------------------------- /assets/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "almasaeed2010/adminlte", 3 | "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 3", 4 | "homepage": "http://almsaeedstudio.com/", 5 | "keywords": [ 6 | "css", 7 | "js", 8 | "less", 9 | "responsive", 10 | "back-end", 11 | "template", 12 | "theme", 13 | "web", 14 | "admin" 15 | ], 16 | "authors": [ 17 | { 18 | "name": "Abdullah Almsaeed", 19 | "email": "abdullah@almsaeedstudio.com" 20 | } 21 | ], 22 | "license": "MIT", 23 | "support": { 24 | "issues": "https://github.com/almasaeed2010/AdminLTE/issues" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/build/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false, 19 | "ids": false, 20 | "fallback-colors": false, 21 | "vendor-prefix": false, 22 | "import": false 23 | } 24 | -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusansmono.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 5, 9 | 'FontBBox' => '[-558 -375 718 1042]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 602, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/ci/rentalmobil/application/pdf/mpdf/ttfonts/DejaVuSansMono.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=322524; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusansmono'; 23 | $panose=' 0 0 2 b 6 9 3 8 4 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Aplikasi Rental Mobil dengan Codeigniter 3 2 | Aplikasi Rental Mobil dengan Codeigniter 3 3 | 4 | Fitur:
5 | 1. Login/Logout Admin
6 | 2. Tambah Kendaraan
7 | 3. Tambah Driver
8 | 4. Tambah Merk Kendaraan
9 | 5. Transaksi Peminjaman Kendaraan
10 | 6. Laporan Export PDF 11 | 12 | 13 | # Aplikasi Rental Mobil with Codeigniter 3 14 | Applications Car Rental with CodeIgniter 3 15 | 16 | Features:
17 | 1. Login / Logout Admin
18 | 2. Add Vehicle
19 | 3. Add Driver
20 | 4. Add Brand Vehicles
21 | 5. Vehicle Loan Transaction
22 | 6. Export Report PDF 23 | 24 | any question? please send me email to poeji.exact@gmail.com (http://pujikartono.com) 25 | -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusanscondensed.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 4, 9 | 'FontBBox' => '[-918 -415 1513 1167]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/legalbrokers/application/third_party/mpdf/ttfonts/DejaVuSansCondensed.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=555944; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusanscondensed'; 23 | $panose=' 0 0 2 b 6 6 3 8 4 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensed.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 4, 9 | 'FontBBox' => '[-693 -347 1512 1242]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/jib_test/application/libraries/mpdf/ttfonts/DejaVuSerifCondensed.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=296976; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserifcondensed'; 23 | $panose=' 0 0 2 6 6 6 5 6 5 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusanscondensedB.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 262148, 9 | 'FontBBox' => '[-962 -415 1778 1174]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/wbt/application/libraries/mpdf/ttfonts/DejaVuSansCondensed-Bold.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=545712; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusanscondensedB'; 23 | $panose=' 0 0 2 b 8 6 3 6 4 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavusanscondensedI.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 68, 9 | 'FontBBox' => '[-914 -350 1493 1068]', 10 | 'ItalicAngle' => -11, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/ci/rentalmobil/application/pdf/mpdf/ttfonts/DejaVuSansCondensed-Oblique.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=489032; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusanscondensedI'; 23 | $panose=' 0 0 2 b 6 6 3 3 4 b 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensedB.mtx.php: -------------------------------------------------------------------------------- 1 | 939, 6 | 'Descent' => -236, 7 | 'CapHeight' => 939, 8 | 'Flags' => 262148, 9 | 'FontBBox' => '[-752 -389 1617 1235]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/jib_test/application/libraries/mpdf/ttfonts/DejaVuSerifCondensed-Bold.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=283140; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserifcondensedB'; 23 | $panose=' 0 0 2 6 8 6 5 6 5 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/toolbarconfigurator/font/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "css_prefix_text": "icon-", 4 | "css_use_suffix": false, 5 | "hinting": true, 6 | "units_per_em": 1000, 7 | "ascent": 850, 8 | "glyphs": [ 9 | { 10 | "uid": "f48ae54adfb27d8ada53d0fd9e34ee10", 11 | "css": "trash-empty", 12 | "code": 59392, 13 | "src": "fontawesome" 14 | }, 15 | { 16 | "uid": "1c4068ed75209e21af36017df8871802", 17 | "css": "down-big", 18 | "code": 59393, 19 | "src": "fontawesome" 20 | }, 21 | { 22 | "uid": "95376bf082bfec6ce06ea1cda7bd7ead", 23 | "css": "up-big", 24 | "code": 59394, 25 | "src": "fontawesome" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensedI.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 68, 9 | 'FontBBox' => '[-755 -347 1480 1227]', 10 | 'ItalicAngle' => -11, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/legalbrokers/application/third_party/mpdf/ttfonts/DejaVuSerifCondensed-Italic.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=302444; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserifcondensedI'; 23 | $panose=' 0 0 2 6 6 6 5 3 5 b 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /assets/build/bootstrap-less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /application/pdf/mpdf/ttfontdata/dejavuserifcondensedBI.mtx.php: -------------------------------------------------------------------------------- 1 | 939, 6 | 'Descent' => -236, 7 | 'CapHeight' => 939, 8 | 'Flags' => 262212, 9 | 'FontBBox' => '[-815 -389 1579 1235]', 10 | 'ItalicAngle' => -11, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='D:/xampp/htdocs/legalbrokers/application/third_party/mpdf/ttfonts/DejaVuSerifCondensed-BoldItalic.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=294584; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserifcondensedBI'; 23 | $panose=' 0 0 2 6 8 6 5 3 5 b 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sq'] = { 7 | days: ["E Diel", "E Hënë", "E martē", "E mërkurë", "E Enjte", "E Premte", "E Shtunë", "E Diel"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu", "Die"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht", "Di"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | today: "Sot" 13 | }; 14 | }(jQuery)); 15 | 16 | -------------------------------------------------------------------------------- /application/pdf/mpdf/utils/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

mPDF Font Utility scripts for Version 5.0

8 |

9 | Dump all characters from a font (font_dump.php) 10 |

11 |

12 | Show a list of all font names available (font_names.php) 13 |

14 |

15 | Show fonts in Collections .ttc (font_collections.php) 16 |

17 |

18 | Show coverage of characters from all fonts (font_coverage.php) 19 |

20 | 21 |

Edit the scripts to change the font folder if you wish - this is set by default to /ttfonts/

22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /assets/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AdminLTE", 3 | "homepage": "http://almsaeedstudio.com", 4 | "authors": [ 5 | "Abdullah Almsaeed " 6 | ], 7 | "description": "Admin dashboard and control panel template", 8 | "main": [ 9 | "index2.html", 10 | "dist/css/AdminLTE.css", 11 | "dist/js/app.js", 12 | "build/less/AdminLTE.less" 13 | ], 14 | "keywords": [ 15 | "css", 16 | "js", 17 | "html", 18 | "template", 19 | "admin", 20 | "bootstrap", 21 | "theme", 22 | "backend", 23 | "responsive" 24 | ], 25 | "license": "MIT", 26 | "ignore": [ 27 | "/.*", 28 | "node_modules", 29 | "bower_components", 30 | "composer.json", 31 | "documentation" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['id'] = { 7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"], 8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"], 9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"], 10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], 12 | today: "Hari Ini", 13 | clear: "Kosongkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian (bokmål) translation for bootstrap-datepicker 3 | * Fredrik Sundmyhr 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nb'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "I Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.ua.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ua'] = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятница", "Субота", "Неділя"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kk'] = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі", "Жексенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен", "Жек"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн", "Жк"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мамыр", "Мау", "Шлд", "Тмз", "Қыр", "Қзн", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | clear: "Limpar" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation for bootstrap-datepicker 3 | * Serkan Algur 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['tr'] = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | 17 | -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['da'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "I Dag", 13 | clear: "Nulstil" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ru'] = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /assets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "admin-lte", 3 | "version": "2.3.6", 4 | "main": "dist/js/app.min.js", 5 | "repository": { 6 | "type": "git", 7 | "url": "git://github.com/almasaeed2010/AdminLTE.git" 8 | }, 9 | "license": "MIT", 10 | "devDependencies": { 11 | "R2": "^1.4.3", 12 | "grunt": "~0.4.5", 13 | "grunt-bootlint": "^0.9.1", 14 | "grunt-contrib-clean": "^0.6.0", 15 | "grunt-contrib-csslint": "^0.5.0", 16 | "grunt-contrib-cssmin": "^0.12.2", 17 | "grunt-contrib-jshint": "^0.11.2", 18 | "grunt-contrib-less": "^0.12.0", 19 | "grunt-contrib-uglify": "^0.7.0", 20 | "grunt-contrib-watch": "~0.6.1", 21 | "grunt-cssjanus": "^0.2.4", 22 | "grunt-image": "^1.0.5", 23 | "grunt-includes": "^0.4.5" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/datepicker/locales/bootstrap-datepicker.is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['is'] = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }(jQuery)); 15 | --------------------------------------------------------------------------------