├── app ├── Filters │ └── .gitkeep ├── Helpers │ └── .gitkeep ├── Language │ └── .gitkeep ├── Libraries │ └── .gitkeep ├── Models │ └── .gitkeep ├── ThirdParty │ └── .gitkeep ├── Database │ ├── Seeds │ │ ├── .gitkeep │ │ ├── AdminSeeder.php │ │ └── CategorySeeder.php │ └── Migrations │ │ └── .gitkeep ├── Config │ └── ForeignCharacters.php ├── .htaccess ├── Views │ └── errors │ │ ├── cli │ │ ├── error_404.php │ │ └── production.php │ │ └── html │ │ └── production.php ├── index.html ├── Controllers │ └── Home.php └── Common.php ├── tests └── _support │ ├── HTTP │ ├── Files │ │ ├── CookiesHolder.txt │ │ └── tmp │ │ │ ├── fileA.txt │ │ │ └── fileB.txt │ ├── MockIncomingRequest.php │ └── MockResponse.php │ ├── View │ ├── Views │ │ ├── simpler.php │ │ └── simple.php │ └── MockTable.php │ ├── Autoloader │ └── UnnamespacedClass.php │ ├── Images │ ├── ci-logo.gif │ ├── ci-logo.jpeg │ ├── ci-logo.png │ ├── EXIFsamples │ │ ├── up.jpg │ │ ├── down.jpg │ │ ├── left.jpg │ │ ├── right.jpg │ │ ├── up-mirrored.jpg │ │ ├── down-mirrored.jpg │ │ ├── left-mirrored.jpg │ │ └── right-mirrored.jpg │ └── Steveston_dusk.JPG │ ├── Database │ ├── MockTestClass.php │ ├── MockQuery.php │ ├── Seeds │ │ └── AnotherSeeder.php │ ├── MockBuilder.php │ └── SupportMigrations │ │ └── 001_Some_migration.php │ ├── Validation │ ├── uploads │ │ └── phpUxc0ty │ └── TestRules.php │ ├── CIUnitTestCase.php │ ├── CIDatabaseTestCase.php │ ├── Language │ ├── ru │ │ └── Language.php │ ├── ab │ │ └── Allin.php │ ├── en-ZZ │ │ └── More.php │ ├── en │ │ ├── Allin.php │ │ └── More.php │ └── ab-CD │ │ └── Allin.php │ ├── Config │ ├── Routes.php │ ├── BadRegistrar.php │ ├── Registrar.php │ └── MockAutoload.php │ ├── Files │ ├── able │ │ ├── apple.php │ │ ├── fig_3.php │ │ └── prune_ripe.php │ └── baker │ │ └── banana.php │ ├── SomeEntity.php │ ├── MockCodeIgniter.php │ ├── RESTful │ ├── Worker.php │ ├── Worker2.php │ ├── MockResourcePresenter.php │ └── MockResourceController.php │ ├── Commands │ └── AbstractInfo.php │ ├── Models │ ├── SimpleEntity.php │ ├── SecondaryModel.php │ ├── JobModel.php │ ├── EntityModel.php │ └── UserModel.php │ └── Security │ └── MockSecurity.php ├── public ├── robots.txt ├── themes │ ├── plugins │ │ ├── jquery-ui │ │ │ ├── README.md │ │ │ └── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── datatables │ │ │ ├── extensions │ │ │ │ ├── Responsive │ │ │ │ │ └── Readme.md │ │ │ │ ├── FixedHeader │ │ │ │ │ └── css │ │ │ │ │ │ ├── dataTables.fixedHeader.min.css │ │ │ │ │ │ └── dataTables.fixedHeader.css │ │ │ │ ├── KeyTable │ │ │ │ │ └── css │ │ │ │ │ │ ├── dataTables.keyTable.min.css │ │ │ │ │ │ └── dataTables.keyTable.css │ │ │ │ ├── TableTools │ │ │ │ │ ├── images │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ ├── 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 │ │ │ │ ├── AutoFill │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── css │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ ├── ColReorder │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── css │ │ │ │ │ │ ├── dataTables.colReorder.min.css │ │ │ │ │ │ └── dataTables.colReorder.css │ │ │ │ ├── Scroller │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── css │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ └── FixedColumns │ │ │ │ │ └── css │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ └── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ └── sort_desc_disabled.png │ │ ├── daterangepicker │ │ │ ├── example │ │ │ │ └── browserify │ │ │ │ │ ├── bundle.js │ │ │ │ │ └── README.md │ │ │ ├── drp.png │ │ │ ├── bower.json │ │ │ └── package.js │ │ ├── raphael │ │ │ ├── dev │ │ │ │ ├── test │ │ │ │ │ └── vml │ │ │ │ │ │ └── dom.js │ │ │ │ └── raphael.amd.js │ │ │ └── .eslintrc.js │ │ ├── summernote │ │ │ └── font │ │ │ │ ├── summernote.eot │ │ │ │ ├── summernote.ttf │ │ │ │ └── summernote.woff │ │ ├── ion-rangeslider │ │ │ ├── .editorconfig │ │ │ └── less │ │ │ │ ├── irs.less │ │ │ │ └── _mixins.less │ │ ├── chart.js │ │ │ ├── docs │ │ │ │ ├── gitbook │ │ │ │ │ ├── images │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── apple-touch-icon-precomposed-152.png │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── fontawesome │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ ├── gitbook-plugin-chartjs │ │ │ │ │ │ └── style.css │ │ │ │ │ └── gitbook-plugin-anchorjs │ │ │ │ │ │ └── anchor-style.js │ │ │ │ └── style.css │ │ │ └── Chart.min.css │ │ ├── fontawesome-free │ │ │ └── webfonts │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.woff │ │ │ │ └── fa-regular-400.woff2 │ │ ├── jquery-mapael │ │ │ └── maps │ │ │ │ └── README.txt │ │ ├── flag-icon-css │ │ │ └── flags │ │ │ │ ├── 4x3 │ │ │ │ ├── bd.svg │ │ │ │ ├── de.svg │ │ │ │ ├── am.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── gb-sct.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── id.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── at.svg │ │ │ │ ├── gb-eng.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── es-ct.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── td.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── th.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── co.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── it.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── nc.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── re.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── no.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── to.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── la.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── az.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── so.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── is.svg │ │ │ │ ├── tr.svg │ │ │ │ ├── sy.svg │ │ │ │ ├── bh.svg │ │ │ │ └── ly.svg │ │ │ │ └── 1x1 │ │ │ │ ├── bd.svg │ │ │ │ ├── de.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── am.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── gb-eng.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── gb-sct.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── at.svg │ │ │ │ ├── id.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── es-ct.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── td.svg │ │ │ │ ├── th.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── co.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── it.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── nc.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── re.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── no.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── to.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── gm.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── az.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── so.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── la.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── is.svg │ │ │ │ ├── fo.svg │ │ │ │ ├── ly.svg │ │ │ │ └── sy.svg │ │ ├── fullcalendar-bootstrap │ │ │ ├── main.d.ts │ │ │ ├── README.md │ │ │ └── main.min.css │ │ ├── fullcalendar-daygrid │ │ │ └── README.md │ │ ├── fullcalendar-timegrid │ │ │ └── README.md │ │ ├── fullcalendar │ │ │ ├── README.md │ │ │ └── locales │ │ │ │ ├── en-au.js.map │ │ │ │ ├── en-gb.js.map │ │ │ │ └── en-nz.js.map │ │ ├── fullcalendar-interaction │ │ │ └── README.md │ │ ├── morris │ │ │ └── morris.css │ │ ├── inputmask │ │ │ ├── min │ │ │ │ └── inputmask │ │ │ │ │ ├── global │ │ │ │ │ └── window.min.js │ │ │ │ │ └── dependencyLibs │ │ │ │ │ └── inputmask.dependencyLib.jquery.min.js │ │ │ └── inputmask │ │ │ │ └── global │ │ │ │ └── window.js │ │ └── pace-progress │ │ │ └── themes │ │ │ ├── red │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── black │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── blue │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── green │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── orange │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── pink │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── purple │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── silver │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ ├── white │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ │ │ └── yellow │ │ │ ├── pace-theme-minimal.css │ │ │ └── pace-theme-fill-left.css │ ├── docs │ │ ├── assets │ │ │ ├── css │ │ │ │ └── docs.css │ │ │ ├── img │ │ │ │ ├── logo-xl.png │ │ │ │ ├── logo-xs.png │ │ │ │ ├── AdminLTELogo.png │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── plugins │ │ │ │ └── fontawesome-free │ │ │ │ └── webfonts │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-solid-900.woff │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ └── fa-regular-400.woff2 │ │ ├── Gemfile │ │ ├── _layouts │ │ │ ├── page.html │ │ │ ├── post.html │ │ │ └── default.html │ │ └── _includes │ │ │ ├── footer.html │ │ │ └── foot.html │ ├── .eslintignore │ ├── xdist.zip │ ├── .editorconfig │ ├── .babelrc │ ├── .browserslistrc │ ├── .gitignore │ └── composer.json └── favicon.ico ├── system ├── Validation │ └── Views │ │ ├── single.php │ │ └── list.php ├── .htaccess ├── Test │ └── Mock │ │ ├── MockQuery.php │ │ ├── MockCodeIgniter.php │ │ ├── MockSecurity.php │ │ ├── MockIncomingRequest.php │ │ ├── MockResourcePresenter.php │ │ ├── MockResourceController.php │ │ ├── MockTable.php │ │ ├── MockBuilder.php │ │ ├── MockAutoload.php │ │ ├── MockResponse.php │ │ └── MockChromeLogger.php ├── ThirdParty │ ├── PSR │ │ └── Log │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LogLevel.php │ │ │ └── LoggerAwareTrait.php │ ├── Kint │ │ └── resources │ │ │ └── compiled │ │ │ ├── plain.css │ │ │ ├── plain.js │ │ │ └── shared.js │ └── Escaper │ │ └── Exception │ │ ├── ExceptionInterface.php │ │ ├── RuntimeException.php │ │ └── InvalidArgumentException.php ├── Exceptions │ ├── EmergencyError.php │ ├── AlertError.php │ ├── CriticalError.php │ ├── ExceptionInterface.php │ ├── ConfigException.php │ └── ModelException.php ├── index.html ├── Router │ └── Exceptions │ │ ├── RedirectException.php │ │ └── RouterException.php ├── Cache │ └── Exceptions │ │ └── ExceptionInterface.php ├── Files │ └── Exceptions │ │ ├── FileNotFoundException.php │ │ └── FileException.php ├── Database │ └── Exceptions │ │ └── ExceptionInterface.php ├── Debug │ └── Toolbar │ │ └── Views │ │ ├── _files.tpl │ │ ├── _database.tpl │ │ ├── _events.tpl │ │ └── _logs.tpl ├── Security │ └── Exceptions │ │ └── SecurityException.php ├── Log │ └── Exceptions │ │ └── LogException.php ├── CLI │ └── Exceptions │ │ └── CLIException.php ├── Pager │ ├── Views │ │ └── default_head.php │ └── Exceptions │ │ └── PagerException.php ├── Language │ └── en │ │ ├── Log.php │ │ ├── RESTful.php │ │ ├── Entity.php │ │ ├── Redirect.php │ │ ├── Files.php │ │ ├── Language.php │ │ ├── Format.php │ │ └── Filters.php ├── Filters │ └── Exceptions │ │ └── FilterException.php └── Format │ └── Exceptions │ └── FormatException.php └── writable ├── .htaccess ├── cache └── index.html ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_support/HTTP/Files/CookiesHolder.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/_support/HTTP/Files/tmp/fileA.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/_support/HTTP/Files/tmp/fileB.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/themes/plugins/jquery-ui/README.md: -------------------------------------------------------------------------------- 1 | # jquery-ui-dist -------------------------------------------------------------------------------- /tests/_support/View/Views/simpler.php: -------------------------------------------------------------------------------- 1 |

{testString}

-------------------------------------------------------------------------------- /tests/_support/View/Views/simple.php: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/plugins/daterangepicker/example/browserify/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /system/Validation/Views/single.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/themes/docs/assets/css/docs.css: -------------------------------------------------------------------------------- 1 | .max-height-300 pre { 2 | max-height: 300px 3 | } 4 | -------------------------------------------------------------------------------- /public/themes/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.min.js 2 | **/plugins/* 3 | **/dist/* 4 | **/build/npm 5 | ad.js 6 | -------------------------------------------------------------------------------- /public/themes/xdist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/xdist.zip -------------------------------------------------------------------------------- /tests/_support/Autoloader/UnnamespacedClass.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /tests/_support/Images/EXIFsamples/down-mirrored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/tests/_support/Images/EXIFsamples/down-mirrored.jpg -------------------------------------------------------------------------------- /tests/_support/Images/EXIFsamples/left-mirrored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/tests/_support/Images/EXIFsamples/left-mirrored.jpg -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 3.8.5" 4 | 5 | gem "rouge" 6 | 7 | gem 'github-pages', group: :jekyll_plugins 8 | -------------------------------------------------------------------------------- /public/themes/plugins/ion-rangeslider/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.{js,css,less,html}] 4 | indent_style = space 5 | indent_size = 4 6 | charset = utf-8 7 | -------------------------------------------------------------------------------- /tests/_support/Language/ru/Language.php: -------------------------------------------------------------------------------- 1 | 'Whatever this would be, translated', 5 | ]; 6 | -------------------------------------------------------------------------------- /writable/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /system/Test/Mock/MockQuery.php: -------------------------------------------------------------------------------- 1 | 'gluttony', 5 | 'tre' => 'greed', 6 | 'six' => 'envy', 7 | 'sev' => 'pride', 8 | ]; 9 | -------------------------------------------------------------------------------- /app/Views/errors/cli/production.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /tests/_support/Config/Routes.php: -------------------------------------------------------------------------------- 1 | add('testing', 'TestController::index'); 8 | -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /system/Exceptions/EmergencyError.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/docs/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_sip/HEAD/public/themes/plugins/chart.js/docs/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /tests/_support/Language/en-ZZ/More.php: -------------------------------------------------------------------------------- 1 | 'These are not the droids you are looking for', 4 | 'notaMoon' => "It's made of cheese", 5 | 'wisdom' => 'There is no try', 6 | ]; 7 | -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/gitbook-plugin-chartjs/style.css: -------------------------------------------------------------------------------- 1 | .chartjs-wrapper canvas { 2 | -webkit-user-select: none; 3 | -moz-user-select: none; 4 | -ms-user-select: none; 5 | user-select: none; 6 | } 7 | -------------------------------------------------------------------------------- /system/Exceptions/AlertError.php: -------------------------------------------------------------------------------- 1 | 'four calling birds', 5 | 'fiv' => 'five golden rings', 6 | 'six' => 'six geese a laying', 7 | 'sev' => 'seven swans a swimming', 8 | ]; 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /system/Router/Exceptions/RedirectException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/_support/SomeEntity.php: -------------------------------------------------------------------------------- 1 | null, 11 | 'bar' => null, 12 | ]; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /tests/_support/Language/ab-CD/Allin.php: -------------------------------------------------------------------------------- 1 | 'Pyramid of Giza', 5 | 'tre' => 'Colossus of Rhodes', 6 | 'fiv' => 'Temple of Artemis', 7 | 'sev' => 'Hanging Gardens of Babylon', 8 | ]; 9 | -------------------------------------------------------------------------------- /tests/_support/Language/en/More.php: -------------------------------------------------------------------------------- 1 | 'These are not the droids you are looking for', 5 | 'notaMoon' => "That's no moon... it's a space station", 6 | 'cannotMove' => 'I have a very bad feeling about this', 7 | ]; 8 | -------------------------------------------------------------------------------- /public/themes/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@babel/preset-env", 5 | { 6 | "loose": true, 7 | "modules": false 8 | } 9 | ] 10 | ], 11 | "plugins": [ 12 | "@babel/plugin-external-helpers" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /system/Validation/Views/list.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /tests/_support/MockCodeIgniter.php: -------------------------------------------------------------------------------- 1 | = 1% 4 | last 1 major version 5 | not dead 6 | Chrome >= 45 7 | Firefox >= 38 8 | Edge >= 12 9 | Explorer >= 10 10 | iOS >= 9 11 | Safari >= 9 12 | Android >= 4.4 13 | Opera >= 30 14 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/ion-rangeslider/less/irs.less: -------------------------------------------------------------------------------- 1 | // Base styles 2 | @import "_base"; 3 | 4 | // Skins styles 5 | @import "skins/flat"; 6 | @import "skins/big"; 7 | @import "skins/modern"; 8 | @import "skins/sharp"; 9 | @import "skins/round"; 10 | @import "skins/square"; 11 | -------------------------------------------------------------------------------- /system/Test/Mock/MockCodeIgniter.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/Controllers/Home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/_support/RESTful/Worker.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/_support/RESTful/Worker2.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/docs/_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 |

{{page.title}}

8 |
9 | 10 |
11 | {{content}} 12 |
13 |
14 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/docs/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 |

{{page.title}}

8 |
9 | 10 |
11 | {{content}} 12 |
13 |
14 | -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/gitbook/gitbook-plugin-anchorjs/anchor-style.js: -------------------------------------------------------------------------------- 1 | gitbook.events.bind('start', function(e, config) { 2 | anchors.options = config.anchorjs || {}; 3 | }); 4 | 5 | gitbook.events.bind('page.change', function() { 6 | anchors.add(anchors.options.selector || 'h2,h3,h4,h5'); 7 | }); 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar-bootstrap/main.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@fullcalendar/bootstrap" { 2 | import { Theme } from "@fullcalendar/core"; 3 | export class BootstrapTheme extends Theme { 4 | } 5 | const _default_5: import("@fullcalendar/core/plugin-system").PluginDef; 6 | export default _default_5; 7 | } -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/docs/_includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{site.version}} 4 |
5 | Copyright © 2014-{{ site.time | date: '%Y' }} AdminLTE.io. All rights reserved. 6 |
7 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar-bootstrap/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Bootstrap Plugin 3 | 4 | Bootstrap 4 theming for your calendar 5 | 6 | [View the docs »](https://fullcalendar.io/docs/bootstrap-theme) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar-daygrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Day Grid Plugin 3 | 4 | Display events on Month view or DayGrid view 5 | 6 | [View the docs »](https://fullcalendar.io/docs/month-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar-timegrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Time Grid Plugin 3 | 4 | Display your events on a grid of time slots 5 | 6 | [View the docs »](https://fullcalendar.io/docs/timegrid-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Core Package 3 | 4 | Provides core functionality, including the Calendar class 5 | 6 | [View the docs »](https://fullcalendar.io/docs/initialize-es6) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /system/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/Cache/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/_support/Validation/TestRules.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/_support/Commands/AbstractInfo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/plain.css: -------------------------------------------------------------------------------- 1 | .kint-plain{background:rgba(255,255,255,0.9);white-space:pre;display:block;font-family:monospace;color:#222}.kint-plain i{color:#d00;font-style:normal}.kint-plain u{color:#030;text-decoration:none;font-weight:bold}.kint-plain .kint-microtime-lap{font-weight:bold;text-shadow:1px 0 #fff, 0 1px #fff, -1px 0 #fff, 0 -1px #fff} 2 | -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/plain.js: -------------------------------------------------------------------------------- 1 | void 0===window.kintPlain&&(window.kintPlain=function(){"use strict";var i={initLoad:function(){i.style=window.kintShared.dedupe("style.kint-plain-style",i.style),i.script=window.kintShared.dedupe("script.kint-plain-script",i.script)},style:null,script:null};return i}()),window.kintShared.runOnce(window.kintPlain.initLoad); 2 | -------------------------------------------------------------------------------- /public/themes/plugins/chart.js/docs/style.css: -------------------------------------------------------------------------------- 1 | a.anchorjs-link { 2 | color: rgba(65, 131, 196, 0.1); 3 | font-weight: 400; 4 | text-decoration: none; 5 | transition: color 100ms ease-out; 6 | z-index: 999; 7 | } 8 | 9 | a.anchorjs-link:hover { 10 | color: rgba(65, 131, 196, 1); 11 | } 12 | 13 | sup { 14 | font-size: 0.75em !important; 15 | } 16 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar-interaction/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Interaction Plugin 3 | 4 | Provides functionality for event drag-n-drop, resizing, dateClick, and selectable actions 5 | 6 | [View the docs »](https://fullcalendar.io/docs/editable) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/Files/Exceptions/FileNotFoundException.php: -------------------------------------------------------------------------------- 1 | 'Jerome Lohan', 9 | 'email' => 'jlo@lohanenterprises.com', 10 | 'country' => 'UK', 11 | ]; 12 | 13 | $this->db->table('user')->insert($row); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /system/Database/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_files.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {userFiles} 4 | 5 | 6 | 7 | 8 | {/userFiles} 9 | {coreFiles} 10 | 11 | 12 | 13 | 14 | {/coreFiles} 15 | 16 |
{name}{path}
{name}{path}
17 | -------------------------------------------------------------------------------- /public/themes/docs/_includes/foot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_database.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {queries} 10 | 11 | 12 | 13 | 14 | {/queries} 15 | 16 |
TimeQuery String
{duration}{! sql !}
17 | -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/LogLevel.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/Security/Exceptions/SecurityException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/Exceptions/ConfigException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/themes/plugins/daterangepicker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "daterangepicker", 3 | "main": [ 4 | "daterangepicker.js", 5 | "daterangepicker.css" 6 | ], 7 | "ignore": [ 8 | "**/.*", 9 | "node_modules", 10 | "bower_components", 11 | "test", 12 | "tests", 13 | "moment.js", 14 | "moment.min.js" 15 | ], 16 | "dependencies": { 17 | "jquery": "1.9.1 - 3", 18 | "moment": ">=2.9.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /system/CLI/Exceptions/CLIException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar/locales/en-au.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"en-au.js","sources":["../../../locales/en-au.js"],"sourcesContent":["\nexport default {\n code: \"en-au\",\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4 // The week that contains Jan 4th is the first week of the year.\n }\n};\n"],"names":[],"mappings":";;;;;;AACA,eAAe;QACb,IAAI,EAAE,OAAO;QACb,IAAI,EAAE;YACJ,GAAG,EAAE,CAAC;YACN,GAAG,EAAE,CAAC;SACP;KACF,CAAC;;;;;;;;"} -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar/locales/en-gb.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"en-gb.js","sources":["../../../locales/en-gb.js"],"sourcesContent":["\nexport default {\n code: \"en-gb\",\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4 // The week that contains Jan 4th is the first week of the year.\n }\n};\n"],"names":[],"mappings":";;;;;;AACA,eAAe;QACb,IAAI,EAAE,OAAO;QACb,IAAI,EAAE;YACJ,GAAG,EAAE,CAAC;YACN,GAAG,EAAE,CAAC;SACP;KACF,CAAC;;;;;;;;"} -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar/locales/en-nz.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"en-nz.js","sources":["../../../locales/en-nz.js"],"sourcesContent":["\nexport default {\n code: \"en-nz\",\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4 // The week that contains Jan 4th is the first week of the year.\n }\n};\n"],"names":[],"mappings":";;;;;;AACA,eAAe;QACb,IAAI,EAAE,OAAO;QACb,IAAI,EAAE;YACJ,GAAG,EAAE,CAAC;YACN,GAAG,EAAE,CAAC;SACP;KACF,CAAC;;;;;;;;"} -------------------------------------------------------------------------------- /public/themes/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /tests/_support/Models/SecondaryModel.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /system/Test/Mock/MockSecurity.php: -------------------------------------------------------------------------------- 1 | CSRFHash; 11 | 12 | return $this; 13 | } 14 | 15 | //-------------------------------------------------------------------- 16 | 17 | } 18 | -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | model; 11 | } 12 | 13 | public function getModelName() 14 | { 15 | return $this->modelName; 16 | } 17 | 18 | public function getFormat() 19 | { 20 | return $this->format; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /tests/_support/HTTP/MockIncomingRequest.php: -------------------------------------------------------------------------------- 1 | CSRFHash; 11 | 12 | return $this; 13 | } 14 | 15 | //-------------------------------------------------------------------- 16 | 17 | } 18 | -------------------------------------------------------------------------------- /system/Test/Mock/MockResourceController.php: -------------------------------------------------------------------------------- 1 | model; 11 | } 12 | 13 | public function getModelName() 14 | { 15 | return $this->modelName; 16 | } 17 | 18 | public function getFormat() 19 | { 20 | return $this->format; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /system/Test/Mock/MockTable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /system/Test/Mock/MockBuilder.php: -------------------------------------------------------------------------------- 1 | model; 12 | } 13 | 14 | public function getModelName() 15 | { 16 | return $this->modelName; 17 | } 18 | 19 | public function getFormat() 20 | { 21 | return $this->format; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /tests/_support/View/MockTable.php: -------------------------------------------------------------------------------- 1 | setSurroundCount(0); 7 | 8 | if ($pager->hasPrevious()) 9 | { 10 | echo '' . PHP_EOL; 11 | } 12 | 13 | echo '' . PHP_EOL; 14 | 15 | if ($pager->hasNext()) 16 | { 17 | echo '' . PHP_EOL; 18 | } 19 | -------------------------------------------------------------------------------- /tests/_support/RESTful/MockResourceController.php: -------------------------------------------------------------------------------- 1 | model; 12 | } 13 | 14 | public function getModelName() 15 | { 16 | return $this->modelName; 17 | } 18 | 19 | public function getFormat() 20 | { 21 | return $this->format; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_events.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | {events} 11 | 12 | 13 | 14 | 15 | 16 | {/events} 17 | 18 |
TimeEvent NameTimes Called
{ duration } ms{event}{count}
19 | -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/_support/Database/MockBuilder.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /system/Exceptions/ModelException.php: -------------------------------------------------------------------------------- 1 | '{0} is an invalid log level.', 19 | ]; 20 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /system/Language/en/RESTful.php: -------------------------------------------------------------------------------- 1 | '"{0}" action not implemented.', 18 | ]; 19 | -------------------------------------------------------------------------------- /tests/_support/Models/EntityModel.php: -------------------------------------------------------------------------------- 1 | 'Trying to access non existent property {0} of {1}', 19 | ]; 20 | -------------------------------------------------------------------------------- /tests/_support/Config/Registrar.php: -------------------------------------------------------------------------------- 1 | [ 16 | 'first', 17 | 'second', 18 | ], 19 | 'format' => 'nice', 20 | 'fruit' => [ 21 | 'apple', 22 | 'banana', 23 | ], 24 | ]; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/docs/_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {%- include head.html -%} 5 | 6 | 7 |
8 | 9 | {%- include navbar.html -%} 10 | {%- include sidebar.html -%} 11 | 12 | {{content}} 13 | 14 | {%- include footer.html -%} 15 |
16 | 17 | {%- include foot.html -%} 18 | 19 | 20 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_logs.tpl: -------------------------------------------------------------------------------- 1 | { if $logs == [] } 2 |

Nothing was logged. If you were expecting logged items, ensure that LoggerConfig file has the correct threshold set.

3 | { else } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {logs} 13 | 14 | 15 | 16 | 17 | {/logs} 18 | 19 |
SeverityMessage
{level}{msg}
20 | { endif } 21 | -------------------------------------------------------------------------------- /system/Language/en/Redirect.php: -------------------------------------------------------------------------------- 1 | 'Unable to redirect to "{0}". Error status code "{1}"', 19 | ]; 20 | -------------------------------------------------------------------------------- /tests/_support/Models/UserModel.php: -------------------------------------------------------------------------------- 1 | div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0} -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /system/Test/Mock/MockAutoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/Language/en/Files.php: -------------------------------------------------------------------------------- 1 | 'File not found: {0}', 18 | 'cannotMove' => 'Could not move file {0} to {1} ({2})', 19 | ]; 20 | -------------------------------------------------------------------------------- /tests/_support/Config/MockAutoload.php: -------------------------------------------------------------------------------- 1 | 'Get line must be a string or array of strings.', 19 | ]; 20 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /system/Router/Exceptions/RouterException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/fullcalendar-bootstrap/main.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Bootstrap Plugin v4.2.0 3 | Docs & License: https://fullcalendar.io/ 4 | (c) 2019 Adam Shaw 5 | */.fc.fc-bootstrap a{text-decoration:none}.fc.fc-bootstrap a[data-goto]:hover{text-decoration:underline}.fc-bootstrap hr.fc-divider{border-color:inherit}.fc-bootstrap .fc-today.alert{border-radius:0}.fc-bootstrap a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap .fc-popover.card{position:absolute}.fc-bootstrap .fc-popover .card-body{padding:0}.fc-bootstrap .fc-time-grid .fc-slats table{background:0 0} -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/inputmask/min/inputmask/global/window.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * global/window.min.js 3 | * https://github.com/RobinHerbots/Inputmask 4 | * Copyright (c) 2010 - 2019 Robin Herbots 5 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 6 | * Version: 4.0.8 7 | */ 8 | 9 | if(typeof define==="function"&&define.amd)define(function(){return typeof window!=="undefined"?window:new(eval("require('jsdom').JSDOM"))("").window});else if(typeof exports==="object")module.exports=typeof window!=="undefined"?window:new(eval("require('jsdom').JSDOM"))("").window; -------------------------------------------------------------------------------- /system/Filters/Exceptions/FilterException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/red/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #ee3148; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /app/Database/Seeds/AdminSeeder.php: -------------------------------------------------------------------------------- 1 | 'admin', 9 | 'name' => 'Admin', 10 | 'email' => 'admin@example.com', 11 | 'password' => '$2y$10$sOKww3LkoNzBtuW5SKxcJOVcY5eN3L1UsTMZpzgWLDd5MfiZ2mmNe', 12 | 'status' => 'Active', 13 | 'level' => 'Admin' 14 | ]; 15 | $this->db->table('users')->insert($data); 16 | } 17 | } -------------------------------------------------------------------------------- /app/Database/Seeds/CategorySeeder.php: -------------------------------------------------------------------------------- 1 | 'Masakan', 9 | 'category_status' => 'Active' 10 | ]; 11 | $data2 = [ 12 | 'category_name' => 'Minuman', 13 | 'category_status' => 'Active' 14 | ]; 15 | $this->db->table('categories')->insert($data1); 16 | $this->db->table('categories')->insert($data2); 17 | } 18 | } -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/black/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #000000; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/blue/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #2299dd; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/green/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #22df80; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/orange/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #eb7a55; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/pink/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #e90f92; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/purple/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #7c60e0; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/silver/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #d6d6d6; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/white/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #ffffff; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/yellow/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #fcd25a; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /app/Views/errors/html/production.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Whoops! 8 | 9 | 12 | 13 | 14 | 15 |
16 | 17 |

Whoops!

18 | 19 |

We seem to have hit a snag. Please try again later...

20 | 21 |
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/themes/plugins/daterangepicker/package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: 'dangrossman:bootstrap-daterangepicker', 3 | version: '3.0.5', 4 | summary: 'Date range picker component', 5 | git: 'https://github.com/dangrossman/daterangepicker', 6 | documentation: 'README.md' 7 | }); 8 | 9 | Package.onUse(function(api) { 10 | api.versionsFrom('METEOR@0.9.0.1'); 11 | 12 | api.use('momentjs:moment@2.22.1', ["client"]); 13 | api.use('jquery@3.3.1', ["client"]); 14 | 15 | api.addFiles('daterangepicker.js', ["client"]); 16 | api.addFiles('daterangepicker.css', ["client"]); 17 | }); 18 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/inputmask/min/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * dependencyLibs/inputmask.dependencyLib.jquery.min.js 3 | * https://github.com/RobinHerbots/Inputmask 4 | * Copyright (c) 2010 - 2019 Robin Herbots 5 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 6 | * Version: 4.0.8 7 | */ 8 | 9 | (function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else if(typeof exports==="object"){module.exports=factory(require("jquery"))}else{window.dependencyLib=factory(jQuery)}})(function($){return $}); -------------------------------------------------------------------------------- /system/Test/Mock/MockResponse.php: -------------------------------------------------------------------------------- 1 | pretend; 22 | } 23 | 24 | // artificial error for testing 25 | public function misbehave() 26 | { 27 | $this->statusCode = 0; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | forge->addField([ 8 | 'key' => [ 9 | 'type' => 'VARCHAR', 10 | 'constraint' => 255, 11 | ], 12 | ]); 13 | $this->forge->createTable('foo', true); 14 | 15 | $this->db->table('foo')->insert([ 16 | 'key' => 'foobar', 17 | ]); 18 | } 19 | 20 | public function down() 21 | { 22 | $this->forge->dropTable('foo', true); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /public/themes/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "almasaeed2010/adminlte", 3 | "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 4", 4 | "homepage": "http://adminlte.io/", 5 | "keywords": [ 6 | "css", 7 | "js", 8 | "less", 9 | "responsive", 10 | "back-end", 11 | "template", 12 | "theme", 13 | "web", 14 | "admin" 15 | ], 16 | "authors": [ 17 | { 18 | "name": "Colorlib" 19 | } 20 | ], 21 | "license": "MIT", 22 | "support": { 23 | "issues": "https://github.com/ColorlibHQ/AdminLTE/issues" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /system/Language/en/Format.php: -------------------------------------------------------------------------------- 1 | 'Failed to parse json string, error: "{0}".', 19 | 'missingExtension' => 'The SimpleXML extension is required to format XML.', 20 | ]; 21 | -------------------------------------------------------------------------------- /tests/_support/HTTP/MockResponse.php: -------------------------------------------------------------------------------- 1 | pretend; 23 | } 24 | 25 | // artificial error for testing 26 | public function misbehave() 27 | { 28 | $this->statusCode = 0; 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/black/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(0, 0, 0, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/red/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(238, 49, 72, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /system/Language/en/Filters.php: -------------------------------------------------------------------------------- 1 | '{0} filter must have a matching alias defined.', 19 | 'incorrectInterface' => '{0} must implement CodeIgniter\Filters\FilterInterface.', 20 | ]; 21 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/inputmask/inputmask/global/window.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * global/window.js 3 | * https://github.com/RobinHerbots/Inputmask 4 | * Copyright (c) 2010 - 2019 Robin Herbots 5 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 6 | * Version: 4.0.8 7 | */ 8 | 9 | if (typeof define === "function" && define.amd) define(function() { 10 | return typeof window !== "undefined" ? window : new (eval("require('jsdom').JSDOM"))("").window; 11 | }); else if (typeof exports === "object") module.exports = typeof window !== "undefined" ? window : new (eval("require('jsdom').JSDOM"))("").window; -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/blue/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(34, 153, 221, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/green/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(34, 223, 128, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/orange/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(235, 122, 85, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/pink/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(233, 15, 146, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/purple/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(124, 96, 224, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/silver/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(214, 214, 214, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/white/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(255, 255, 255, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /public/themes/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background-color: rgba(252, 210, 90, 0.19999999999999996); 16 | position: fixed; 17 | z-index: -1; 18 | top: 0; 19 | right: 100%; 20 | bottom: 0; 21 | width: 100%; 22 | } 23 | -------------------------------------------------------------------------------- /system/Pager/Exceptions/PagerException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /system/Format/Exceptions/FormatException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/4x3/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /system/Test/Mock/MockChromeLogger.php: -------------------------------------------------------------------------------- 1 | json['rows'][0]; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /public/themes/plugins/flag-icon-css/flags/1x1/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/themes/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | --------------------------------------------------------------------------------