├── 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 |
3 |

view file: /application/views/home.php

4 |
-------------------------------------------------------------------------------- /assets/api/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /assets/api/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/collapse.gif -------------------------------------------------------------------------------- /assets/api/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/favicon.ico -------------------------------------------------------------------------------- /assets/api/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/throbber.gif -------------------------------------------------------------------------------- /assets/dist/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/ionicons.eot -------------------------------------------------------------------------------- /assets/dist/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/ionicons.ttf -------------------------------------------------------------------------------- /assets/dist/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/images/github.png -------------------------------------------------------------------------------- /gulpfile.js/tasks/build.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'); 2 | 3 | gulp.task('build', ['imagemin', 'sass', 'uglify']); -------------------------------------------------------------------------------- /screenshots/admin_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/screenshots/admin_account.png -------------------------------------------------------------------------------- /screenshots/frontend_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/screenshots/frontend_home.png -------------------------------------------------------------------------------- /src/css/bootstrap-examples/navbar-fixed-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | padding-top: 70px; 4 | } 5 | -------------------------------------------------------------------------------- /src/sass/frontend/_variables.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Shared variables (e.g. colors, font sizes) 3 | */ 4 | 5 | $dark: #444; -------------------------------------------------------------------------------- /assets/api/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/logo_small.png -------------------------------------------------------------------------------- /assets/api/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/wordnik_api.png -------------------------------------------------------------------------------- /assets/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/dist/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/ionicons.woff -------------------------------------------------------------------------------- /assets/image_crud/css/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/css/loading.gif -------------------------------------------------------------------------------- /screenshots/admin_user_crud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/screenshots/admin_user_crud.png -------------------------------------------------------------------------------- /screenshots/frontend_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/screenshots/frontend_example.png -------------------------------------------------------------------------------- /assets/api/fonts/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/fonts/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /assets/api/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/favicon-16x16.png -------------------------------------------------------------------------------- /assets/api/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/favicon-32x32.png -------------------------------------------------------------------------------- /assets/api/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/api/images/pet_store_api.png -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.multiselect.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".multiselect").multiselect(); 3 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.uniform.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".radio-uniform").uniform(); 3 | }); -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/streams/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_STORE 3 | coverage 4 | phpunit.xml 5 | composer.lock 6 | vendor/ 7 | -------------------------------------------------------------------------------- /application/views/errors/custom/error_404.php: -------------------------------------------------------------------------------- 1 |

The page you requested was not found.

2 |

Back to home page

-------------------------------------------------------------------------------- /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 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /src/js/frontend.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Scripts for Frontend Website 3 | */ 4 | 5 | $(document).ready(function() { 6 | console.log("Frontend Website"); 7 | }); -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /assets/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/image_crud/css/file_upload/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/css/file_upload/progressbar.gif -------------------------------------------------------------------------------- /gulpfile.js/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /src/css/bootstrap-examples/navbar-static-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | } 4 | 5 | .navbar-static-top { 6 | margin-bottom: 19px; 7 | } 8 | -------------------------------------------------------------------------------- /assets/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/css/admin.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Stylesheet for Admin Panel 3 | * 4 | * Recommend to avoid this and use SASS file instead: 5 | * /assets/sass/admin.scss 6 | */ -------------------------------------------------------------------------------- /src/css/bootstrap-examples/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 20px; 3 | padding-bottom: 20px; 4 | } 5 | 6 | .navbar { 7 | margin-bottom: 20px; 8 | } 9 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/modules/admin/views/crud.php: -------------------------------------------------------------------------------- 1 | $crud_note

"; ?> 2 | 3 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/add.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/bg.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/ddn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/ddn.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/dn.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/hl.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/up.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/uup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/uup.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/wbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/wbg.gif -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/ie6/borderTopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/ie6/borderTopLeft.png -------------------------------------------------------------------------------- /gulpfile.js/tasks/default.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'), 2 | gulpSequence = require('gulp-sequence'); 3 | 4 | gulp.task('default', gulpSequence('build', 'watch')); -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/third_party/image_crud/libraries/Image_moo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/third_party/image_crud/libraries/Image_moo.php -------------------------------------------------------------------------------- /application/third_party/image_crud/license-image-crud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/third_party/image_crud/license-image-crud.txt -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/vendor/guzzlehttp/guzzle/docs/_static/logo.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/css/jquery_plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/images/spacer.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/icons.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/css/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/css/images/error.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/close.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/edit.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/error.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/export.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/fhbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/fhbg.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/first.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/last.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/line.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/load.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/load.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/next.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/prev.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/flexigrid/css/images/print.png -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/ie6/borderBottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/ie6/borderBottomLeft.png -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/ie6/borderMiddleLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/ie6/borderMiddleLeft.png -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/ie6/borderTopCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/ie6/borderTopCenter.png -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/ie6/borderTopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/ie6/borderTopRight.png -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/image_crud/images/colorbox/loading_background.png -------------------------------------------------------------------------------- /src/css/frontend.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Stylesheet for Frontend Website 3 | * 4 | * Recommend to avoid this and use SASS file instead: 5 | * /assets/sass/frontend.scss 6 | */ -------------------------------------------------------------------------------- /application/third_party/grocery_crud/libraries/Image_moo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/third_party/grocery_crud/libraries/Image_moo.php -------------------------------------------------------------------------------- /application/third_party/ion_auth/userguide/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/third_party/ion_auth/userguide/images/arrow.gif -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

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 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

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 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

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 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_right.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /application/modules/admin/views/_partials/back_btn.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | Back 4 | -------------------------------------------------------------------------------- /application/third_party/ion_auth/userguide/images/nav_toggle_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/third_party/ion_auth/userguide/images/nav_toggle_darker.jpg -------------------------------------------------------------------------------- /application/vendor/firebase/php-jwt/src/SignatureInvalidException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/img/header-separator.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /sql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /application/third_party/ion_auth/userguide/images/nav_separator_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/application/third_party/ion_auth/userguide/images/nav_separator_darker.jpg -------------------------------------------------------------------------------- /application/vendor/mailgun/mailgun-php/src/Mailgun/Connection/Exceptions/InvalidCredentials.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/image_crud/css/file_upload/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/ie6/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/image_crud/images/colorbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /gulpfile.js/tasks/clean.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'), 2 | del = require('del'), 3 | config = require('../config').clean; 4 | 5 | gulp.task('clean', function() { 6 | return del(config.src); 7 | }); 8 | -------------------------------------------------------------------------------- /sql/backup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/vendor/mailgun/mailgun-php/tests/Mailgun/Tests/MailgunTestCase.php: -------------------------------------------------------------------------------- 1 | 3 |

This email is sent automatically from from_name; ?>.

4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/dist/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /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/modules/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/vendor/react/promise/tests/Stub/CallableStub.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/chosen/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/urdu/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/modules/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/api/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/vendor/mailgun/mailgun-php/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | vendor 3 | composer.phar 4 | smoketest.php 5 | rackspace_logo.jpg 6 | mailgun_icon.png 7 | build 8 | composer.lock 9 | nbproject/* 10 | .idea 11 | -------------------------------------------------------------------------------- /application/vendor/mailgun/mailgun-php/src/Mailgun/Connection/Exceptions/MissingRequiredParameters.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/css/ui/simple/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/css/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/as3/lib/AlivePDF.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/as3/lib/AlivePDF.swc -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/background.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/collection.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /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/arabic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/dutch/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/language/french/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/ukrainian/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/language/spanish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/_partials/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/grocery_crud/js/jquery_plugins/config/jquery.ckeditor.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $( 'textarea.texteditor' ).ckeditor({toolbar:'Full'}); 3 | $( 'textarea.mini-texteditor' ).ckeditor({toolbar:'Basic',width:700}); 4 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/datepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/printer.psd -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/js/TableTools.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/themes/datatables/extras/TableTools/media/js/TableTools.min.js.gz -------------------------------------------------------------------------------- /src/sass/_mixins.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Mixins which can be shared for all sites 3 | */ 4 | 5 | @mixin border-radius($radius) { 6 | -webkit-border-radius: $radius; 7 | -moz-border-radius: $radius; 8 | border-radius: $radius; 9 | } -------------------------------------------------------------------------------- /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/language/azerbaijani/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Zabranjen je pristup direktorijumu.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/vietnamese/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 | -------------------------------------------------------------------------------- /application/modules/admin/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/adminlte/views/widget/app_btn.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /application/modules/api/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/ringphp/src/Exception/CancelledException.php: -------------------------------------------------------------------------------- 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/language/simplified-chinese/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/traditional-chinese/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 | -------------------------------------------------------------------------------- /application/language/simplified-chinese/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- 1 | # Doctrine Lexer 2 | 3 | Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers. 4 | 5 | This lexer is used in Doctrine Annotations and in Doctrine ORM (DQL). 6 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.phar 3 | composer.lock 4 | composer-test.lock 5 | vendor/ 6 | build/artifacts/ 7 | artifacts/ 8 | docs/_build 9 | docs/*.pyc 10 | .idea 11 | .DS_STORE 12 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/ringphp/src/Exception/CancelledFutureAccessException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/MY_Router.php: -------------------------------------------------------------------------------- 1 | '> 2 |
3 |

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/sass/admin.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * SASS for Admin Panel 3 | */ 4 | 5 | // Shared mixins 6 | @import "_mixins"; 7 | 8 | // Admin Panel specific 9 | @import "admin/_variables"; 10 | @import "admin/_crud"; 11 | @import "admin/_pages"; 12 | -------------------------------------------------------------------------------- /application/third_party/rest_server/language/bulgarian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/vendor/react/promise/src/PromisorInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/vendor/firebase/php-jwt/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor4/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/ci_bootstrap_3/master/assets/grocery_crud/texteditor/ckeditor4/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /application/vendor/react/promise/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | addPsr4('React\\Promise\\', __DIR__); 8 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.ckeditor4.config.js: -------------------------------------------------------------------------------- 1 | // Added by CI Bootstrap 3 2 | $(function(){ 3 | $( 'textarea.texteditor' ).ckeditor({toolbar:'Full',width:700}); 4 | $( 'textarea.mini-texteditor' ).ckeditor({toolbar:'Basic',width:700}); 5 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/docs/_templates/nav_links.html: -------------------------------------------------------------------------------- 1 |
  • GitHub
  • 2 |
  • Forum
  • 3 |
  • IRC
  • 4 | -------------------------------------------------------------------------------- /application/vendor/zircote/swagger-php/tests/Fixtures/HelloTrait.php: -------------------------------------------------------------------------------- 1 | render('home', 'full_width'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /application/third_party/ion_auth/views_sample/auth/email/new_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 | 5 |

    6 | 7 | -------------------------------------------------------------------------------- /application/views/email/auth/new_password.php: -------------------------------------------------------------------------------- 1 | load->view('email/_header'); ?> 2 | 3 |

    4 |

    5 | 6 | load->view('email/_footer'); ?> -------------------------------------------------------------------------------- /application/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ci_bootstrap_3", 3 | "require": { 4 | "firebase/php-jwt": "^3.0", 5 | "google/recaptcha": "~1.1", 6 | "league/csv": "^7.0", 7 | "mailgun/mailgun-php": "1.8.*", 8 | "zircote/swagger-php": "^2.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /application/vendor/firebase/php-jwt/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - hhvm 8 | 9 | before_script: 10 | - wget -nc http://getcomposer.org/composer.phar 11 | - php composer.phar install 12 | 13 | script: phpunit --configuration phpunit.xml.dist 14 | -------------------------------------------------------------------------------- /application/vendor/mailgun/mailgun-php/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.4 5 | - 5.5 6 | - 5.6 7 | - 7.0 8 | - hhvm 9 | 10 | before_install: 11 | - travis_retry composer self-update 12 | 13 | install: 14 | - travis_retry composer install 15 | 16 | script: 17 | - phpunit -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale ja, ja-JP 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'すべて選択', 9 | removeAll:'すべて削除', 10 | itemsCount:'個選択' 11 | }); -------------------------------------------------------------------------------- /application/vendor/zircote/swagger-php/tests/Fixtures/Parent.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 |

    5 | 6 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending for every file 7 | # Indent with 4 spaces 8 | [php] 9 | end_of_line = lf 10 | indent_style = space 11 | indent_size = 4 12 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/ringphp/src/Future/FutureArrayInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ' href=''> 5 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale el, GR 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Επιλογή όλων', 9 | removeAll:'Αφαίρεση όλων', 10 | itemsCount:'επιλεγμένα στοιχεία' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale es, es-ES 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Agregar todos', 9 | removeAll:'Remover todos', 10 | itemsCount:'Objetos seleccionados' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale fr, fr-FR, fr-CA 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Ajouter tout', 9 | removeAll:'Supprimer tout', 10 | itemsCount:'items sélectionnés' 11 | }); -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | ".PHP_EOL; 7 | } 8 | ?> 9 | 10 | 11 | load->view('_partials/ga') ?> 12 | 13 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-pt-br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale pt, pt-BR 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Adicionar todos', 9 | removeAll:'Remover todos', 10 | itemsCount:'Itens selecionados' 11 | }); -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/streams/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.4 5 | - 5.5 6 | - 5.6 7 | - hhvm 8 | 9 | before_script: 10 | - composer self-update 11 | - composer install --no-interaction --prefer-source --dev 12 | 13 | script: vendor/bin/phpunit 14 | 15 | matrix: 16 | allow_failures: 17 | - php: hhvm 18 | -------------------------------------------------------------------------------- /application/views/_layouts/default.php: -------------------------------------------------------------------------------- 1 | load->view('_partials/navbar'); ?> 2 | 3 |
    4 | 5 |
    6 | load->view($inner_view); ?> 7 |
    8 |
    9 | 10 | load->view('_partials/footer'); ?> -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale de, de-DE, de-AT, de-CH 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Alle hinzufügen', 9 | removeAll:'Alle entfernen', 10 | itemsCount:'Einträge ausgewählt' 11 | }); -------------------------------------------------------------------------------- /application/views/email/auth/activate.php: -------------------------------------------------------------------------------- 1 | load->view('email/_header'); ?> 2 | 3 |

    4 |

    5 | 6 | load->view('email/_footer'); ?> -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale it, it-IT 5 | */ 6 | 7 | $.extend($.ui.multiselect, { 8 | locale: { 9 | addAll:'Aggiungi tutti', 10 | removeAll:'Rimuovi tutti', 11 | itemsCount:'elementi selezionati' 12 | } 13 | }); -------------------------------------------------------------------------------- /application/third_party/ion_auth/views_sample/auth/email/forgot_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 |

    5 | 6 | -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/src/ToArrayInterface.php: -------------------------------------------------------------------------------- 1 | error_not_found(); 11 | } 12 | } -------------------------------------------------------------------------------- /application/vendor/guzzlehttp/guzzle/src/Event/HasEmitterInterface.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 4 | 5 | 6 | 7 |
    8 | -------------------------------------------------------------------------------- /assets/dist/frontend/app.min.css: -------------------------------------------------------------------------------- 1 | 2 | html{position:relative;min-height:100%}body{margin-bottom:60px}.footer{position:absolute;bottom:0;width:100%;height:60px;background-color:#f5f5f5}body>.container{padding:60px 15px 0}.container .text-muted{margin:20px 0}.footer>.container{padding-right:15px;padding-left:15px}code{font-size:80%} 3 | 4 | /*# sourceMappingURL=app.min.css.map */ 5 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','zh-cn',{uicolor:{title:'用户界面颜色选择器',preview:'即时预览',config:'粘贴此字符串到您的 config.js 文件',predefined:'预定义颜色集'}}); 7 | --------------------------------------------------------------------------------