├── pages ├── widgets │ └── script.js ├── dashboard │ └── script.js ├── examples │ ├── 404 │ │ └── script.js │ ├── 500 │ │ └── script.js │ ├── blank │ │ └── script.js │ ├── invoice │ │ └── script.js │ ├── profile │ │ └── script.js │ ├── invoice-print │ │ └── script.js │ ├── login │ │ └── script.js │ ├── lockscreen │ │ └── script.js │ ├── register │ │ └── script.js │ ├── pace │ │ └── script.js │ ├── 404.php │ ├── 500.php │ ├── blank.php │ ├── invoice.php │ ├── profile.php │ └── invoice-print.php ├── mailbox │ ├── read │ │ └── script.js │ └── compose │ │ └── script.js ├── starter │ ├── starter │ │ └── script.js │ └── starter.php ├── ui_elements │ ├── icons │ │ └── script.js │ ├── buttons │ │ └── script.js │ ├── general │ │ └── script.js │ ├── modals │ │ └── script.js │ ├── timeline │ │ └── script.js │ ├── icons.php │ ├── buttons.php │ ├── general.php │ ├── timeline.php │ └── modals.php ├── forms │ ├── general_elements │ │ └── script.js │ ├── editors │ │ └── script.js │ └── general_elements.php ├── tables │ ├── simple_tables │ │ └── script.js │ ├── data_tables │ │ └── script.js │ └── simple_tables.php ├── documentation │ └── documentation │ │ └── script.js ├── layout_options │ ├── fixed │ │ └── script.js │ ├── boxed │ │ └── script.js │ ├── collapsed_sidebar │ │ └── script.js │ ├── top_navigation │ │ └── script.js │ ├── boxed.php │ ├── fixed.php │ ├── top_navigation.php │ └── collapsed_sidebar.php ├── layout │ ├── functions.php │ ├── copyright.php │ └── footer.php └── auth │ └── auth.php ├── dist ├── js │ └── global.js ├── css │ ├── style.min.css │ └── bootstrap-tagsinput.min.css ├── img │ ├── avatar.png │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── photo7.jpg │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── btn-icons.png │ ├── credit │ │ ├── visa.png │ │ ├── cirrus.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ ├── mastercard.png │ │ └── american-express.png │ ├── default-50x50.gif │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ ├── user8-128x128.jpg │ ├── profile-pic-small.jpg │ ├── widget-bg-afternoon.jpg │ ├── widget-bg-evening.jpg │ ├── widget-bg-midnight.jpg │ └── widget-bg-morning.jpg └── font-awesome │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── less │ ├── fixed-width.less │ ├── screen-reader.less │ ├── larger.less │ ├── list.less │ ├── core.less │ ├── stacked.less │ ├── font-awesome.less │ ├── bordered-pulled.less │ ├── rotated-flipped.less │ ├── path.less │ └── animated.less │ └── scss │ ├── _fixed-width.scss │ ├── _screen-reader.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _core.scss │ ├── font-awesome.scss │ ├── _stacked.scss │ ├── _bordered-pulled.scss │ ├── _rotated-flipped.scss │ ├── _path.scss │ └── _animated.scss ├── gateway └── email_gateway.php ├── plugins ├── datatables │ ├── extensions │ │ ├── Responsive │ │ │ ├── Readme.md │ │ │ └── License.txt │ │ ├── FixedHeader │ │ │ └── css │ │ │ │ ├── dataTables.fixedHeader.min.css │ │ │ │ └── dataTables.fixedHeader.css │ │ ├── AutoFill │ │ │ ├── images │ │ │ │ └── filler.png │ │ │ └── css │ │ │ │ ├── dataTables.autoFill.min.css │ │ │ │ └── dataTables.autoFill.css │ │ ├── KeyTable │ │ │ └── css │ │ │ │ ├── dataTables.keyTable.min.css │ │ │ │ └── dataTables.keyTable.css │ │ ├── TableTools │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── csv.png │ │ │ │ ├── pdf.png │ │ │ │ ├── print.png │ │ │ │ ├── xls.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 │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── ColReorder │ │ │ ├── images │ │ │ │ └── insert.png │ │ │ ├── css │ │ │ │ ├── dataTables.colReorder.min.css │ │ │ │ └── dataTables.colReorder.css │ │ │ └── License.txt │ │ ├── Scroller │ │ │ ├── images │ │ │ │ └── loading-background.png │ │ │ └── css │ │ │ │ ├── dataTables.scroller.min.css │ │ │ │ └── dataTables.scroller.css │ │ ├── FixedColumns │ │ │ ├── css │ │ │ │ ├── dataTables.fixedColumns.min.css │ │ │ │ └── dataTables.fixedColumns.css │ │ │ └── License.txt │ │ └── ColVis │ │ │ ├── css │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ └── License.txt │ └── images │ │ ├── sort_asc.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ ├── sort_asc_disabled.png │ │ └── sort_desc_disabled.png ├── iCheck │ ├── flat │ │ ├── red.png │ │ ├── aero.png │ │ ├── blue.png │ │ ├── flat.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── flat@2x.png │ │ ├── green@2x.png │ │ ├── grey@2x.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── yellow.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ └── yellow@2x.png │ ├── line │ │ ├── line.png │ │ └── line@2x.png │ ├── square │ │ ├── red.png │ │ ├── aero.png │ │ ├── blue.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── orange.png │ │ ├── pink.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── square.png │ │ ├── yellow.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── green@2x.png │ │ ├── grey@2x.png │ │ ├── pink@2x.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ ├── square@2x.png │ │ └── yellow@2x.png │ ├── minimal │ │ ├── aero.png │ │ ├── blue.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── red.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── grey@2x.png │ │ ├── minimal.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── yellow.png │ │ ├── green@2x.png │ │ ├── minimal@2x.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ └── yellow@2x.png │ ├── polaris │ │ ├── polaris.png │ │ └── polaris@2x.png │ └── futurico │ │ ├── futurico.png │ │ └── futurico@2x.png ├── input-mask │ └── phone-codes │ │ └── readme.txt ├── colorpicker │ └── img │ │ ├── hue.png │ │ ├── alpha.png │ │ ├── saturation.png │ │ ├── hue-horizontal.png │ │ └── alpha-horizontal.png ├── ckeditor │ ├── plugins │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── link │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── image │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── hidpi │ │ │ │ ├── icon.png │ │ │ │ └── icon-rtl.png │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── logo_ckeditor.png │ │ │ │ └── hidpi │ │ │ │ └── logo_ckeditor.png │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ └── lang │ │ │ │ └── _translationstatus.txt │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ └── lang │ │ │ │ └── _translationstatus.txt │ │ ├── wsc │ │ │ └── README.md │ │ └── scayt │ │ │ └── README.md │ ├── samples │ │ ├── img │ │ │ ├── logo.png │ │ │ ├── header-bg.png │ │ │ ├── github-top.png │ │ │ ├── navigation-tip.png │ │ │ └── header-separator.png │ │ ├── old │ │ │ ├── assets │ │ │ │ ├── sample.jpg │ │ │ │ └── inlineall │ │ │ │ │ └── logo.png │ │ │ ├── htmlwriter │ │ │ │ └── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ └── outputforflash.swf │ │ │ ├── sample_posteddata.php │ │ │ └── dialog │ │ │ │ └── assets │ │ │ │ └── my_dialog.js │ │ └── toolbarconfigurator │ │ │ ├── font │ │ │ ├── fontello.eot │ │ │ ├── fontello.ttf │ │ │ ├── fontello.woff │ │ │ ├── LICENSE.txt │ │ │ └── config.json │ │ │ └── lib │ │ │ └── codemirror │ │ │ ├── show-hint.css │ │ │ ├── neo.css │ │ │ └── LICENSE │ └── skins │ │ └── moono │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ └── images │ │ ├── lock.png │ │ ├── arrow.png │ │ ├── close.png │ │ ├── refresh.png │ │ ├── spinner.gif │ │ ├── lock-open.png │ │ └── hidpi │ │ ├── close.png │ │ ├── lock.png │ │ ├── refresh.png │ │ └── lock-open.png ├── popupoverlay │ ├── defaults.js │ └── logout.js ├── ionslider │ └── img │ │ ├── sprite-skin-flat.png │ │ └── sprite-skin-nice.png ├── morris │ └── morris.css ├── datepicker │ └── locales │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.zh-TW.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.ka.js │ │ └── bootstrap-datepicker.et.js ├── select2 │ └── i18n │ │ ├── zh-TW.js │ │ ├── zh-CN.js │ │ ├── az.js │ │ ├── fi.js │ │ ├── ja.js │ │ ├── hu.js │ │ ├── tr.js │ │ ├── ko.js │ │ ├── th.js │ │ ├── id.js │ │ ├── vi.js │ │ ├── is.js │ │ ├── ar.js │ │ ├── de.js │ │ ├── et.js │ │ ├── sv.js │ │ ├── bg.js │ │ ├── km.js │ │ ├── nb.js │ │ ├── ms.js │ │ ├── gl.js │ │ ├── da.js │ │ ├── en.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── fa.js │ │ ├── hr.js │ │ ├── mk.js │ │ ├── eu.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── lv.js │ │ ├── es.js │ │ ├── ca.js │ │ ├── it.js │ │ ├── fr.js │ │ ├── ro.js │ │ ├── nl.js │ │ ├── lt.js │ │ ├── pl.js │ │ ├── el.js │ │ ├── sr.js │ │ ├── uk.js │ │ ├── sr-Cyrl.js │ │ ├── ru.js │ │ ├── sk.js │ │ └── cs.js ├── jvectormap │ └── jquery-jvectormap-1.2.2.css └── flot │ └── jquery.flot.symbol.min.js ├── index.php ├── bootstrap ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ └── npm.js ├── .gitignore ├── .jshintrc ├── documentation └── build │ └── include │ ├── browsers.html │ ├── license.html │ ├── dependencies.html │ ├── introduction.html │ └── faq.html ├── composer.json ├── bower.json ├── package.json └── LICENSE /pages/widgets/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/dashboard/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/examples/404/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/examples/500/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/mailbox/read/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/examples/blank/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/examples/invoice/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/examples/profile/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/starter/starter/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/ui_elements/icons/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/forms/general_elements/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/tables/simple_tables/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/ui_elements/buttons/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/ui_elements/general/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/ui_elements/modals/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/ui_elements/timeline/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/documentation/documentation/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/js/global.js: -------------------------------------------------------------------------------- 1 | // Global javascript functions list -------------------------------------------------------------------------------- /gateway/email_gateway.php: -------------------------------------------------------------------------------- 1 | # Email Gateway Script 2 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/css/style.min.css: -------------------------------------------------------------------------------- 1 | .wrapper{overflow-y:auto !important} -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/layout_options/fixed/script.js: -------------------------------------------------------------------------------- 1 | $("body").addClass("fixed"); -------------------------------------------------------------------------------- /pages/layout_options/boxed/script.js: -------------------------------------------------------------------------------- 1 | $("body").addClass("layout-boxed"); -------------------------------------------------------------------------------- /pages/layout_options/collapsed_sidebar/script.js: -------------------------------------------------------------------------------- 1 | $("body").addClass("sidebar-collapse"); -------------------------------------------------------------------------------- /dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/avatar.png -------------------------------------------------------------------------------- /dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/icons.png -------------------------------------------------------------------------------- /dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/photo1.png -------------------------------------------------------------------------------- /dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/photo2.png -------------------------------------------------------------------------------- /dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/photo3.jpg -------------------------------------------------------------------------------- /dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/photo4.jpg -------------------------------------------------------------------------------- /dist/img/photo7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/photo7.jpg -------------------------------------------------------------------------------- /dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/avatar04.png -------------------------------------------------------------------------------- /dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/avatar2.png -------------------------------------------------------------------------------- /dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/avatar3.png -------------------------------------------------------------------------------- /dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/avatar5.png -------------------------------------------------------------------------------- /dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /dist/img/btn-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budiantoip/AdminLTE-PHP/HEAD/dist/img/btn-icons.png -------------------------------------------------------------------------------- /pages/examples/invoice-print/script.js: -------------------------------------------------------------------------------- 1 | $(window).on('load', function(){ 2 | window.print(); 3 | }); -------------------------------------------------------------------------------- /pages/layout/functions.php: -------------------------------------------------------------------------------- 1 | 2 |
5 | Copyright © 2016 Admin LTE. All rights 6 | reserved. 7 | -------------------------------------------------------------------------------- /pages/forms/editors/script.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | // Replace the