├── application ├── views │ ├── email │ │ ├── _header.php │ │ ├── _footer.php │ │ └── auth │ │ │ ├── new_password.php │ │ │ └── activate.php │ ├── _layouts │ │ ├── empty.php │ │ ├── full_width.php │ │ ├── index.html │ │ └── default.php │ ├── home.php │ ├── errors │ │ ├── custom │ │ │ └── error_404.php │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── index.html │ │ ├── index.html │ │ └── html │ │ │ └── index.html │ ├── index.html │ ├── _partials │ │ └── index.html │ └── _base │ │ └── foot.php ├── vendor │ ├── symfony │ │ └── finder │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── A │ │ │ │ ├── a.dat │ │ │ │ └── B │ │ │ │ │ ├── C │ │ │ │ │ └── abc.dat │ │ │ │ │ └── ab.dat │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── a.dat.copy │ │ │ │ │ └── B │ │ │ │ │ ├── C │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── ab.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ │ └── .gitignore │ ├── zircote │ │ └── swagger-php │ │ │ ├── VERSION │ │ │ ├── .gitignore │ │ │ └── tests │ │ │ └── Fixtures │ │ │ ├── ParentWithoutDocBlocks.php │ │ │ ├── HelloTrait.php │ │ │ ├── Parent.php │ │ │ ├── Child.php │ │ │ └── ChildWithDocBlocks.php │ ├── bin │ │ └── swagger │ ├── guzzlehttp │ │ ├── ringphp │ │ │ ├── docs │ │ │ │ └── requirements.txt │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── Exception │ │ │ │ │ ├── RingException.php │ │ │ │ │ ├── CancelledException.php │ │ │ │ │ ├── CancelledFutureAccessException.php │ │ │ │ │ └── ConnectException.php │ │ │ │ └── Future │ │ │ │ │ └── FutureArrayInterface.php │ │ │ └── tests │ │ │ │ └── bootstrap.php │ │ ├── guzzle │ │ │ ├── docs │ │ │ │ ├── requirements.txt │ │ │ │ ├── _static │ │ │ │ │ ├── logo.png │ │ │ │ │ └── guzzle-icon.png │ │ │ │ └── _templates │ │ │ │ │ └── nav_links.html │ │ │ ├── src │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectException.php │ │ │ │ │ ├── StateException.php │ │ │ │ │ ├── TransferException.php │ │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ │ ├── CouldNotRewindStreamException.php │ │ │ │ │ ├── BadResponseException.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ └── ServerException.php │ │ │ │ ├── ToArrayInterface.php │ │ │ │ └── Event │ │ │ │ │ └── HasEmitterInterface.php │ │ │ ├── .gitignore │ │ │ ├── .editorconfig │ │ │ └── tests │ │ │ │ └── bootstrap.php │ │ └── streams │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ └── Exception │ │ │ │ └── CannotAttachException.php │ │ │ └── .travis.yml │ ├── google │ │ └── recaptcha │ │ │ └── .gitignore │ ├── react │ │ └── promise │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ ├── functions_include.php │ │ │ ├── PromisorInterface.php │ │ │ ├── CancellablePromiseInterface.php │ │ │ └── PromiseInterface.php │ │ │ ├── tests │ │ │ ├── Stub │ │ │ │ └── CallableStub.php │ │ │ └── bootstrap.php │ │ │ └── .travis.yml │ ├── firebase │ │ └── php-jwt │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ ├── ExpiredException.php │ │ │ ├── BeforeValidException.php │ │ │ └── SignatureInvalidException.php │ │ │ ├── tests │ │ │ └── bootstrap.php │ │ │ └── .travis.yml │ ├── mailgun │ │ └── mailgun-php │ │ │ ├── tests │ │ │ ├── Bootstrap.php │ │ │ └── Mailgun │ │ │ │ └── Tests │ │ │ │ ├── MailgunTestCase.php │ │ │ │ └── TestAssets │ │ │ │ ├── mailgun_icon1.png │ │ │ │ └── mailgun_icon2.png │ │ │ ├── src │ │ │ └── Mailgun │ │ │ │ ├── Messages │ │ │ │ └── Exceptions │ │ │ │ │ ├── InvalidParameter.php │ │ │ │ │ ├── TooManyParameters.php │ │ │ │ │ ├── InvalidParameterType.php │ │ │ │ │ └── MissingRequiredMIMEParameters.php │ │ │ │ └── Connection │ │ │ │ └── Exceptions │ │ │ │ ├── MissingEndpoint.php │ │ │ │ ├── InvalidCredentials.php │ │ │ │ ├── NoDomainsConfigured.php │ │ │ │ └── MissingRequiredParameters.php │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── doctrine │ │ └── lexer │ │ │ └── README.md │ ├── autoload.php │ └── composer │ │ └── autoload_classmap.php ├── models │ ├── Group_model.php │ ├── User_model.php │ ├── Api_key_model.php │ ├── Admin_user_model.php │ └── index.html ├── modules │ ├── admin │ │ ├── views │ │ │ ├── general.php │ │ │ ├── crud.php │ │ │ ├── _partials │ │ │ │ ├── back_btn.php │ │ │ │ └── sidemenu_search.php │ │ │ └── index.html │ │ ├── config │ │ │ ├── routes.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── libraries │ │ │ └── index.html │ │ ├── models │ │ │ └── index.html │ │ └── controllers │ │ │ └── index.html │ ├── adminlte │ │ └── views │ │ │ └── widget │ │ │ ├── btn_submit.php │ │ │ ├── box_close.php │ │ │ ├── app_btn.php │ │ │ ├── box_open.php │ │ │ └── btn.php │ ├── index.html │ └── api │ │ ├── index.html │ │ ├── config │ │ └── index.html │ │ ├── models │ │ └── index.html │ │ ├── views │ │ └── index.html │ │ ├── controllers │ │ ├── index.html │ │ └── Errors.php │ │ ├── libraries │ │ └── index.html │ │ └── swagger │ │ └── definitions │ │ └── User.php ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── third_party │ ├── image_crud │ │ ├── libraries │ │ │ └── Image_moo.php │ │ └── license-image-crud.txt │ ├── grocery_crud │ │ ├── libraries │ │ │ └── Image_moo.php │ │ ├── examples_database.sql.zip │ │ └── README.md │ ├── ion_auth │ │ ├── userguide │ │ │ └── images │ │ │ │ ├── arrow.gif │ │ │ │ ├── nav_bg_darker.jpg │ │ │ │ ├── nav_toggle_darker.jpg │ │ │ │ └── nav_separator_darker.jpg │ │ └── views_sample │ │ │ └── auth │ │ │ └── email │ │ │ ├── new_password.tpl.php │ │ │ ├── activate.tpl.php │ │ │ └── forgot_password.tpl.php │ ├── index.html │ └── rest_server │ │ ├── language │ │ ├── index.html │ │ ├── dutch │ │ │ └── index.html │ │ ├── bulgarian │ │ │ └── index.html │ │ ├── english │ │ │ └── index.html │ │ ├── french │ │ │ └── index.html │ │ ├── german │ │ │ └── index.html │ │ ├── indonesia │ │ │ └── index.html │ │ ├── italian │ │ │ └── index.html │ │ ├── romanian │ │ │ └── index.html │ │ ├── spanish │ │ │ └── index.html │ │ ├── turkish │ │ │ └── index.html │ │ ├── serbian_cyr │ │ │ └── index.html │ │ ├── serbian_lat │ │ │ └── index.html │ │ ├── portuguese-brazilian │ │ │ └── index.html │ │ ├── traditional-chinese │ │ │ └── index.html │ │ └── simplified-chinese │ │ │ └── index.html │ │ └── libraries │ │ └── index.html ├── index.html ├── config │ └── index.html ├── core │ ├── index.html │ └── MY_Router.php ├── helpers │ └── index.html ├── hooks │ └── index.html ├── language │ ├── index.html │ ├── english │ │ └── index.html │ ├── spanish │ │ └── index.html │ ├── simplified-chinese │ │ └── index.html │ └── traditional-chinese │ │ └── index.html ├── logs │ └── index.html ├── controllers │ ├── index.html │ └── Home.php ├── libraries │ └── index.html └── composer.json ├── assets ├── grocery_crud │ ├── languages │ │ ├── .htaccess │ │ └── index.html │ ├── themes │ │ ├── datatables │ │ │ ├── views │ │ │ │ └── .htaccess │ │ │ ├── config.php │ │ │ ├── css │ │ │ │ ├── images │ │ │ │ │ ├── error.png │ │ │ │ │ ├── success.png │ │ │ │ │ ├── small-loading.gif │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── extras │ │ │ │ └── TableTools │ │ │ │ │ └── media │ │ │ │ │ ├── images │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── xls.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── xls_hover.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── printer.psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── copy document.psd │ │ │ │ │ └── collection_hover.png │ │ │ │ │ ├── as3 │ │ │ │ │ └── lib │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ │ ├── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ │ └── js │ │ │ │ │ └── TableTools.min.js.gz │ │ │ └── js │ │ │ │ └── index.html │ │ ├── flexigrid │ │ │ ├── views │ │ │ │ └── .htaccess │ │ │ ├── config.php │ │ │ ├── css │ │ │ │ ├── images │ │ │ │ │ ├── add.png │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── ddn.png │ │ │ │ │ ├── dn.png │ │ │ │ │ ├── hl.png │ │ │ │ │ ├── up.png │ │ │ │ │ ├── uup.png │ │ │ │ │ ├── wbg.gif │ │ │ │ │ ├── close.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── export.png │ │ │ │ │ ├── fhbg.gif │ │ │ │ │ ├── first.gif │ │ │ │ │ ├── last.gif │ │ │ │ │ ├── line.gif │ │ │ │ │ ├── load.gif │ │ │ │ │ ├── load.png │ │ │ │ │ ├── next.gif │ │ │ │ │ ├── prev.gif │ │ │ │ │ ├── print.png │ │ │ │ │ ├── success.png │ │ │ │ │ ├── btn-sprite.gif │ │ │ │ │ ├── magnifier.png │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── index.html │ │ └── index.html │ ├── js │ │ ├── jquery_plugins │ │ │ ├── config │ │ │ │ ├── jquery.multiselect.js │ │ │ │ ├── jquery.uniform.config.js │ │ │ │ ├── jquery.chosen.config.js │ │ │ │ ├── index.html │ │ │ │ ├── jquery.ckeditor.config.js │ │ │ │ ├── summernote.config.js │ │ │ │ ├── jquery.ckeditor4.config.js │ │ │ │ └── jquery.fancybox.config.js │ │ │ ├── index.html │ │ │ └── ui │ │ │ │ ├── index.html │ │ │ │ └── i18n │ │ │ │ ├── index.html │ │ │ │ ├── datepicker │ │ │ │ └── index.html │ │ │ │ ├── multiselect │ │ │ │ ├── index.html │ │ │ │ ├── ui-multiselect-ja.js │ │ │ │ ├── ui-multiselect-en.js │ │ │ │ ├── ui-multiselect-ru.js │ │ │ │ ├── ui-multiselect-uk.js │ │ │ │ ├── ui-multiselect-el.js │ │ │ │ ├── ui-multiselect-es.js │ │ │ │ ├── ui-multiselect-fr.js │ │ │ │ ├── ui-multiselect-pt-br.js │ │ │ │ ├── ui-multiselect-de.js │ │ │ │ ├── ui-multiselect-it.js │ │ │ │ └── ui-multiselect-ar.js │ │ │ │ └── timepicker │ │ │ │ └── index.html │ │ └── index.html │ ├── license-grocery-crud.txt │ ├── css │ │ ├── jquery_plugins │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancybox.png │ │ │ │ ├── fancy_close.png │ │ │ │ ├── fancybox-x.png │ │ │ │ ├── fancybox-y.png │ │ │ │ ├── fancy_loading.png │ │ │ │ ├── fancy_nav_left.png │ │ │ │ ├── fancy_nav_right.png │ │ │ │ ├── fancy_shadow_e.png │ │ │ │ ├── fancy_shadow_n.png │ │ │ │ ├── fancy_shadow_ne.png │ │ │ │ ├── fancy_shadow_nw.png │ │ │ │ ├── fancy_shadow_s.png │ │ │ │ ├── fancy_shadow_se.png │ │ │ │ ├── fancy_shadow_sw.png │ │ │ │ ├── fancy_shadow_w.png │ │ │ │ ├── fancy_title_left.png │ │ │ │ ├── fancy_title_main.png │ │ │ │ ├── fancy_title_over.png │ │ │ │ └── fancy_title_right.png │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ └── index.html │ │ │ ├── file_upload │ │ │ │ ├── loading.gif │ │ │ │ └── progressbar.gif │ │ │ ├── uniform │ │ │ │ └── images │ │ │ │ │ ├── sprite.png │ │ │ │ │ ├── bg-input.png │ │ │ │ │ └── bg-input-focus.png │ │ │ └── index.html │ │ ├── ui │ │ │ ├── simple │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_333333_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── texteditor │ │ ├── ckeditor │ │ │ ├── images │ │ │ │ └── spacer.gif │ │ │ ├── skins │ │ │ │ └── kama │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ └── images │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── toolbar_start.gif │ │ │ │ │ └── dialog_sides_rtl.png │ │ │ └── plugins │ │ │ │ ├── uicolor │ │ │ │ ├── uicolor.gif │ │ │ │ ├── yui │ │ │ │ │ └── assets │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ │ └── picker_thumb.png │ │ │ │ └── lang │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── link │ │ │ │ └── images │ │ │ │ │ └── anchor.gif │ │ │ │ ├── smiley │ │ │ │ └── images │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ └── whatchutalkingabout_smile.gif │ │ │ │ ├── placeholder │ │ │ │ └── placeholder.gif │ │ │ │ ├── flash │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── iframe │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── block_address.png │ │ │ │ │ └── block_blockquote.png │ │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── templates │ │ │ │ └── templates │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ │ └── preview │ │ │ │ └── preview.html │ │ ├── ckeditor4 │ │ │ ├── plugins │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── smiley │ │ │ │ │ └── images │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── kiss.png │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── envelope.png │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ ├── wink_smile.png │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── whatchutalkingabout_smile.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ ├── flash │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── iframe │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_pre.png │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ └── block_blockquote.png │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ └── templates │ │ │ │ │ └── templates │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── samples │ │ │ │ ├── img │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ └── navigation-tip.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 │ │ │ └── skins │ │ │ │ └── moono │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── lock.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── refresh.png │ │ │ │ ├── spinner.gif │ │ │ │ └── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ └── summernote │ │ │ └── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ ├── index.html │ └── config │ │ └── index.html ├── image_crud │ ├── languages │ │ ├── .htaccess │ │ └── index.html │ ├── css │ │ ├── loading.gif │ │ ├── processing.gif │ │ ├── file_upload │ │ │ ├── loading.gif │ │ │ ├── processing.gif │ │ │ ├── progressbar.gif │ │ │ └── index.html │ │ └── index.html │ ├── images │ │ ├── icon-move.png │ │ ├── loading.gif │ │ ├── icon-delete.gif │ │ ├── icon-delete.png │ │ ├── colorbox │ │ │ ├── border1.png │ │ │ ├── border2.png │ │ │ ├── loading.gif │ │ │ ├── overlay.png │ │ │ ├── controls.png │ │ │ ├── ie6 │ │ │ │ ├── borderTopLeft.png │ │ │ │ ├── borderBottomLeft.png │ │ │ │ ├── borderMiddleLeft.png │ │ │ │ ├── borderTopCenter.png │ │ │ │ ├── borderTopRight.png │ │ │ │ ├── borderBottomCenter.png │ │ │ │ ├── borderBottomRight.png │ │ │ │ ├── borderMiddleRight.png │ │ │ │ └── index.html │ │ │ ├── loading_background.png │ │ │ └── index.html │ │ └── index.html │ ├── license-image-crud.txt │ ├── index.html │ ├── js │ │ └── index.html │ ├── config │ │ └── index.html │ └── views │ │ └── index.html ├── api │ ├── images │ │ ├── expand.gif │ │ ├── collapse.gif │ │ ├── favicon.ico │ │ ├── throbber.gif │ │ ├── logo_small.png │ │ ├── wordnik_api.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── pet_store_api.png │ │ └── explorer_icons.png │ └── fonts │ │ ├── DroidSans.ttf │ │ └── DroidSans-Bold.ttf ├── dist │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.ttf │ │ ├── FontAwesome.otf │ │ ├── ionicons.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ └── github.png │ ├── frontend │ │ ├── app.min.js │ │ └── app.min.css │ ├── index.html │ └── admin │ │ ├── app.min.js │ │ └── app.min.css ├── index.html └── uploads │ └── index.html ├── src ├── sass │ ├── admin │ │ ├── _pages.scss │ │ └── _variables.scss │ ├── frontend │ │ ├── _pages.scss │ │ └── _variables.scss │ ├── index.html │ ├── _mixins.scss │ ├── frontend.scss │ └── admin.scss ├── images │ ├── github.png │ └── index.html ├── css │ ├── bootstrap-examples │ │ ├── navbar-fixed-top.css │ │ ├── navbar-static-top.css │ │ ├── navbar.css │ │ └── jumbotron.css │ ├── admin.css │ ├── frontend.css │ └── index.html ├── .htaccess ├── js │ ├── frontend.js │ └── index.html ├── index.html └── theme │ └── index.html ├── system ├── fonts │ ├── texb.ttf │ └── index.html ├── .htaccess ├── language │ ├── khmer │ │ └── index.html │ ├── filipino │ │ └── index.html │ ├── hindi │ │ └── index.html │ ├── tamil │ │ └── index.html │ ├── bengali │ │ └── index.html │ ├── greek │ │ └── index.html │ ├── index.html │ ├── catalan │ │ └── index.html │ ├── hungarian │ │ └── index.html │ ├── thai │ │ └── index.html │ ├── urdu │ │ └── index.html │ ├── arabic │ │ └── index.html │ ├── armenian │ │ └── index.html │ ├── bulgarian │ │ └── index.html │ ├── czech │ │ └── index.html │ ├── dutch │ │ └── index.html │ ├── english │ │ └── index.html │ ├── french │ │ └── index.html │ ├── german │ │ └── index.html │ ├── gujarati │ │ └── index.html │ ├── italian │ │ └── index.html │ ├── japanese │ │ └── index.html │ ├── korean │ │ └── index.html │ ├── latvian │ │ └── index.html │ ├── norwegian │ │ └── index.html │ ├── persian │ │ └── index.html │ ├── polish │ │ └── index.html │ ├── romanian │ │ └── index.html │ ├── russian │ │ └── index.html │ ├── slovak │ │ └── index.html │ ├── slovenian │ │ └── index.html │ ├── spanish │ │ └── index.html │ ├── swedish │ │ └── index.html │ ├── turkish │ │ └── index.html │ ├── ukrainian │ │ └── index.html │ ├── azerbaijani │ │ └── index.html │ ├── indonesian │ │ └── index.html │ ├── lithuanian │ │ └── index.html │ ├── portuguese │ │ └── index.html │ ├── serbian │ │ └── index.html │ ├── vietnamese │ │ └── index.html │ ├── simplified-chinese │ │ └── index.html │ ├── traditional-chinese │ │ └── index.html │ └── portuguese-brazilian │ │ └── index.html ├── 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 └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── screenshots ├── admin_home.png ├── admin_login.png ├── admin_user.png ├── admin_account.png ├── frontend_home.png ├── admin_user_crud.png ├── frontend_example.png └── index.html ├── gulpfile.js ├── tasks │ ├── build.js │ ├── default.js │ ├── clean.js │ └── rebuild.js ├── .htaccess ├── index.js └── lib │ └── handleErrors.js └── sql ├── .htaccess ├── index.html ├── backup └── index.html └── core └── index.html /application/views/email/_header.php: -------------------------------------------------------------------------------- 1 | 2 |
-------------------------------------------------------------------------------- /assets/grocery_crud/languages/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /assets/image_crud/languages/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/zircote/swagger-php/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.6 2 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/bin/swagger: -------------------------------------------------------------------------------- 1 | ../zircote/swagger-php/bin/swagger -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/views/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/views/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/_layouts/empty.php: -------------------------------------------------------------------------------- 1 | load->view($inner_view); ?> -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/ringphp/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme 2 | -------------------------------------------------------------------------------- /application/vendor/zircote/swagger-php/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /application/models/Group_model.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/config.php: -------------------------------------------------------------------------------- 1 | =1.2b1 2 | guzzle_sphinx_theme>=0.6.0 3 | -------------------------------------------------------------------------------- /application/vendor/react/promise/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | phpunit.xml 4 | vendor/ 5 | -------------------------------------------------------------------------------- /application/vendor/firebase/php-jwt/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | phpunit.phar 3 | phpunit.phar.asc 4 | composer.phar 5 | -------------------------------------------------------------------------------- /assets/api/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/expand.gif -------------------------------------------------------------------------------- /screenshots/admin_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/screenshots/admin_home.png -------------------------------------------------------------------------------- /screenshots/admin_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/screenshots/admin_login.png -------------------------------------------------------------------------------- /screenshots/admin_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/screenshots/admin_user.png -------------------------------------------------------------------------------- /src/sass/admin/_variables.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Shared variables (e.g. colors, font sizes) 3 | */ 4 | 5 | $dark: #444; -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/ringphp/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | build/artifacts/ 3 | composer.lock 4 | docs/_build/ 5 | -------------------------------------------------------------------------------- /application/vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /application/views/home.php: -------------------------------------------------------------------------------- 1 | 2 |view file: /application/views/home.php
4 |The page you requested was not found.
2 | -------------------------------------------------------------------------------- /assets/api/images/explorer_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/explorer_icons.png -------------------------------------------------------------------------------- /assets/image_crud/css/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/css/processing.gif -------------------------------------------------------------------------------- /assets/image_crud/images/icon-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/icon-move.png -------------------------------------------------------------------------------- /assets/image_crud/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/loading.gif -------------------------------------------------------------------------------- /assets/image_crud/images/icon-delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/icon-delete.gif -------------------------------------------------------------------------------- /assets/image_crud/images/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/icon-delete.png -------------------------------------------------------------------------------- /assets/image_crud/license-image-crud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/license-image-crud.txt -------------------------------------------------------------------------------- /assets/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/dist/frontend/app.min.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){console.log("Frontend Website")}); 2 | //# sourceMappingURL=app.min.js.map 3 | -------------------------------------------------------------------------------- /assets/grocery_crud/license-grocery-crud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/license-grocery-crud.txt -------------------------------------------------------------------------------- /assets/image_crud/css/file_upload/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/css/file_upload/loading.gif -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/border1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/border1.png -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/border2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/border2.png -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/loading.gif -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/overlay.png -------------------------------------------------------------------------------- /application/modules/adminlte/views/widget/btn_submit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/image_crud/css/file_upload/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/css/file_upload/processing.gif -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/controls.png -------------------------------------------------------------------------------- /sql/.htaccess: -------------------------------------------------------------------------------- 1 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /src/css/bootstrap-examples/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 50px tall */ 2 | body { 3 | padding-top: 50px; 4 | padding-bottom: 20px; 5 | } 6 | -------------------------------------------------------------------------------- /application/modules/admin/config/routes.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /application/third_party/ion_auth/userguide/images/nav_bg_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/third_party/ion_auth/userguide/images/nav_bg_darker.jpg -------------------------------------------------------------------------------- /application/vendor/firebase/php-jwt/src/BeforeValidException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/img/github-top.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/img/header-bg.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/css/images/small-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/css/images/small-loading.gif -------------------------------------------------------------------------------- /assets/image_crud/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/image_crud/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/khmer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php: -------------------------------------------------------------------------------- 1 | load->view('_partials/navbar'); ?> 2 | 3 | load->view($inner_view); ?> 4 | 5 | load->view('_partials/footer'); ?> -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |