├── .editorconfig
├── .gitignore
├── .htaccess
├── README.md
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── foreign_chars.php
│ ├── hooks.php
│ ├── index.html
│ ├── ion_auth.php
│ ├── memcached.php
│ ├── migration.php
│ ├── mimes.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── Auth.php
│ ├── _Welcome.php
│ └── index.html
├── core
│ ├── MY_Loader.php
│ ├── MY_Router.php
│ └── index.html
├── helpers
│ ├── MY_string_helper.php
│ └── index.html
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── english
│ │ ├── auth_lang.php
│ │ ├── index.html
│ │ └── ion_auth_lang.php
│ ├── index.html
│ └── indonesian
│ │ ├── auth_lang.php
│ │ └── ion_auth_lang.php
├── libraries
│ ├── Bcrypt.php
│ ├── Ion_auth.php
│ ├── Template.php
│ └── index.html
├── logs
│ └── index.html
├── models
│ ├── Ion_auth_model.php
│ └── index.html
├── modules
│ ├── Home
│ │ ├── controllers
│ │ │ ├── Home.php
│ │ │ └── index.html
│ │ ├── models
│ │ │ └── index.html
│ │ └── views
│ │ │ ├── errors
│ │ │ ├── cli
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ ├── html
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ │ ├── home.php
│ │ │ ├── index.html
│ │ │ └── welcome_message.php
│ ├── Login
│ │ ├── controllers
│ │ │ ├── Login.php
│ │ │ └── index.html
│ │ ├── models
│ │ │ └── index.html
│ │ └── views
│ │ │ ├── errors
│ │ │ ├── cli
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ ├── html
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── login.php
│ │ │ └── welcome_message.php
│ ├── Users
│ │ ├── controllers
│ │ │ ├── Users.php
│ │ │ └── index.html
│ │ ├── models
│ │ │ ├── User_model.php
│ │ │ └── index.html
│ │ └── views
│ │ │ ├── add_users.php
│ │ │ ├── change_password_user.php
│ │ │ ├── errors
│ │ │ ├── cli
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ ├── html
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── list_users.php
│ │ │ └── welcome_message.php
│ └── Welcome
│ │ ├── controllers
│ │ ├── Welcome.php
│ │ └── index.html
│ │ ├── models
│ │ └── index.html
│ │ └── views
│ │ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ ├── html
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ └── index.html
│ │ ├── index.html
│ │ └── welcome_message.php
├── third_party
│ ├── MX
│ │ ├── Base.php
│ │ ├── Ci.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Modules.php
│ │ └── Router.php
│ └── index.html
└── views
│ ├── errors
│ ├── cli
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── html
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ └── index.html
│ ├── index.html
│ └── index.php
├── assets
├── bootstrap
│ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap-theme.min.css.map
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ └── bootstrap.min.css.map
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
├── css
│ ├── AdminLTE.css
│ ├── AdminLTE.min.css
│ ├── alt
│ │ ├── AdminLTE-bootstrap-social.css
│ │ ├── AdminLTE-bootstrap-social.min.css
│ │ ├── AdminLTE-fullcalendar.css
│ │ ├── AdminLTE-fullcalendar.min.css
│ │ ├── AdminLTE-select2.css
│ │ ├── AdminLTE-select2.min.css
│ │ ├── AdminLTE-without-plugins.css
│ │ └── AdminLTE-without-plugins.min.css
│ └── skins
│ │ ├── _all-skins.css
│ │ ├── _all-skins.min.css
│ │ ├── skin-black-light.css
│ │ ├── skin-black-light.min.css
│ │ ├── skin-black.css
│ │ ├── skin-black.min.css
│ │ ├── skin-blue-light.css
│ │ ├── skin-blue-light.min.css
│ │ ├── skin-blue.css
│ │ ├── skin-blue.min.css
│ │ ├── skin-green-light.css
│ │ ├── skin-green-light.min.css
│ │ ├── skin-green.css
│ │ ├── skin-green.min.css
│ │ ├── skin-purple-light.css
│ │ ├── skin-purple-light.min.css
│ │ ├── skin-purple.css
│ │ ├── skin-purple.min.css
│ │ ├── skin-red-light.css
│ │ ├── skin-red-light.min.css
│ │ ├── skin-red.css
│ │ ├── skin-red.min.css
│ │ ├── skin-yellow-light.css
│ │ ├── skin-yellow-light.min.css
│ │ ├── skin-yellow.css
│ │ └── skin-yellow.min.css
├── img
│ ├── avatar.png
│ ├── avatar04.png
│ ├── avatar2.png
│ ├── avatar3.png
│ ├── avatar5.png
│ ├── boxed-bg.jpg
│ ├── boxed-bg.png
│ ├── credit
│ │ ├── american-express.png
│ │ ├── cirrus.png
│ │ ├── mastercard.png
│ │ ├── mestro.png
│ │ ├── paypal.png
│ │ ├── paypal2.png
│ │ └── visa.png
│ ├── default-50x50.gif
│ ├── icons.png
│ ├── photo1.png
│ ├── photo2.png
│ ├── photo3.jpg
│ ├── photo4.jpg
│ ├── user1-128x128.jpg
│ ├── user2-160x160.jpg
│ ├── user3-128x128.jpg
│ ├── user4-128x128.jpg
│ ├── user5-128x128.jpg
│ ├── user6-128x128.jpg
│ ├── user7-128x128.jpg
│ └── user8-128x128.jpg
├── js
│ ├── app.js
│ ├── app.min.js
│ ├── demo.js
│ └── pages
│ │ ├── dashboard.js
│ │ └── dashboard2.js
└── plugins
│ ├── bootstrap-slider
│ ├── bootstrap-slider.js
│ └── slider.css
│ ├── bootstrap-wysihtml5
│ ├── bootstrap3-wysihtml5.all.js
│ ├── bootstrap3-wysihtml5.all.min.js
│ ├── bootstrap3-wysihtml5.css
│ └── bootstrap3-wysihtml5.min.css
│ ├── chartjs
│ ├── Chart.js
│ └── Chart.min.js
│ ├── ckeditor
│ ├── CHANGES.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── adapters
│ │ └── jquery.js
│ ├── build-config.js
│ ├── ckeditor.js
│ ├── config.js
│ ├── contents.css
│ ├── lang
│ │ ├── af.js
│ │ ├── ar.js
│ │ ├── bg.js
│ │ ├── bn.js
│ │ ├── bs.js
│ │ ├── ca.js
│ │ ├── cs.js
│ │ ├── cy.js
│ │ ├── da.js
│ │ ├── de-ch.js
│ │ ├── de.js
│ │ ├── el.js
│ │ ├── en-au.js
│ │ ├── en-ca.js
│ │ ├── en-gb.js
│ │ ├── en.js
│ │ ├── eo.js
│ │ ├── es.js
│ │ ├── et.js
│ │ ├── eu.js
│ │ ├── fa.js
│ │ ├── fi.js
│ │ ├── fo.js
│ │ ├── fr-ca.js
│ │ ├── fr.js
│ │ ├── gl.js
│ │ ├── gu.js
│ │ ├── he.js
│ │ ├── hi.js
│ │ ├── hr.js
│ │ ├── hu.js
│ │ ├── id.js
│ │ ├── is.js
│ │ ├── it.js
│ │ ├── ja.js
│ │ ├── ka.js
│ │ ├── km.js
│ │ ├── ko.js
│ │ ├── ku.js
│ │ ├── lt.js
│ │ ├── lv.js
│ │ ├── mk.js
│ │ ├── mn.js
│ │ ├── ms.js
│ │ ├── nb.js
│ │ ├── nl.js
│ │ ├── no.js
│ │ ├── pl.js
│ │ ├── pt-br.js
│ │ ├── pt.js
│ │ ├── ro.js
│ │ ├── ru.js
│ │ ├── si.js
│ │ ├── sk.js
│ │ ├── sl.js
│ │ ├── sq.js
│ │ ├── sr-latn.js
│ │ ├── sr.js
│ │ ├── sv.js
│ │ ├── th.js
│ │ ├── tr.js
│ │ ├── tt.js
│ │ ├── ug.js
│ │ ├── uk.js
│ │ ├── vi.js
│ │ ├── zh-cn.js
│ │ └── zh.js
│ ├── plugins
│ │ ├── a11yhelp
│ │ │ └── dialogs
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ ├── about
│ │ │ └── dialogs
│ │ │ │ ├── about.js
│ │ │ │ ├── hidpi
│ │ │ │ └── logo_ckeditor.png
│ │ │ │ └── logo_ckeditor.png
│ │ ├── clipboard
│ │ │ └── dialogs
│ │ │ │ └── paste.js
│ │ ├── dialog
│ │ │ └── dialogDefinition.js
│ │ ├── icons.png
│ │ ├── icons_hidpi.png
│ │ ├── image
│ │ │ ├── dialogs
│ │ │ │ └── image.js
│ │ │ └── images
│ │ │ │ └── noimage.png
│ │ ├── link
│ │ │ ├── dialogs
│ │ │ │ ├── anchor.js
│ │ │ │ └── link.js
│ │ │ └── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ └── anchor.png
│ │ ├── magicline
│ │ │ └── images
│ │ │ │ ├── hidpi
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ ├── pastefromword
│ │ │ └── filter
│ │ │ │ └── default.js
│ │ ├── scayt
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs
│ │ │ │ ├── options.js
│ │ │ │ └── toolbar.css
│ │ ├── specialchar
│ │ │ └── dialogs
│ │ │ │ ├── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ │ └── specialchar.js
│ │ ├── table
│ │ │ └── dialogs
│ │ │ │ └── table.js
│ │ ├── tabletools
│ │ │ └── dialogs
│ │ │ │ └── tableCell.js
│ │ └── wsc
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs
│ │ │ ├── ciframe.html
│ │ │ ├── tmpFrameset.html
│ │ │ ├── wsc.css
│ │ │ ├── wsc.js
│ │ │ └── wsc_ie.js
│ ├── samples
│ │ ├── css
│ │ │ └── samples.css
│ │ ├── img
│ │ │ ├── github-top.png
│ │ │ ├── header-bg.png
│ │ │ ├── header-separator.png
│ │ │ ├── logo.png
│ │ │ └── navigation-tip.png
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── sample.js
│ │ │ └── sf.js
│ │ ├── old
│ │ │ ├── ajax.html
│ │ │ ├── api.html
│ │ │ ├── appendto.html
│ │ │ ├── assets
│ │ │ │ ├── inlineall
│ │ │ │ │ └── logo.png
│ │ │ │ ├── outputxhtml
│ │ │ │ │ └── outputxhtml.css
│ │ │ │ ├── posteddata.php
│ │ │ │ ├── sample.jpg
│ │ │ │ └── uilanguages
│ │ │ │ │ └── languages.js
│ │ │ ├── datafiltering.html
│ │ │ ├── dialog
│ │ │ │ ├── assets
│ │ │ │ │ └── my_dialog.js
│ │ │ │ └── dialog.html
│ │ │ ├── divreplace.html
│ │ │ ├── enterkey
│ │ │ │ └── enterkey.html
│ │ │ ├── htmlwriter
│ │ │ │ ├── assets
│ │ │ │ │ └── outputforflash
│ │ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ │ ├── outputforflash.swf
│ │ │ │ │ │ └── swfobject.js
│ │ │ │ ├── outputforflash.html
│ │ │ │ └── outputhtml.html
│ │ │ ├── index.html
│ │ │ ├── inlineall.html
│ │ │ ├── inlinebycode.html
│ │ │ ├── inlinetextarea.html
│ │ │ ├── jquery.html
│ │ │ ├── magicline
│ │ │ │ └── magicline.html
│ │ │ ├── readonly.html
│ │ │ ├── replacebyclass.html
│ │ │ ├── replacebycode.html
│ │ │ ├── sample.css
│ │ │ ├── sample.js
│ │ │ ├── sample_posteddata.php
│ │ │ ├── tabindex.html
│ │ │ ├── toolbar
│ │ │ │ └── toolbar.html
│ │ │ ├── uicolor.html
│ │ │ ├── uilanguages.html
│ │ │ ├── wysiwygarea
│ │ │ │ └── fullpage.html
│ │ │ └── xhtmlstyle.html
│ │ └── toolbarconfigurator
│ │ │ ├── css
│ │ │ └── fontello.css
│ │ │ ├── font
│ │ │ ├── LICENSE.txt
│ │ │ ├── config.json
│ │ │ ├── fontello.eot
│ │ │ ├── fontello.svg
│ │ │ ├── fontello.ttf
│ │ │ └── fontello.woff
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ ├── abstracttoolbarmodifier.js
│ │ │ ├── fulltoolbareditor.js
│ │ │ ├── toolbarmodifier.js
│ │ │ └── toolbartextmodifier.js
│ │ │ └── lib
│ │ │ └── codemirror
│ │ │ ├── LICENSE
│ │ │ ├── codemirror.css
│ │ │ ├── codemirror.js
│ │ │ ├── javascript.js
│ │ │ ├── neo.css
│ │ │ ├── show-hint.css
│ │ │ └── show-hint.js
│ ├── skins
│ │ └── moono
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── images
│ │ │ ├── arrow.png
│ │ │ ├── close.png
│ │ │ ├── hidpi
│ │ │ │ ├── close.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ └── refresh.png
│ │ │ ├── lock-open.png
│ │ │ ├── lock.png
│ │ │ ├── refresh.png
│ │ │ └── spinner.gif
│ │ │ └── readme.md
│ └── styles.js
│ ├── colorpicker
│ ├── bootstrap-colorpicker.css
│ ├── bootstrap-colorpicker.js
│ ├── bootstrap-colorpicker.min.css
│ ├── bootstrap-colorpicker.min.js
│ └── img
│ │ ├── alpha-horizontal.png
│ │ ├── alpha.png
│ │ ├── hue-horizontal.png
│ │ ├── hue.png
│ │ └── saturation.png
│ ├── datatables
│ ├── dataTables.bootstrap.css
│ ├── dataTables.bootstrap.js
│ ├── dataTables.bootstrap.min.js
│ ├── extensions
│ │ ├── AutoFill
│ │ │ ├── Readme.txt
│ │ │ ├── css
│ │ │ │ ├── dataTables.autoFill.css
│ │ │ │ └── dataTables.autoFill.min.css
│ │ │ ├── examples
│ │ │ │ ├── columns.html
│ │ │ │ ├── complete-callback.html
│ │ │ │ ├── fill-both.html
│ │ │ │ ├── fill-horizontal.html
│ │ │ │ ├── index.html
│ │ │ │ ├── scrolling.html
│ │ │ │ ├── simple.html
│ │ │ │ └── step-callback.html
│ │ │ ├── images
│ │ │ │ └── filler.png
│ │ │ └── js
│ │ │ │ ├── dataTables.autoFill.js
│ │ │ │ └── dataTables.autoFill.min.js
│ │ ├── ColReorder
│ │ │ ├── License.txt
│ │ │ ├── Readme.md
│ │ │ ├── css
│ │ │ │ ├── dataTables.colReorder.css
│ │ │ │ └── dataTables.colReorder.min.css
│ │ │ ├── examples
│ │ │ │ ├── alt_insert.html
│ │ │ │ ├── col_filter.html
│ │ │ │ ├── colvis.html
│ │ │ │ ├── fixedcolumns.html
│ │ │ │ ├── fixedheader.html
│ │ │ │ ├── index.html
│ │ │ │ ├── jqueryui.html
│ │ │ │ ├── new_init.html
│ │ │ │ ├── predefined.html
│ │ │ │ ├── realtime.html
│ │ │ │ ├── reset.html
│ │ │ │ ├── scrolling.html
│ │ │ │ ├── server_side.html
│ │ │ │ ├── simple.html
│ │ │ │ └── state_save.html
│ │ │ ├── images
│ │ │ │ └── insert.png
│ │ │ └── js
│ │ │ │ ├── dataTables.colReorder.js
│ │ │ │ └── dataTables.colReorder.min.js
│ │ ├── ColVis
│ │ │ ├── License.txt
│ │ │ ├── Readme.md
│ │ │ ├── css
│ │ │ │ ├── dataTables.colVis.css
│ │ │ │ ├── dataTables.colVis.min.css
│ │ │ │ └── dataTables.colvis.jqueryui.css
│ │ │ ├── examples
│ │ │ │ ├── button_order.html
│ │ │ │ ├── exclude_columns.html
│ │ │ │ ├── group_columns.html
│ │ │ │ ├── index.html
│ │ │ │ ├── jqueryui.html
│ │ │ │ ├── mouseover.html
│ │ │ │ ├── new_init.html
│ │ │ │ ├── restore.html
│ │ │ │ ├── simple.html
│ │ │ │ ├── text.html
│ │ │ │ ├── title_callback.html
│ │ │ │ ├── two_tables.html
│ │ │ │ └── two_tables_identical.html
│ │ │ └── js
│ │ │ │ ├── dataTables.colVis.js
│ │ │ │ └── dataTables.colVis.min.js
│ │ ├── FixedColumns
│ │ │ ├── License.txt
│ │ │ ├── Readme.md
│ │ │ ├── css
│ │ │ │ ├── dataTables.fixedColumns.css
│ │ │ │ └── dataTables.fixedColumns.min.css
│ │ │ ├── examples
│ │ │ │ ├── bootstrap.html
│ │ │ │ ├── col_filter.html
│ │ │ │ ├── colvis.html
│ │ │ │ ├── css_size.html
│ │ │ │ ├── index.html
│ │ │ │ ├── index_column.html
│ │ │ │ ├── left_right_columns.html
│ │ │ │ ├── right_column.html
│ │ │ │ ├── rowspan.html
│ │ │ │ ├── server-side-processing.html
│ │ │ │ ├── simple.html
│ │ │ │ ├── size_fixed.html
│ │ │ │ ├── size_fluid.html
│ │ │ │ └── two_columns.html
│ │ │ └── js
│ │ │ │ ├── dataTables.fixedColumns.js
│ │ │ │ └── dataTables.fixedColumns.min.js
│ │ ├── FixedHeader
│ │ │ ├── Readme.txt
│ │ │ ├── css
│ │ │ │ ├── dataTables.fixedHeader.css
│ │ │ │ └── dataTables.fixedHeader.min.css
│ │ │ ├── examples
│ │ │ │ ├── header_footer.html
│ │ │ │ ├── index.html
│ │ │ │ ├── simple.html
│ │ │ │ ├── top_left_right.html
│ │ │ │ ├── two_tables.html
│ │ │ │ └── zIndexes.html
│ │ │ └── js
│ │ │ │ ├── dataTables.fixedHeader.js
│ │ │ │ └── dataTables.fixedHeader.min.js
│ │ ├── KeyTable
│ │ │ ├── Readme.txt
│ │ │ ├── css
│ │ │ │ ├── dataTables.keyTable.css
│ │ │ │ └── dataTables.keyTable.min.css
│ │ │ ├── examples
│ │ │ │ ├── events.html
│ │ │ │ ├── html.html
│ │ │ │ ├── index.html
│ │ │ │ ├── scrolling.html
│ │ │ │ └── simple.html
│ │ │ └── js
│ │ │ │ ├── dataTables.keyTable.js
│ │ │ │ └── dataTables.keyTable.min.js
│ │ ├── Responsive
│ │ │ ├── License.txt
│ │ │ ├── Readme.md
│ │ │ ├── css
│ │ │ │ ├── dataTables.responsive.css
│ │ │ │ └── dataTables.responsive.scss
│ │ │ ├── examples
│ │ │ │ ├── child-rows
│ │ │ │ │ ├── column-control.html
│ │ │ │ │ ├── custom-renderer.html
│ │ │ │ │ ├── disable-child-rows.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── right-column.html
│ │ │ │ │ └── whole-row-control.html
│ │ │ │ ├── display-control
│ │ │ │ │ ├── auto.html
│ │ │ │ │ ├── classes.html
│ │ │ │ │ ├── complexHeader.html
│ │ │ │ │ ├── fixedHeader.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── init-classes.html
│ │ │ │ ├── index.html
│ │ │ │ ├── initialisation
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ ├── className.html
│ │ │ │ │ ├── default.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── new.html
│ │ │ │ │ └── option.html
│ │ │ │ └── styling
│ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ ├── compact.html
│ │ │ │ │ ├── foundation.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── scrolling.html
│ │ │ └── js
│ │ │ │ ├── dataTables.responsive.js
│ │ │ │ └── dataTables.responsive.min.js
│ │ ├── Scroller
│ │ │ ├── Readme.txt
│ │ │ ├── css
│ │ │ │ ├── dataTables.scroller.css
│ │ │ │ └── dataTables.scroller.min.css
│ │ │ ├── examples
│ │ │ │ ├── api_scrolling.html
│ │ │ │ ├── data
│ │ │ │ │ ├── 2500.txt
│ │ │ │ │ └── ssp.php
│ │ │ │ ├── index.html
│ │ │ │ ├── large_js_source.html
│ │ │ │ ├── server-side_processing.html
│ │ │ │ ├── simple.html
│ │ │ │ └── state_saving.html
│ │ │ ├── images
│ │ │ │ └── loading-background.png
│ │ │ └── js
│ │ │ │ ├── dataTables.scroller.js
│ │ │ │ └── dataTables.scroller.min.js
│ │ └── TableTools
│ │ │ ├── Readme.md
│ │ │ ├── css
│ │ │ ├── dataTables.tableTools.css
│ │ │ └── dataTables.tableTools.min.css
│ │ │ ├── examples
│ │ │ ├── ajax.html
│ │ │ ├── alter_buttons.html
│ │ │ ├── bootstrap.html
│ │ │ ├── button_text.html
│ │ │ ├── collection.html
│ │ │ ├── defaults.html
│ │ │ ├── index.html
│ │ │ ├── jqueryui.html
│ │ │ ├── multi_instance.html
│ │ │ ├── multiple_tables.html
│ │ │ ├── new_init.html
│ │ │ ├── pdf_message.html
│ │ │ ├── plug-in.html
│ │ │ ├── select_column.html
│ │ │ ├── select_multi.html
│ │ │ ├── select_os.html
│ │ │ ├── select_single.html
│ │ │ ├── simple.html
│ │ │ └── swf_path.html
│ │ │ ├── images
│ │ │ ├── collection.png
│ │ │ ├── collection_hover.png
│ │ │ ├── copy.png
│ │ │ ├── copy_hover.png
│ │ │ ├── csv.png
│ │ │ ├── csv_hover.png
│ │ │ ├── pdf.png
│ │ │ ├── pdf_hover.png
│ │ │ ├── print.png
│ │ │ ├── print_hover.png
│ │ │ ├── psd
│ │ │ │ ├── collection.psd
│ │ │ │ ├── copy document.psd
│ │ │ │ ├── file_types.psd
│ │ │ │ └── printer.psd
│ │ │ ├── xls.png
│ │ │ └── xls_hover.png
│ │ │ ├── js
│ │ │ ├── dataTables.tableTools.js
│ │ │ └── dataTables.tableTools.min.js
│ │ │ └── swf
│ │ │ ├── copy_csv_xls.swf
│ │ │ └── copy_csv_xls_pdf.swf
│ ├── images
│ │ ├── sort_asc.png
│ │ ├── sort_asc_disabled.png
│ │ ├── sort_both.png
│ │ ├── sort_desc.png
│ │ └── sort_desc_disabled.png
│ ├── jquery.dataTables.css
│ ├── jquery.dataTables.js
│ ├── jquery.dataTables.min.css
│ ├── jquery.dataTables.min.js
│ └── jquery.dataTables_themeroller.css
│ ├── datepicker
│ ├── bootstrap-datepicker.js
│ ├── datepicker3.css
│ └── locales
│ │ ├── bootstrap-datepicker.ar.js
│ │ ├── bootstrap-datepicker.az.js
│ │ ├── bootstrap-datepicker.bg.js
│ │ ├── bootstrap-datepicker.ca.js
│ │ ├── bootstrap-datepicker.cs.js
│ │ ├── bootstrap-datepicker.cy.js
│ │ ├── bootstrap-datepicker.da.js
│ │ ├── bootstrap-datepicker.de.js
│ │ ├── bootstrap-datepicker.el.js
│ │ ├── bootstrap-datepicker.es.js
│ │ ├── bootstrap-datepicker.et.js
│ │ ├── bootstrap-datepicker.fa.js
│ │ ├── bootstrap-datepicker.fi.js
│ │ ├── bootstrap-datepicker.fr.js
│ │ ├── bootstrap-datepicker.gl.js
│ │ ├── bootstrap-datepicker.he.js
│ │ ├── bootstrap-datepicker.hr.js
│ │ ├── bootstrap-datepicker.hu.js
│ │ ├── bootstrap-datepicker.id.js
│ │ ├── bootstrap-datepicker.is.js
│ │ ├── bootstrap-datepicker.it.js
│ │ ├── bootstrap-datepicker.ja.js
│ │ ├── bootstrap-datepicker.ka.js
│ │ ├── bootstrap-datepicker.kk.js
│ │ ├── bootstrap-datepicker.kr.js
│ │ ├── bootstrap-datepicker.lt.js
│ │ ├── bootstrap-datepicker.lv.js
│ │ ├── bootstrap-datepicker.mk.js
│ │ ├── bootstrap-datepicker.ms.js
│ │ ├── bootstrap-datepicker.nb.js
│ │ ├── bootstrap-datepicker.nl-BE.js
│ │ ├── bootstrap-datepicker.nl.js
│ │ ├── bootstrap-datepicker.no.js
│ │ ├── bootstrap-datepicker.pl.js
│ │ ├── bootstrap-datepicker.pt-BR.js
│ │ ├── bootstrap-datepicker.pt.js
│ │ ├── bootstrap-datepicker.ro.js
│ │ ├── bootstrap-datepicker.rs-latin.js
│ │ ├── bootstrap-datepicker.rs.js
│ │ ├── bootstrap-datepicker.ru.js
│ │ ├── bootstrap-datepicker.sk.js
│ │ ├── bootstrap-datepicker.sl.js
│ │ ├── bootstrap-datepicker.sq.js
│ │ ├── bootstrap-datepicker.sv.js
│ │ ├── bootstrap-datepicker.sw.js
│ │ ├── bootstrap-datepicker.th.js
│ │ ├── bootstrap-datepicker.tr.js
│ │ ├── bootstrap-datepicker.ua.js
│ │ ├── bootstrap-datepicker.vi.js
│ │ ├── bootstrap-datepicker.zh-CN.js
│ │ └── bootstrap-datepicker.zh-TW.js
│ ├── daterangepicker
│ ├── daterangepicker.css
│ ├── daterangepicker.js
│ ├── moment.js
│ └── moment.min.js
│ ├── fastclick
│ ├── fastclick.js
│ └── fastclick.min.js
│ ├── flot
│ ├── excanvas.js
│ ├── excanvas.min.js
│ ├── jquery.colorhelpers.js
│ ├── jquery.colorhelpers.min.js
│ ├── jquery.flot.canvas.js
│ ├── jquery.flot.canvas.min.js
│ ├── jquery.flot.categories.js
│ ├── jquery.flot.categories.min.js
│ ├── jquery.flot.crosshair.js
│ ├── jquery.flot.crosshair.min.js
│ ├── jquery.flot.errorbars.js
│ ├── jquery.flot.errorbars.min.js
│ ├── jquery.flot.fillbetween.js
│ ├── jquery.flot.fillbetween.min.js
│ ├── jquery.flot.image.js
│ ├── jquery.flot.image.min.js
│ ├── jquery.flot.js
│ ├── jquery.flot.min.js
│ ├── jquery.flot.navigate.js
│ ├── jquery.flot.navigate.min.js
│ ├── jquery.flot.pie.js
│ ├── jquery.flot.pie.min.js
│ ├── jquery.flot.resize.js
│ ├── jquery.flot.resize.min.js
│ ├── jquery.flot.selection.js
│ ├── jquery.flot.selection.min.js
│ ├── jquery.flot.stack.js
│ ├── jquery.flot.stack.min.js
│ ├── jquery.flot.symbol.js
│ ├── jquery.flot.symbol.min.js
│ ├── jquery.flot.threshold.js
│ ├── jquery.flot.threshold.min.js
│ ├── jquery.flot.time.js
│ └── jquery.flot.time.min.js
│ ├── fullcalendar
│ ├── fullcalendar.css
│ ├── fullcalendar.js
│ ├── fullcalendar.min.css
│ ├── fullcalendar.min.js
│ └── fullcalendar.print.css
│ ├── iCheck
│ ├── all.css
│ ├── flat
│ │ ├── _all.css
│ │ ├── aero.css
│ │ ├── aero.png
│ │ ├── aero@2x.png
│ │ ├── blue.css
│ │ ├── blue.png
│ │ ├── blue@2x.png
│ │ ├── flat.css
│ │ ├── flat.png
│ │ ├── flat@2x.png
│ │ ├── green.css
│ │ ├── green.png
│ │ ├── green@2x.png
│ │ ├── grey.css
│ │ ├── grey.png
│ │ ├── grey@2x.png
│ │ ├── orange.css
│ │ ├── orange.png
│ │ ├── orange@2x.png
│ │ ├── pink.css
│ │ ├── pink.png
│ │ ├── pink@2x.png
│ │ ├── purple.css
│ │ ├── purple.png
│ │ ├── purple@2x.png
│ │ ├── red.css
│ │ ├── red.png
│ │ ├── red@2x.png
│ │ ├── yellow.css
│ │ ├── yellow.png
│ │ └── yellow@2x.png
│ ├── futurico
│ │ ├── futurico.css
│ │ ├── futurico.png
│ │ └── futurico@2x.png
│ ├── icheck.js
│ ├── icheck.min.js
│ ├── line
│ │ ├── _all.css
│ │ ├── aero.css
│ │ ├── blue.css
│ │ ├── green.css
│ │ ├── grey.css
│ │ ├── line.css
│ │ ├── line.png
│ │ ├── line@2x.png
│ │ ├── orange.css
│ │ ├── pink.css
│ │ ├── purple.css
│ │ ├── red.css
│ │ └── yellow.css
│ ├── minimal
│ │ ├── _all.css
│ │ ├── aero.css
│ │ ├── aero.png
│ │ ├── aero@2x.png
│ │ ├── blue.css
│ │ ├── blue.png
│ │ ├── blue@2x.png
│ │ ├── green.css
│ │ ├── green.png
│ │ ├── green@2x.png
│ │ ├── grey.css
│ │ ├── grey.png
│ │ ├── grey@2x.png
│ │ ├── minimal.css
│ │ ├── minimal.png
│ │ ├── minimal@2x.png
│ │ ├── orange.css
│ │ ├── orange.png
│ │ ├── orange@2x.png
│ │ ├── pink.css
│ │ ├── pink.png
│ │ ├── pink@2x.png
│ │ ├── purple.css
│ │ ├── purple.png
│ │ ├── purple@2x.png
│ │ ├── red.css
│ │ ├── red.png
│ │ ├── red@2x.png
│ │ ├── yellow.css
│ │ ├── yellow.png
│ │ └── yellow@2x.png
│ ├── polaris
│ │ ├── polaris.css
│ │ ├── polaris.png
│ │ └── polaris@2x.png
│ └── square
│ │ ├── _all.css
│ │ ├── aero.css
│ │ ├── aero.png
│ │ ├── aero@2x.png
│ │ ├── blue.css
│ │ ├── blue.png
│ │ ├── blue@2x.png
│ │ ├── green.css
│ │ ├── green.png
│ │ ├── green@2x.png
│ │ ├── grey.css
│ │ ├── grey.png
│ │ ├── grey@2x.png
│ │ ├── orange.css
│ │ ├── orange.png
│ │ ├── orange@2x.png
│ │ ├── pink.css
│ │ ├── pink.png
│ │ ├── pink@2x.png
│ │ ├── purple.css
│ │ ├── purple.png
│ │ ├── purple@2x.png
│ │ ├── red.css
│ │ ├── red.png
│ │ ├── red@2x.png
│ │ ├── square.css
│ │ ├── square.png
│ │ ├── square@2x.png
│ │ ├── yellow.css
│ │ ├── yellow.png
│ │ └── yellow@2x.png
│ ├── input-mask
│ ├── jquery.inputmask.date.extensions.js
│ ├── jquery.inputmask.extensions.js
│ ├── jquery.inputmask.js
│ ├── jquery.inputmask.numeric.extensions.js
│ ├── jquery.inputmask.phone.extensions.js
│ ├── jquery.inputmask.regex.extensions.js
│ └── phone-codes
│ │ ├── phone-be.json
│ │ ├── phone-codes.json
│ │ └── readme.txt
│ ├── ionslider
│ ├── img
│ │ ├── sprite-skin-flat.png
│ │ └── sprite-skin-nice.png
│ ├── ion.rangeSlider.css
│ ├── ion.rangeSlider.min.js
│ ├── ion.rangeSlider.skinFlat.css
│ └── ion.rangeSlider.skinNice.css
│ ├── jQuery
│ └── jquery-2.2.3.min.js
│ ├── jQueryUI
│ ├── jquery-ui.js
│ └── jquery-ui.min.js
│ ├── jvectormap
│ ├── jquery-jvectormap-1.2.2.css
│ ├── jquery-jvectormap-1.2.2.min.js
│ ├── jquery-jvectormap-usa-en.js
│ └── jquery-jvectormap-world-mill-en.js
│ ├── knob
│ └── jquery.knob.js
│ ├── morris
│ ├── morris.css
│ ├── morris.js
│ └── morris.min.js
│ ├── pace
│ ├── pace.css
│ ├── pace.js
│ ├── pace.min.css
│ └── pace.min.js
│ ├── select2
│ ├── i18n
│ │ ├── ar.js
│ │ ├── az.js
│ │ ├── bg.js
│ │ ├── ca.js
│ │ ├── cs.js
│ │ ├── da.js
│ │ ├── de.js
│ │ ├── el.js
│ │ ├── en.js
│ │ ├── es.js
│ │ ├── et.js
│ │ ├── eu.js
│ │ ├── fa.js
│ │ ├── fi.js
│ │ ├── fr.js
│ │ ├── gl.js
│ │ ├── he.js
│ │ ├── hi.js
│ │ ├── hr.js
│ │ ├── hu.js
│ │ ├── id.js
│ │ ├── is.js
│ │ ├── it.js
│ │ ├── ja.js
│ │ ├── km.js
│ │ ├── ko.js
│ │ ├── lt.js
│ │ ├── lv.js
│ │ ├── mk.js
│ │ ├── ms.js
│ │ ├── nb.js
│ │ ├── nl.js
│ │ ├── pl.js
│ │ ├── pt-BR.js
│ │ ├── pt.js
│ │ ├── ro.js
│ │ ├── ru.js
│ │ ├── sk.js
│ │ ├── sr-Cyrl.js
│ │ ├── sr.js
│ │ ├── sv.js
│ │ ├── th.js
│ │ ├── tr.js
│ │ ├── uk.js
│ │ ├── vi.js
│ │ ├── zh-CN.js
│ │ └── zh-TW.js
│ ├── select2.css
│ ├── select2.full.js
│ ├── select2.full.min.js
│ ├── select2.js
│ ├── select2.min.css
│ └── select2.min.js
│ ├── slimScroll
│ ├── jquery.slimscroll.js
│ └── jquery.slimscroll.min.js
│ ├── sparkline
│ ├── jquery.sparkline.js
│ └── jquery.sparkline.min.js
│ └── timepicker
│ ├── bootstrap-timepicker.css
│ ├── bootstrap-timepicker.js
│ ├── bootstrap-timepicker.min.css
│ └── bootstrap-timepicker.min.js
├── composer.json
├── git push.txt
├── index.php
├── sql
├── ion_auth.mssql.sql
├── ion_auth.postgre.sql
└── ion_auth.sql
└── system
├── .htaccess
├── core
├── Benchmark.php
├── CodeIgniter.php
├── Common.php
├── Config.php
├── Controller.php
├── Exceptions.php
├── Hooks.php
├── Input.php
├── Lang.php
├── Loader.php
├── Log.php
├── Model.php
├── Output.php
├── Router.php
├── Security.php
├── URI.php
├── Utf8.php
├── compat
│ ├── hash.php
│ ├── index.html
│ ├── mbstring.php
│ ├── password.php
│ └── standard.php
└── index.html
├── database
├── DB.php
├── DB_cache.php
├── DB_driver.php
├── DB_forge.php
├── DB_query_builder.php
├── DB_result.php
├── DB_utility.php
├── drivers
│ ├── cubrid
│ │ ├── cubrid_driver.php
│ │ ├── cubrid_forge.php
│ │ ├── cubrid_result.php
│ │ ├── cubrid_utility.php
│ │ └── index.html
│ ├── ibase
│ │ ├── ibase_driver.php
│ │ ├── ibase_forge.php
│ │ ├── ibase_result.php
│ │ ├── ibase_utility.php
│ │ └── index.html
│ ├── index.html
│ ├── mssql
│ │ ├── index.html
│ │ ├── mssql_driver.php
│ │ ├── mssql_forge.php
│ │ ├── mssql_result.php
│ │ └── mssql_utility.php
│ ├── mysql
│ │ ├── index.html
│ │ ├── mysql_driver.php
│ │ ├── mysql_forge.php
│ │ ├── mysql_result.php
│ │ └── mysql_utility.php
│ ├── mysqli
│ │ ├── index.html
│ │ ├── mysqli_driver.php
│ │ ├── mysqli_forge.php
│ │ ├── mysqli_result.php
│ │ └── mysqli_utility.php
│ ├── oci8
│ │ ├── index.html
│ │ ├── oci8_driver.php
│ │ ├── oci8_forge.php
│ │ ├── oci8_result.php
│ │ └── oci8_utility.php
│ ├── odbc
│ │ ├── index.html
│ │ ├── odbc_driver.php
│ │ ├── odbc_forge.php
│ │ ├── odbc_result.php
│ │ └── odbc_utility.php
│ ├── pdo
│ │ ├── index.html
│ │ ├── pdo_driver.php
│ │ ├── pdo_forge.php
│ │ ├── pdo_result.php
│ │ ├── pdo_utility.php
│ │ └── subdrivers
│ │ │ ├── index.html
│ │ │ ├── pdo_4d_driver.php
│ │ │ ├── pdo_4d_forge.php
│ │ │ ├── pdo_cubrid_driver.php
│ │ │ ├── pdo_cubrid_forge.php
│ │ │ ├── pdo_dblib_driver.php
│ │ │ ├── pdo_dblib_forge.php
│ │ │ ├── pdo_firebird_driver.php
│ │ │ ├── pdo_firebird_forge.php
│ │ │ ├── pdo_ibm_driver.php
│ │ │ ├── pdo_ibm_forge.php
│ │ │ ├── pdo_informix_driver.php
│ │ │ ├── pdo_informix_forge.php
│ │ │ ├── pdo_mysql_driver.php
│ │ │ ├── pdo_mysql_forge.php
│ │ │ ├── pdo_oci_driver.php
│ │ │ ├── pdo_oci_forge.php
│ │ │ ├── pdo_odbc_driver.php
│ │ │ ├── pdo_odbc_forge.php
│ │ │ ├── pdo_pgsql_driver.php
│ │ │ ├── pdo_pgsql_forge.php
│ │ │ ├── pdo_sqlite_driver.php
│ │ │ ├── pdo_sqlite_forge.php
│ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ └── pdo_sqlsrv_forge.php
│ ├── postgre
│ │ ├── index.html
│ │ ├── postgre_driver.php
│ │ ├── postgre_forge.php
│ │ ├── postgre_result.php
│ │ └── postgre_utility.php
│ ├── sqlite
│ │ ├── index.html
│ │ ├── sqlite_driver.php
│ │ ├── sqlite_forge.php
│ │ ├── sqlite_result.php
│ │ └── sqlite_utility.php
│ ├── sqlite3
│ │ ├── index.html
│ │ ├── sqlite3_driver.php
│ │ ├── sqlite3_forge.php
│ │ ├── sqlite3_result.php
│ │ └── sqlite3_utility.php
│ └── sqlsrv
│ │ ├── index.html
│ │ ├── sqlsrv_driver.php
│ │ ├── sqlsrv_forge.php
│ │ ├── sqlsrv_result.php
│ │ └── sqlsrv_utility.php
└── index.html
├── fonts
├── index.html
└── texb.ttf
├── helpers
├── array_helper.php
├── captcha_helper.php
├── cookie_helper.php
├── date_helper.php
├── directory_helper.php
├── download_helper.php
├── email_helper.php
├── file_helper.php
├── form_helper.php
├── html_helper.php
├── index.html
├── inflector_helper.php
├── language_helper.php
├── number_helper.php
├── path_helper.php
├── security_helper.php
├── smiley_helper.php
├── string_helper.php
├── text_helper.php
├── typography_helper.php
├── url_helper.php
└── xml_helper.php
├── index.html
├── language
├── english
│ ├── calendar_lang.php
│ ├── date_lang.php
│ ├── db_lang.php
│ ├── email_lang.php
│ ├── form_validation_lang.php
│ ├── ftp_lang.php
│ ├── imglib_lang.php
│ ├── index.html
│ ├── migration_lang.php
│ ├── number_lang.php
│ ├── pagination_lang.php
│ ├── profiler_lang.php
│ ├── unit_test_lang.php
│ └── upload_lang.php
└── index.html
└── libraries
├── Cache
├── Cache.php
├── drivers
│ ├── Cache_apc.php
│ ├── Cache_dummy.php
│ ├── Cache_file.php
│ ├── Cache_memcached.php
│ ├── Cache_redis.php
│ ├── Cache_wincache.php
│ └── index.html
└── index.html
├── Calendar.php
├── Cart.php
├── Driver.php
├── Email.php
├── Encrypt.php
├── Encryption.php
├── Form_validation.php
├── Ftp.php
├── Image_lib.php
├── Javascript.php
├── Javascript
├── Jquery.php
└── index.html
├── Migration.php
├── Pagination.php
├── Parser.php
├── Profiler.php
├── Session
├── Session.php
├── SessionHandlerInterface.php
├── Session_driver.php
├── drivers
│ ├── Session_database_driver.php
│ ├── Session_files_driver.php
│ ├── Session_memcached_driver.php
│ ├── Session_redis_driver.php
│ └── index.html
└── index.html
├── Table.php
├── Trackback.php
├── Typography.php
├── Unit_test.php
├── Upload.php
├── User_agent.php
├── Xmlrpc.php
├── Xmlrpcs.php
├── Zip.php
└── index.html
/.editorconfig:
--------------------------------------------------------------------------------
1 | # top-most EditorConfig file
2 | root = true
3 |
4 | # Unix-style newlines with a newline ending every file
5 | [*]
6 | end_of_line = lf
7 | insert_final_newline = true
8 |
9 | # Matches multiple files with brace expansion notation
10 | # Set default charset
11 | [*]
12 | charset = utf-8
13 |
14 | # Tab indentation (no size specified)
15 | indent_style = tab
16 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
3 | application/cache/*
4 | !application/cache/index.html
5 | !application/cache/.htaccess
6 |
7 | application/logs/*
8 | !application/logs/index.html
9 | !application/logs/.htaccess
10 |
11 | composer.lock
12 |
13 | user_guide_src/build/*
14 | user_guide_src/cilexer/build/*
15 | user_guide_src/cilexer/dist/*
16 | user_guide_src/cilexer/pycilexer.egg-info/*
17 | /vendor/
18 |
19 | # IDE Files
20 | #-------------------------
21 | /nbproject/
22 | .idea/*
23 |
24 | ## Sublime Text cache files
25 | *.tmlanguage.cache
26 | *.tmPreferences.cache
27 | *.stTheme.cache
28 | *.sublime-workspace
29 | *.sublime-project
30 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # CodeIgniter-Bootstrap
2 |
3 | This is admin template ready for CodeIgniter development. The specification is :
4 | 1. CodeIgniter framework version 3.1.4, http://codeigniter.com
5 | 2. Integrated with HMVC, https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc
6 | 3. Integrated with ion_auth, http://benedmunds.com/ion_auth/
7 | 4. AdminLTE theme, https://github.com/almasaeed2010/AdminLTE
8 |
9 | I also add one user module with CRUD capability ( add user, edit user, delete user, change password ) and login module, of course. You can use my code and edit it by yourself. For demo you can try it at http://codeigniter-bootstrap.abosmond.xyz/, username : administrator, password : password.
10 | If you have any question, just pull requests or contact me at abosmond86@gmail.com.
11 |
12 | Happy coding,
13 |
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 19 | * @see https://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->load->view('welcome_message'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/Template.php: -------------------------------------------------------------------------------- 1 | template_data[$name] = $value; 8 | } 9 | 10 | function load($template = '', $view = '' , $view_data = array(), $return = FALSE) { 11 | $this->CI =& get_instance(); 12 | $this->set('contents', $this->CI->load->view($view, $view_data, TRUE)); 13 | return $this->CI->load->view($template, $this->template_data, $return); 14 | } 15 | 16 | function load_partial($template = '', $view = '' , $view_data = array(), $return = FALSE) { 17 | $this->set('contents', $this->template_data['controller']->load->view($view, $view_data, TRUE)); 18 | return $this->template_data['controller']->load->view($template, $this->template_data, $return); 19 | } 20 | } 21 | 22 | /* End of file Template.php */ 23 | /* Location: ./system/application/libraries/Template.php */ -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Home/controllers/Home.php: -------------------------------------------------------------------------------- 1 | ion_auth->logged_in()) { 11 | redirect('Login'); 12 | } 13 | 14 | } 15 | 16 | public function index() { 17 | $this->template->load('index', 'home', $this->data); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /application/modules/Home/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Home/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Home/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Home/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Home/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Home/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |Type:
10 |Message:
11 |Filename: getFile(); ?>
12 |Line Number: getLine(); ?>
13 | 14 | 15 | 16 |Backtrace:
17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Severity:
10 |Message:
11 |Filename:
12 |Line Number:
13 | 14 | 15 | 16 |Backtrace:
17 | 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Home/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Home/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Login/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Login/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Login/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Login/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Login/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Login/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |Type:
10 |Message:
11 |Filename: getFile(); ?>
12 |Line Number: getLine(); ?>
13 | 14 | 15 | 16 |Backtrace:
17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Severity:
10 |Message:
11 |Filename:
12 |Line Number:
13 | 14 | 15 | 16 |Backtrace:
17 | 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Login/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Login/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Users/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Users/models/User_model.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Users/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Users/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Users/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Users/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |Type:
10 |Message:
11 |Filename: getFile(); ?>
12 |Line Number: getLine(); ?>
13 | 14 | 15 | 16 |Backtrace:
17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Severity:
10 |Message:
11 |Filename:
12 |Line Number:
13 | 14 | 15 | 16 |Backtrace:
17 | 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Users/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Users/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Welcome/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see https://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->load->view('welcome_message'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/modules/Welcome/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Welcome/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Welcome/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Welcome/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/modules/Welcome/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Welcome/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |Type:
10 |Message:
11 |Filename: getFile(); ?>
12 |Line Number: getLine(); ?>
13 | 14 | 15 | 16 |Backtrace:
17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Severity:
10 |Message:
11 |Filename:
12 |Line Number:
13 | 14 | 15 | 16 |Backtrace:
17 | 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Welcome/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/Welcome/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |Type:
10 |Message:
11 |Filename: getFile(); ?>
12 |Line Number: getLine(); ?>
13 | 14 | 15 | 16 |Backtrace:
17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Severity:
10 |Message:
11 |Filename:
12 |Line Number:
13 | 14 | 15 | 16 |Backtrace:
17 | 18 | 19 | 20 | 21 |
22 | File:
23 | Line:
24 | Function:
25 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/avatar.png -------------------------------------------------------------------------------- /assets/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/avatar04.png -------------------------------------------------------------------------------- /assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/avatar2.png -------------------------------------------------------------------------------- /assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/avatar3.png -------------------------------------------------------------------------------- /assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/avatar5.png -------------------------------------------------------------------------------- /assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/credit/american-express.png -------------------------------------------------------------------------------- /assets/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/credit/mastercard.png -------------------------------------------------------------------------------- /assets/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/credit/visa.png -------------------------------------------------------------------------------- /assets/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/icons.png -------------------------------------------------------------------------------- /assets/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/photo1.png -------------------------------------------------------------------------------- /assets/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/photo2.png -------------------------------------------------------------------------------- /assets/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/photo3.jpg -------------------------------------------------------------------------------- /assets/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/photo4.jpg -------------------------------------------------------------------------------- /assets/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user1-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user2-160x160.jpg -------------------------------------------------------------------------------- /assets/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user3-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user4-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user5-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user6-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user7-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abosmond/CodeIgniter-Bootstrap/3c7396024fff695ee1b9a12a2530dfcab5393b1e/assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/sample_posteddata.php: -------------------------------------------------------------------------------- 1 |2 | 3 | ------------------------------------------------------------------------------------------- 4 | CKEditor - Posted Data 5 | 6 | We are sorry, but your Web server does not support the PHP language used in this script. 7 | 8 | Please note that CKEditor can be used with any other server-side language than just PHP. 9 | To save the content created with CKEditor you need to read the POST data on the server 10 | side and write it to a file or the database. 11 | 12 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 13 | For licensing, see LICENSE.md or http://ckeditor.com/license 14 | ------------------------------------------------------------------------------------------- 15 | 16 |