├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .htaccess ├── Common.php ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── CURLRequest.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Cookie.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Feature.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Generators.php │ ├── Honeypot.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Publisher.php │ ├── Routes.php │ ├── Security.php │ ├── Services.php │ ├── Toolbar.php │ ├── UserAgents.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── BaseController.php │ └── Home.php ├── Database │ ├── Migrations │ │ └── .gitkeep │ └── Seeds │ │ └── .gitkeep ├── Filters │ ├── .gitkeep │ ├── Admin_Auth_filter.php │ └── Marketplace_Auth_Filter.php ├── Helpers │ └── .gitkeep ├── Language │ ├── .gitkeep │ ├── en │ │ ├── Button.php │ │ ├── Caption.php │ │ ├── Column.php │ │ ├── Common.php │ │ ├── Entry.php │ │ ├── Error.php │ │ ├── Heading.php │ │ ├── Help.php │ │ ├── Mail.php │ │ ├── Menu.php │ │ ├── Success.php │ │ ├── Tab.php │ │ ├── Text.php │ │ └── Validation.php │ └── id │ │ ├── Button.php │ │ ├── Caption.php │ │ ├── Column.php │ │ ├── Common.php │ │ ├── Entry.php │ │ ├── Error.php │ │ ├── Heading.php │ │ ├── Help.php │ │ ├── Mail.php │ │ ├── Menu.php │ │ ├── Success.php │ │ ├── Tab.php │ │ ├── Text.php │ │ └── Validation.php ├── Libraries │ ├── .gitkeep │ ├── Administrator.php │ ├── Calendar.php │ ├── Cart.php │ ├── Currency.php │ ├── Customer.php │ ├── File.php │ ├── Image.php │ ├── Language.php │ ├── Setting.php │ ├── Template.php │ ├── Text.php │ ├── Timezone.php │ ├── Url.php │ ├── Weight.php │ ├── Wishlist.php │ └── Zip.php ├── Models │ └── .gitkeep ├── ThirdParty │ └── .gitkeep ├── Views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ └── welcome_message.php └── index.html ├── env ├── main ├── admin │ ├── Config │ │ └── Routes.php │ ├── Controllers │ │ ├── Administrator │ │ │ ├── Administrator.php │ │ │ ├── Administrator_Group.php │ │ │ ├── Login.php │ │ │ └── Logout.php │ │ ├── Appearance │ │ │ ├── Admin │ │ │ │ └── Theme.php │ │ │ └── Marketplace │ │ │ │ ├── Layout.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Widget.php │ │ │ │ └── Widgets │ │ │ │ ├── Category.php │ │ │ │ ├── HTML_Content.php │ │ │ │ ├── Link.php │ │ │ │ ├── Page.php │ │ │ │ ├── Seller_Bestseller_Product.php │ │ │ │ ├── Seller_Category.php │ │ │ │ ├── Seller_Dashboard_Chart.php │ │ │ │ ├── Seller_Dashboard_Latest_Order.php │ │ │ │ ├── Seller_Dashboard_Stat.php │ │ │ │ ├── Seller_Description.php │ │ │ │ ├── Seller_Faq.php │ │ │ │ ├── Seller_Featured_Product.php │ │ │ │ ├── Seller_Latest_Product.php │ │ │ │ ├── Seller_Menu.php │ │ │ │ └── Seller_Special_Product.php │ │ ├── Common │ │ │ ├── Column_Left.php │ │ │ ├── Dashboard.php │ │ │ ├── Footer.php │ │ │ └── Header.php │ │ ├── Component │ │ │ ├── Analytics │ │ │ │ └── Google_Analytics_4.php │ │ │ ├── Component │ │ │ │ ├── Analytics.php │ │ │ │ ├── Order_Total.php │ │ │ │ ├── Payment_Method.php │ │ │ │ └── Shipping_Method.php │ │ │ ├── Order_Total │ │ │ │ ├── Shipping.php │ │ │ │ ├── Sub_Total.php │ │ │ │ └── Total.php │ │ │ ├── Payment_Method │ │ │ │ ├── Bank_Transfer.php │ │ │ │ ├── Cash_On_Delivery.php │ │ │ │ ├── Free_Checkout.php │ │ │ │ └── Wallet.php │ │ │ └── Shipping_Method │ │ │ │ ├── Flat_Rate.php │ │ │ │ ├── Weight_Based.php │ │ │ │ └── Zone_Based.php │ │ ├── Customer │ │ │ ├── Customer.php │ │ │ └── Customer_Group.php │ │ ├── Developer │ │ │ ├── Demo_Manager.php │ │ │ └── Language_Editor.php │ │ ├── File_Manager │ │ │ └── Image_Manager.php │ │ ├── Localisation │ │ │ ├── Country.php │ │ │ ├── Currency.php │ │ │ ├── Geo_Zone.php │ │ │ ├── Language.php │ │ │ ├── Length_Class.php │ │ │ ├── Order_Status.php │ │ │ ├── Weight_Class.php │ │ │ └── Zone.php │ │ ├── Marketplace │ │ │ ├── Category.php │ │ │ └── Order.php │ │ ├── Page │ │ │ └── Page.php │ │ ├── Plugin │ │ │ └── Plugin.php │ │ └── System │ │ │ ├── Error_Log.php │ │ │ ├── Performance.php │ │ │ └── Setting.php │ └── Models │ │ ├── Administrator │ │ ├── Administrator_Group_Model.php │ │ └── Administrator_Model.php │ │ ├── Appearance │ │ ├── Layout_Model.php │ │ └── Widget_Model.php │ │ ├── Component │ │ └── Component_Model.php │ │ ├── Customer │ │ ├── Customer_Group_model.php │ │ ├── Customer_Model.php │ │ └── Wallet_Model.php │ │ ├── Developer │ │ └── Demo_Manager_Model.php │ │ ├── Extension │ │ └── Extension_Model.php │ │ ├── Localisation │ │ ├── Country_Model.php │ │ ├── Currency_Model.php │ │ ├── Geo_Zone_Model.php │ │ ├── Language_Model.php │ │ ├── Length_Class_Model.php │ │ ├── Order_Status_Model.php │ │ ├── Weight_Class_Model.php │ │ └── Zone_Model.php │ │ ├── Marketplace │ │ ├── Category_Model.php │ │ ├── Order_Model.php │ │ ├── Product_Model.php │ │ └── Seller_Model.php │ │ ├── Page │ │ └── Page_Model.php │ │ └── System │ │ └── Setting_Model.php └── marketplace │ ├── Config │ └── Routes.php │ ├── Controllers │ ├── Account │ │ ├── Account.php │ │ ├── Address.php │ │ ├── Login.php │ │ ├── Logout.php │ │ ├── Order.php │ │ ├── Product_Download.php │ │ ├── Product_Review.php │ │ ├── Profile.php │ │ ├── Register.php │ │ ├── Reset_Password.php │ │ ├── Wallet.php │ │ └── Wishlist.php │ ├── Appearance │ │ └── Marketplace │ │ │ └── Widgets │ │ │ ├── Category.php │ │ │ ├── HTML_Content.php │ │ │ ├── Link.php │ │ │ ├── Page.php │ │ │ ├── Seller_Bestseller_Product.php │ │ │ ├── Seller_Category.php │ │ │ ├── Seller_Dashboard_Chart.php │ │ │ ├── Seller_Dashboard_Latest_Order.php │ │ │ ├── Seller_Dashboard_Stat.php │ │ │ ├── Seller_Description.php │ │ │ ├── Seller_Faq.php │ │ │ ├── Seller_Featured_Product.php │ │ │ ├── Seller_Latest_Product.php │ │ │ ├── Seller_Menu.php │ │ │ └── Seller_Special_Product.php │ ├── Checkout │ │ ├── Cart.php │ │ ├── Checkout.php │ │ └── Success.php │ ├── Common │ │ ├── Cart.php │ │ ├── Currency.php │ │ ├── Footer.php │ │ ├── Header.php │ │ ├── Home.php │ │ ├── Language.php │ │ ├── Offcanvas_Left.php │ │ ├── Offcanvas_Right.php │ │ ├── Search.php │ │ ├── Wallet.php │ │ └── Widget.php │ ├── Component │ │ ├── Analytics │ │ │ └── Google_Analytics_4.php │ │ └── Payment_Method │ │ │ ├── Bank_Transfer.php │ │ │ ├── Cash_On_Delivery.php │ │ │ ├── Free_Checkout.php │ │ │ └── Wallet.php │ ├── Localisation │ │ └── Country.php │ ├── Page │ │ └── Page.php │ ├── Product │ │ ├── Category.php │ │ ├── Customer_Question.php │ │ ├── Product.php │ │ └── Search.php │ ├── Seller │ │ ├── Component │ │ │ └── Shipping_Method.php │ │ ├── Dashboard.php │ │ ├── Edit.php │ │ ├── Localisation │ │ │ └── Geo_Zone.php │ │ ├── Option.php │ │ ├── Order.php │ │ ├── Product.php │ │ ├── Product_Question.php │ │ ├── Register.php │ │ ├── Search.php │ │ ├── Seller.php │ │ ├── Seller_Category.php │ │ ├── Seller_Faq.php │ │ └── Shipping_Method │ │ │ ├── Flat_Rate.php │ │ │ ├── Weight_Based.php │ │ │ └── Zone_Based.php │ └── Tool │ │ └── Upload.php │ └── Models │ ├── Account │ ├── Download_Model.php │ ├── Order_Model.php │ ├── Product_Download_Model.php │ ├── Product_Review_Model.php │ ├── Reset_Password_Model.php │ ├── Wallet_Model.php │ └── Wallet_Temp_Model.php │ ├── Appearance │ ├── Layout_Model.php │ ├── Widget_Model.php │ └── Widgets │ │ └── Seller_Dashboard_Chart_Model.php │ ├── Checkout │ └── Order_Model.php │ ├── Component │ ├── Component_Model.php │ ├── Order_Total │ │ ├── Shipping_Model.php │ │ ├── Sub_Total_Model.php │ │ └── Total_Model.php │ ├── Payment_Method │ │ ├── Bank_Transfer_Model.php │ │ ├── Cash_On_Delivery_Model.php │ │ ├── Free_Checkout_Model.php │ │ └── Wallet_Model.php │ └── Shipping_Method │ │ ├── Flat_Rate_Model.php │ │ ├── Weight_Based_Model.php │ │ └── Zone_Based_Model.php │ ├── Customer │ ├── Customer_Address_Model.php │ └── Customer_Model.php │ ├── Localisation │ ├── Country_Model.php │ ├── Currency_Model.php │ ├── Geo_Zone_Model.php │ ├── Language_Model.php │ ├── Order_Status_Model.php │ ├── Weight_Class_Model.php │ └── Zone_Model.php │ ├── Page │ └── Page_Model.php │ ├── Product │ ├── Category_Model.php │ ├── Option_Model.php │ ├── Product_Model.php │ ├── Product_Question_Model.php │ └── Product_Review_Model.php │ ├── Seller │ ├── Geo_Zone_Model.php │ ├── Option_Model.php │ ├── Order_Model.php │ ├── Product_Model.php │ ├── Product_Question_Model.php │ ├── Seller_Category_Model.php │ ├── Seller_Faq_Model.php │ ├── Seller_Model.php │ └── Shipping_Method_Model.php │ └── System │ └── Setting_Model.php ├── plugins └── com_example │ └── Widget_Blank │ ├── Config │ └── Routes.php │ ├── Controllers │ ├── Admin │ │ ├── Appearance │ │ │ └── Marketplace │ │ │ │ └── Widgets │ │ │ │ └── Blank.php │ │ └── Plugin │ │ │ └── Plugin.php │ └── Marketplace │ │ └── Appearance │ │ └── Marketplace │ │ └── Widgets │ │ └── Blank.php │ ├── Language │ └── en │ │ ├── Heading.php │ │ └── Text.php │ ├── Views │ ├── Admin │ │ └── Appearance │ │ │ └── Marketplace │ │ │ └── Widgets │ │ │ └── blank.php │ └── Marketplace │ │ └── Appearance │ │ └── Marketplace │ │ └── Widgets │ │ └── blank.php │ └── assets │ └── admin │ └── plugins │ └── com_example │ └── Widget_Blank │ └── images │ └── widget_blank.png ├── public ├── .htaccess ├── assets │ ├── admin │ │ └── theme │ │ │ └── com_openmvm │ │ │ └── Basic │ │ │ ├── css │ │ │ └── basic.css │ │ │ ├── images │ │ │ └── basic.png │ │ │ └── js │ │ │ └── basic.js │ ├── flags │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── an.png │ │ ├── ao.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── catalonia.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cs.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── en.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── europeanunion.png │ │ ├── fam.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── scotland.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── um.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wales.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ ├── images │ │ ├── cache │ │ │ └── index.html │ │ ├── logo-openmvm.png │ │ ├── marketplace │ │ │ ├── customers │ │ │ │ └── index.html │ │ │ ├── favicon-openmvm.png │ │ │ ├── logo-openmvm.png │ │ │ └── no_image.png │ │ ├── no_image.png │ │ ├── plugin_not_installed.png │ │ └── theme_not_installed.png │ ├── marketplace │ │ └── theme │ │ │ └── com_openmvm │ │ │ └── Basic │ │ │ ├── css │ │ │ └── basic.css │ │ │ ├── images │ │ │ └── basic.png │ │ │ └── js │ │ │ └── basic.js │ └── plugins │ │ ├── bootstrap-5.3.0-alpha1-dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── chart.js-4.1.0 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── auto │ │ │ ├── auto.cjs │ │ │ ├── auto.d.ts │ │ │ ├── auto.js │ │ │ └── package.json │ │ ├── dist │ │ │ ├── chart.cjs │ │ │ ├── chart.cjs.map │ │ │ ├── chart.js │ │ │ ├── chart.js.map │ │ │ ├── chart.umd.js │ │ │ ├── chart.umd.js.map │ │ │ ├── chunks │ │ │ │ ├── helpers.segment.cjs │ │ │ │ ├── helpers.segment.cjs.map │ │ │ │ ├── helpers.segment.js │ │ │ │ └── helpers.segment.js.map │ │ │ ├── controllers │ │ │ │ ├── controller.bar.d.ts │ │ │ │ ├── controller.bubble.d.ts │ │ │ │ ├── controller.doughnut.d.ts │ │ │ │ ├── controller.line.d.ts │ │ │ │ ├── controller.pie.d.ts │ │ │ │ ├── controller.polarArea.d.ts │ │ │ │ ├── controller.radar.d.ts │ │ │ │ ├── controller.scatter.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── core │ │ │ │ ├── core.adapters.d.ts │ │ │ │ ├── core.animation.d.ts │ │ │ │ ├── core.animations.d.ts │ │ │ │ ├── core.animations.defaults.d.ts │ │ │ │ ├── core.animator.d.ts │ │ │ │ ├── core.config.d.ts │ │ │ │ ├── core.controller.d.ts │ │ │ │ ├── core.datasetController.d.ts │ │ │ │ ├── core.defaults.d.ts │ │ │ │ ├── core.element.d.ts │ │ │ │ ├── core.interaction.d.ts │ │ │ │ ├── core.layouts.d.ts │ │ │ │ ├── core.layouts.defaults.d.ts │ │ │ │ ├── core.plugins.d.ts │ │ │ │ ├── core.registry.d.ts │ │ │ │ ├── core.scale.autoskip.d.ts │ │ │ │ ├── core.scale.d.ts │ │ │ │ ├── core.scale.defaults.d.ts │ │ │ │ ├── core.ticks.d.ts │ │ │ │ ├── core.typedRegistry.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── elements │ │ │ │ ├── element.arc.d.ts │ │ │ │ ├── element.bar.d.ts │ │ │ │ ├── element.line.d.ts │ │ │ │ ├── element.point.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── helpers.cjs │ │ │ ├── helpers.cjs.map │ │ │ ├── helpers.js │ │ │ ├── helpers.js.map │ │ │ ├── helpers │ │ │ │ ├── helpers.canvas.d.ts │ │ │ │ ├── helpers.collection.d.ts │ │ │ │ ├── helpers.color.d.ts │ │ │ │ ├── helpers.config.d.ts │ │ │ │ ├── helpers.core.d.ts │ │ │ │ ├── helpers.curve.d.ts │ │ │ │ ├── helpers.dom.d.ts │ │ │ │ ├── helpers.easing.d.ts │ │ │ │ ├── helpers.extras.d.ts │ │ │ │ ├── helpers.interpolation.d.ts │ │ │ │ ├── helpers.intl.d.ts │ │ │ │ ├── helpers.math.d.ts │ │ │ │ ├── helpers.options.d.ts │ │ │ │ ├── helpers.rtl.d.ts │ │ │ │ ├── helpers.segment.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── types.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index.umd.d.ts │ │ │ ├── platform │ │ │ │ ├── index.d.ts │ │ │ │ ├── platform.base.d.ts │ │ │ │ ├── platform.basic.d.ts │ │ │ │ └── platform.dom.d.ts │ │ │ ├── plugins │ │ │ │ ├── index.d.ts │ │ │ │ ├── plugin.colors.d.ts │ │ │ │ ├── plugin.decimation.d.ts │ │ │ │ ├── plugin.filler │ │ │ │ │ ├── filler.drawing.d.ts │ │ │ │ │ ├── filler.helper.d.ts │ │ │ │ │ ├── filler.options.d.ts │ │ │ │ │ ├── filler.segment.d.ts │ │ │ │ │ ├── filler.target.d.ts │ │ │ │ │ ├── filler.target.stack.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── simpleArc.d.ts │ │ │ │ ├── plugin.legend.d.ts │ │ │ │ ├── plugin.subtitle.d.ts │ │ │ │ ├── plugin.title.d.ts │ │ │ │ └── plugin.tooltip.d.ts │ │ │ ├── scales │ │ │ │ ├── index.d.ts │ │ │ │ ├── scale.category.d.ts │ │ │ │ ├── scale.linear.d.ts │ │ │ │ ├── scale.linearbase.d.ts │ │ │ │ ├── scale.logarithmic.d.ts │ │ │ │ ├── scale.radialLinear.d.ts │ │ │ │ ├── scale.time.d.ts │ │ │ │ └── scale.timeseries.d.ts │ │ │ └── types.d.ts │ │ ├── helpers │ │ │ ├── helpers.cjs │ │ │ ├── helpers.d.ts │ │ │ ├── helpers.js │ │ │ └── package.json │ │ ├── package.json │ │ └── types │ │ │ ├── animation.d.ts │ │ │ ├── basic.d.ts │ │ │ ├── color.d.ts │ │ │ ├── geometric.d.ts │ │ │ ├── helpers │ │ │ ├── helpers.canvas.d.ts │ │ │ ├── helpers.segment.d.ts │ │ │ └── index.d.ts │ │ │ ├── index.d.ts │ │ │ ├── layout.d.ts │ │ │ └── utils.d.ts │ │ ├── fontawesome-free-6.2.1-web │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-font-face.css │ │ │ ├── v4-font-face.min.css │ │ │ ├── v4-shims.css │ │ │ ├── v4-shims.min.css │ │ │ ├── v5-font-face.css │ │ │ └── v5-font-face.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ │ ├── jquery │ │ ├── jquery-3.6.1.min.js │ │ ├── jquery-json-2.6.0 │ │ │ └── jquery.json.min.js │ │ ├── jquery-serializejson │ │ │ ├── jquery.serializejson.js │ │ │ └── jquery.serializejson.min.js │ │ └── jquery-ui-1.13.2 │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ │ ├── 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 │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ ├── jquery-ui.theme.min.css │ │ │ └── package.json │ │ ├── swipenav │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── css │ │ │ ├── jquery-swipe-nav.css │ │ │ └── reset.css │ │ ├── img │ │ │ └── list-icon.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery-swipe-nav-plugin.js │ │ │ └── jquery-swipe-nav-plugin.min.js │ │ ├── license.html │ │ └── source.html │ │ ├── swiper-8.4.4 │ │ ├── swiper-bundle.min.css │ │ └── swiper-bundle.min.js │ │ └── tinymce_6.2.0 │ │ └── js │ │ └── tinymce │ │ ├── icons │ │ └── default │ │ │ └── icons.min.js │ │ ├── langs │ │ └── README.md │ │ ├── license.txt │ │ ├── models │ │ └── dom │ │ │ └── model.min.js │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── js │ │ │ │ ├── emojiimages.js │ │ │ │ ├── emojiimages.min.js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── help │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ └── content.min.css │ │ │ ├── default │ │ │ │ └── content.min.css │ │ │ ├── document │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5 │ │ │ │ └── content.min.css │ │ │ └── writer │ │ │ │ └── content.min.css │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ │ ├── oxide │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ │ ├── tinymce-5-dark │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ │ └── tinymce-5 │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ ├── themes │ │ └── silver │ │ │ └── theme.min.js │ │ ├── tinymce.d.ts │ │ └── tinymce.min.js ├── favicon.ico ├── index.php ├── install │ ├── app │ │ ├── .htaccess │ │ ├── Common.php │ │ ├── Config │ │ │ ├── App.php │ │ │ ├── Autoload.php │ │ │ ├── Boot │ │ │ │ ├── development.php │ │ │ │ ├── production.php │ │ │ │ └── testing.php │ │ │ ├── CURLRequest.php │ │ │ ├── Cache.php │ │ │ ├── Constants.php │ │ │ ├── ContentSecurityPolicy.php │ │ │ ├── Cookie.php │ │ │ ├── Database.php │ │ │ ├── DocTypes.php │ │ │ ├── Email.php │ │ │ ├── Encryption.php │ │ │ ├── Events.php │ │ │ ├── Exceptions.php │ │ │ ├── Feature.php │ │ │ ├── Filters.php │ │ │ ├── ForeignCharacters.php │ │ │ ├── Format.php │ │ │ ├── Generators.php │ │ │ ├── Honeypot.php │ │ │ ├── Images.php │ │ │ ├── Kint.php │ │ │ ├── Logger.php │ │ │ ├── Migrations.php │ │ │ ├── Mimes.php │ │ │ ├── Modules.php │ │ │ ├── Pager.php │ │ │ ├── Paths.php │ │ │ ├── Publisher.php │ │ │ ├── Routes.php │ │ │ ├── Security.php │ │ │ ├── Services.php │ │ │ ├── Toolbar.php │ │ │ ├── UserAgents.php │ │ │ ├── Validation.php │ │ │ └── View.php │ │ ├── Controllers │ │ │ ├── BaseController.php │ │ │ ├── Env.php │ │ │ ├── Footer.php │ │ │ ├── Header.php │ │ │ ├── Home.php │ │ │ ├── Install.php │ │ │ └── Menu.php │ │ ├── Database │ │ │ ├── Migrations │ │ │ │ └── .gitkeep │ │ │ └── Seeds │ │ │ │ └── .gitkeep │ │ ├── Filters │ │ │ └── .gitkeep │ │ ├── Helpers │ │ │ └── .gitkeep │ │ ├── Language │ │ │ ├── .gitkeep │ │ │ └── en │ │ │ │ ├── Button.php │ │ │ │ ├── Column.php │ │ │ │ ├── Entry.php │ │ │ │ ├── Error.php │ │ │ │ ├── Heading.php │ │ │ │ ├── Success.php │ │ │ │ ├── Text.php │ │ │ │ └── Validation.php │ │ ├── Libraries │ │ │ └── .gitkeep │ │ ├── Models │ │ │ ├── .gitkeep │ │ │ └── Install_Model.php │ │ ├── ThirdParty │ │ │ └── .gitkeep │ │ ├── Views │ │ │ ├── env.php │ │ │ ├── errors │ │ │ │ ├── cli │ │ │ │ │ ├── error_404.php │ │ │ │ │ ├── error_exception.php │ │ │ │ │ └── production.php │ │ │ │ └── html │ │ │ │ │ ├── debug.css │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── error_404.php │ │ │ │ │ ├── error_exception.php │ │ │ │ │ └── production.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── install.php │ │ │ ├── install_configuration.php │ │ │ ├── install_finish.php │ │ │ ├── install_license_agreement.php │ │ │ ├── install_pre_installation.php │ │ │ ├── menu.php │ │ │ └── welcome_message.php │ │ └── index.html │ ├── env │ ├── openmvm.sql │ ├── public │ │ ├── .htaccess │ │ ├── favicon.ico │ │ ├── index.php │ │ └── robots.txt │ ├── system │ │ ├── .htaccess │ │ ├── API │ │ │ └── ResponseTrait.php │ │ ├── Autoloader │ │ │ ├── Autoloader.php │ │ │ └── FileLocator.php │ │ ├── BaseModel.php │ │ ├── CLI │ │ │ ├── BaseCommand.php │ │ │ ├── CLI.php │ │ │ ├── CommandRunner.php │ │ │ ├── Commands.php │ │ │ ├── Console.php │ │ │ ├── Exceptions │ │ │ │ └── CLIException.php │ │ │ └── GeneratorTrait.php │ │ ├── Cache │ │ │ ├── CacheFactory.php │ │ │ ├── CacheInterface.php │ │ │ ├── Exceptions │ │ │ │ ├── CacheException.php │ │ │ │ └── ExceptionInterface.php │ │ │ └── Handlers │ │ │ │ ├── BaseHandler.php │ │ │ │ ├── DummyHandler.php │ │ │ │ ├── FileHandler.php │ │ │ │ ├── MemcachedHandler.php │ │ │ │ ├── PredisHandler.php │ │ │ │ ├── RedisHandler.php │ │ │ │ └── WincacheHandler.php │ │ ├── CodeIgniter.php │ │ ├── Commands │ │ │ ├── Cache │ │ │ │ ├── ClearCache.php │ │ │ │ └── InfoCache.php │ │ │ ├── Database │ │ │ │ ├── CreateDatabase.php │ │ │ │ ├── Migrate.php │ │ │ │ ├── MigrateRefresh.php │ │ │ │ ├── MigrateRollback.php │ │ │ │ ├── MigrateStatus.php │ │ │ │ ├── Seed.php │ │ │ │ └── ShowTableInfo.php │ │ │ ├── Encryption │ │ │ │ └── GenerateKey.php │ │ │ ├── Generators │ │ │ │ ├── CommandGenerator.php │ │ │ │ ├── ConfigGenerator.php │ │ │ │ ├── ControllerGenerator.php │ │ │ │ ├── EntityGenerator.php │ │ │ │ ├── FilterGenerator.php │ │ │ │ ├── MigrateCreate.php │ │ │ │ ├── MigrationGenerator.php │ │ │ │ ├── ModelGenerator.php │ │ │ │ ├── ScaffoldGenerator.php │ │ │ │ ├── SeederGenerator.php │ │ │ │ ├── SessionMigrationGenerator.php │ │ │ │ ├── ValidationGenerator.php │ │ │ │ └── Views │ │ │ │ │ ├── command.tpl.php │ │ │ │ │ ├── config.tpl.php │ │ │ │ │ ├── controller.tpl.php │ │ │ │ │ ├── entity.tpl.php │ │ │ │ │ ├── filter.tpl.php │ │ │ │ │ ├── migration.tpl.php │ │ │ │ │ ├── model.tpl.php │ │ │ │ │ ├── seeder.tpl.php │ │ │ │ │ └── validation.tpl.php │ │ │ ├── Help.php │ │ │ ├── Housekeeping │ │ │ │ ├── ClearDebugbar.php │ │ │ │ └── ClearLogs.php │ │ │ ├── ListCommands.php │ │ │ ├── Server │ │ │ │ ├── Serve.php │ │ │ │ └── rewrite.php │ │ │ └── Utilities │ │ │ │ ├── Environment.php │ │ │ │ ├── Namespaces.php │ │ │ │ ├── Publish.php │ │ │ │ ├── Routes.php │ │ │ │ └── Routes │ │ │ │ ├── AutoRouteCollector.php │ │ │ │ ├── AutoRouterImproved │ │ │ │ ├── AutoRouteCollector.php │ │ │ │ └── ControllerMethodReader.php │ │ │ │ ├── ControllerFinder.php │ │ │ │ ├── ControllerMethodReader.php │ │ │ │ ├── FilterCollector.php │ │ │ │ ├── FilterFinder.php │ │ │ │ └── SampleURIGenerator.php │ │ ├── Common.php │ │ ├── ComposerScripts.php │ │ ├── Config │ │ │ ├── AutoloadConfig.php │ │ │ ├── BaseConfig.php │ │ │ ├── BaseService.php │ │ │ ├── Config.php │ │ │ ├── DotEnv.php │ │ │ ├── Factories.php │ │ │ ├── Factory.php │ │ │ ├── ForeignCharacters.php │ │ │ ├── Publisher.php │ │ │ ├── Routes.php │ │ │ ├── Services.php │ │ │ └── View.php │ │ ├── Controller.php │ │ ├── Cookie │ │ │ ├── CloneableCookieInterface.php │ │ │ ├── Cookie.php │ │ │ ├── CookieInterface.php │ │ │ ├── CookieStore.php │ │ │ └── Exceptions │ │ │ │ └── CookieException.php │ │ ├── Database │ │ │ ├── BaseBuilder.php │ │ │ ├── BaseConnection.php │ │ │ ├── BasePreparedQuery.php │ │ │ ├── BaseResult.php │ │ │ ├── BaseUtils.php │ │ │ ├── Config.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── Database.php │ │ │ ├── Exceptions │ │ │ │ ├── DataException.php │ │ │ │ ├── DatabaseException.php │ │ │ │ └── ExceptionInterface.php │ │ │ ├── Forge.php │ │ │ ├── Migration.php │ │ │ ├── MigrationRunner.php │ │ │ ├── ModelFactory.php │ │ │ ├── MySQLi │ │ │ │ ├── Builder.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Forge.php │ │ │ │ ├── PreparedQuery.php │ │ │ │ ├── Result.php │ │ │ │ └── Utils.php │ │ │ ├── OCI8 │ │ │ │ ├── Builder.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Forge.php │ │ │ │ ├── PreparedQuery.php │ │ │ │ ├── Result.php │ │ │ │ └── Utils.php │ │ │ ├── Postgre │ │ │ │ ├── Builder.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Forge.php │ │ │ │ ├── PreparedQuery.php │ │ │ │ ├── Result.php │ │ │ │ └── Utils.php │ │ │ ├── PreparedQueryInterface.php │ │ │ ├── Query.php │ │ │ ├── QueryInterface.php │ │ │ ├── RawSql.php │ │ │ ├── ResultInterface.php │ │ │ ├── SQLSRV │ │ │ │ ├── Builder.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Forge.php │ │ │ │ ├── PreparedQuery.php │ │ │ │ ├── Result.php │ │ │ │ └── Utils.php │ │ │ ├── SQLite3 │ │ │ │ ├── Builder.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Forge.php │ │ │ │ ├── PreparedQuery.php │ │ │ │ ├── Result.php │ │ │ │ ├── Table.php │ │ │ │ └── Utils.php │ │ │ └── Seeder.php │ │ ├── Debug │ │ │ ├── Exceptions.php │ │ │ ├── Iterator.php │ │ │ ├── Timer.php │ │ │ ├── Toolbar.php │ │ │ └── Toolbar │ │ │ │ ├── Collectors │ │ │ │ ├── BaseCollector.php │ │ │ │ ├── Config.php │ │ │ │ ├── Database.php │ │ │ │ ├── Events.php │ │ │ │ ├── Files.php │ │ │ │ ├── History.php │ │ │ │ ├── Logs.php │ │ │ │ ├── Routes.php │ │ │ │ ├── Timers.php │ │ │ │ └── Views.php │ │ │ │ └── Views │ │ │ │ ├── _config.tpl │ │ │ │ ├── _database.tpl │ │ │ │ ├── _events.tpl │ │ │ │ ├── _files.tpl │ │ │ │ ├── _history.tpl │ │ │ │ ├── _logs.tpl │ │ │ │ ├── _routes.tpl │ │ │ │ ├── toolbar.css │ │ │ │ ├── toolbar.js │ │ │ │ ├── toolbar.tpl.php │ │ │ │ └── toolbarloader.js │ │ ├── Email │ │ │ └── Email.php │ │ ├── Encryption │ │ │ ├── EncrypterInterface.php │ │ │ ├── Encryption.php │ │ │ ├── Exceptions │ │ │ │ └── EncryptionException.php │ │ │ └── Handlers │ │ │ │ ├── BaseHandler.php │ │ │ │ ├── OpenSSLHandler.php │ │ │ │ └── SodiumHandler.php │ │ ├── Entity.php │ │ ├── Entity │ │ │ ├── Cast │ │ │ │ ├── ArrayCast.php │ │ │ │ ├── BaseCast.php │ │ │ │ ├── BooleanCast.php │ │ │ │ ├── CSVCast.php │ │ │ │ ├── CastInterface.php │ │ │ │ ├── DatetimeCast.php │ │ │ │ ├── FloatCast.php │ │ │ │ ├── IntegerCast.php │ │ │ │ ├── JsonCast.php │ │ │ │ ├── ObjectCast.php │ │ │ │ ├── StringCast.php │ │ │ │ ├── TimestampCast.php │ │ │ │ └── URICast.php │ │ │ ├── Entity.php │ │ │ └── Exceptions │ │ │ │ └── CastException.php │ │ ├── Events │ │ │ └── Events.php │ │ ├── Exceptions │ │ │ ├── AlertError.php │ │ │ ├── CastException.php │ │ │ ├── ConfigException.php │ │ │ ├── CriticalError.php │ │ │ ├── DebugTraceableTrait.php │ │ │ ├── DownloadException.php │ │ │ ├── EmergencyError.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── FrameworkException.php │ │ │ ├── ModelException.php │ │ │ ├── PageNotFoundException.php │ │ │ └── TestException.php │ │ ├── Files │ │ │ ├── Exceptions │ │ │ │ ├── FileException.php │ │ │ │ └── FileNotFoundException.php │ │ │ ├── File.php │ │ │ └── FileCollection.php │ │ ├── Filters │ │ │ ├── CSRF.php │ │ │ ├── DebugToolbar.php │ │ │ ├── Exceptions │ │ │ │ └── FilterException.php │ │ │ ├── FilterInterface.php │ │ │ ├── Filters.php │ │ │ ├── Honeypot.php │ │ │ ├── InvalidChars.php │ │ │ └── SecureHeaders.php │ │ ├── Format │ │ │ ├── Exceptions │ │ │ │ └── FormatException.php │ │ │ ├── Format.php │ │ │ ├── FormatterInterface.php │ │ │ ├── JSONFormatter.php │ │ │ └── XMLFormatter.php │ │ ├── HTTP │ │ │ ├── CLIRequest.php │ │ │ ├── CURLRequest.php │ │ │ ├── ContentSecurityPolicy.php │ │ │ ├── DownloadResponse.php │ │ │ ├── Exceptions │ │ │ │ └── HTTPException.php │ │ │ ├── Files │ │ │ │ ├── FileCollection.php │ │ │ │ ├── UploadedFile.php │ │ │ │ └── UploadedFileInterface.php │ │ │ ├── Header.php │ │ │ ├── IncomingRequest.php │ │ │ ├── Message.php │ │ │ ├── MessageInterface.php │ │ │ ├── MessageTrait.php │ │ │ ├── Negotiate.php │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── RequestInterface.php │ │ │ ├── RequestTrait.php │ │ │ ├── Response.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ResponseTrait.php │ │ │ ├── URI.php │ │ │ └── UserAgent.php │ │ ├── Helpers │ │ │ ├── array_helper.php │ │ │ ├── cookie_helper.php │ │ │ ├── date_helper.php │ │ │ ├── filesystem_helper.php │ │ │ ├── form_helper.php │ │ │ ├── html_helper.php │ │ │ ├── inflector_helper.php │ │ │ ├── number_helper.php │ │ │ ├── security_helper.php │ │ │ ├── test_helper.php │ │ │ ├── text_helper.php │ │ │ ├── url_helper.php │ │ │ └── xml_helper.php │ │ ├── Honeypot │ │ │ ├── Exceptions │ │ │ │ └── HoneypotException.php │ │ │ └── Honeypot.php │ │ ├── I18n │ │ │ ├── Exceptions │ │ │ │ └── I18nException.php │ │ │ ├── Time.php │ │ │ └── TimeDifference.php │ │ ├── Images │ │ │ ├── Exceptions │ │ │ │ └── ImageException.php │ │ │ ├── Handlers │ │ │ │ ├── BaseHandler.php │ │ │ │ ├── GDHandler.php │ │ │ │ └── ImageMagickHandler.php │ │ │ ├── Image.php │ │ │ └── ImageHandlerInterface.php │ │ ├── Language │ │ │ ├── Language.php │ │ │ └── en │ │ │ │ ├── CLI.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Cast.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Core.php │ │ │ │ ├── Database.php │ │ │ │ ├── Email.php │ │ │ │ ├── Encryption.php │ │ │ │ ├── Fabricator.php │ │ │ │ ├── Files.php │ │ │ │ ├── Filters.php │ │ │ │ ├── Format.php │ │ │ │ ├── HTTP.php │ │ │ │ ├── Images.php │ │ │ │ ├── Log.php │ │ │ │ ├── Migrations.php │ │ │ │ ├── Number.php │ │ │ │ ├── Pager.php │ │ │ │ ├── Publisher.php │ │ │ │ ├── RESTful.php │ │ │ │ ├── Router.php │ │ │ │ ├── Security.php │ │ │ │ ├── Session.php │ │ │ │ ├── Test.php │ │ │ │ ├── Time.php │ │ │ │ ├── Validation.php │ │ │ │ └── View.php │ │ ├── Log │ │ │ ├── Exceptions │ │ │ │ └── LogException.php │ │ │ ├── Handlers │ │ │ │ ├── BaseHandler.php │ │ │ │ ├── ChromeLoggerHandler.php │ │ │ │ ├── ErrorlogHandler.php │ │ │ │ ├── FileHandler.php │ │ │ │ └── HandlerInterface.php │ │ │ └── Logger.php │ │ ├── Model.php │ │ ├── Modules │ │ │ └── Modules.php │ │ ├── Pager │ │ │ ├── Exceptions │ │ │ │ └── PagerException.php │ │ │ ├── Pager.php │ │ │ ├── PagerInterface.php │ │ │ ├── PagerRenderer.php │ │ │ └── Views │ │ │ │ ├── default_full.php │ │ │ │ ├── default_head.php │ │ │ │ └── default_simple.php │ │ ├── Publisher │ │ │ ├── Exceptions │ │ │ │ └── PublisherException.php │ │ │ └── Publisher.php │ │ ├── RESTful │ │ │ ├── BaseResource.php │ │ │ ├── ResourceController.php │ │ │ └── ResourcePresenter.php │ │ ├── Router │ │ │ ├── AutoRouter.php │ │ │ ├── AutoRouterImproved.php │ │ │ ├── AutoRouterInterface.php │ │ │ ├── Exceptions │ │ │ │ ├── RedirectException.php │ │ │ │ └── RouterException.php │ │ │ ├── RouteCollection.php │ │ │ ├── RouteCollectionInterface.php │ │ │ ├── Router.php │ │ │ └── RouterInterface.php │ │ ├── Security │ │ │ ├── Exceptions │ │ │ │ └── SecurityException.php │ │ │ ├── Security.php │ │ │ └── SecurityInterface.php │ │ ├── Session │ │ │ ├── Exceptions │ │ │ │ └── SessionException.php │ │ │ ├── Handlers │ │ │ │ ├── ArrayHandler.php │ │ │ │ ├── BaseHandler.php │ │ │ │ ├── Database │ │ │ │ │ ├── MySQLiHandler.php │ │ │ │ │ └── PostgreHandler.php │ │ │ │ ├── DatabaseHandler.php │ │ │ │ ├── FileHandler.php │ │ │ │ ├── MemcachedHandler.php │ │ │ │ └── RedisHandler.php │ │ │ ├── Session.php │ │ │ └── SessionInterface.php │ │ ├── Test │ │ │ ├── CIDatabaseTestCase.php │ │ │ ├── CIUnitTestCase.php │ │ │ ├── ConfigFromArrayTrait.php │ │ │ ├── Constraints │ │ │ │ └── SeeInDatabase.php │ │ │ ├── ControllerResponse.php │ │ │ ├── ControllerTestTrait.php │ │ │ ├── ControllerTester.php │ │ │ ├── DOMParser.php │ │ │ ├── DatabaseTestTrait.php │ │ │ ├── Fabricator.php │ │ │ ├── FeatureResponse.php │ │ │ ├── FeatureTestCase.php │ │ │ ├── FeatureTestTrait.php │ │ │ ├── FilterTestTrait.php │ │ │ ├── Filters │ │ │ │ └── CITestStreamFilter.php │ │ │ ├── Interfaces │ │ │ │ └── FabricatorModel.php │ │ │ ├── Mock │ │ │ │ ├── MockAppConfig.php │ │ │ │ ├── MockAutoload.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockCLIConfig.php │ │ │ │ ├── MockCURLRequest.php │ │ │ │ ├── MockCache.php │ │ │ │ ├── MockCodeIgniter.php │ │ │ │ ├── MockCommon.php │ │ │ │ ├── MockConnection.php │ │ │ │ ├── MockEmail.php │ │ │ │ ├── MockEvents.php │ │ │ │ ├── MockFileLogger.php │ │ │ │ ├── MockIncomingRequest.php │ │ │ │ ├── MockLanguage.php │ │ │ │ ├── MockLogger.php │ │ │ │ ├── MockQuery.php │ │ │ │ ├── MockResourceController.php │ │ │ │ ├── MockResourcePresenter.php │ │ │ │ ├── MockResponse.php │ │ │ │ ├── MockResult.php │ │ │ │ ├── MockSecurity.php │ │ │ │ ├── MockSecurityConfig.php │ │ │ │ ├── MockServices.php │ │ │ │ ├── MockSession.php │ │ │ │ └── MockTable.php │ │ │ ├── ReflectionHelper.php │ │ │ ├── TestLogger.php │ │ │ ├── TestResponse.php │ │ │ └── bootstrap.php │ │ ├── ThirdParty │ │ │ ├── Escaper │ │ │ │ ├── Escaper.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ └── LICENSE.md │ │ │ ├── Kint │ │ │ │ ├── CallFinder.php │ │ │ │ ├── Kint.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Parser │ │ │ │ │ ├── ArrayLimitPlugin.php │ │ │ │ │ ├── ArrayObjectPlugin.php │ │ │ │ │ ├── Base64Plugin.php │ │ │ │ │ ├── BinaryPlugin.php │ │ │ │ │ ├── BlacklistPlugin.php │ │ │ │ │ ├── ClassMethodsPlugin.php │ │ │ │ │ ├── ClassStaticsPlugin.php │ │ │ │ │ ├── ClosurePlugin.php │ │ │ │ │ ├── ColorPlugin.php │ │ │ │ │ ├── DOMDocumentPlugin.php │ │ │ │ │ ├── DateTimePlugin.php │ │ │ │ │ ├── EnumPlugin.php │ │ │ │ │ ├── FsPathPlugin.php │ │ │ │ │ ├── IteratorPlugin.php │ │ │ │ │ ├── JsonPlugin.php │ │ │ │ │ ├── MicrotimePlugin.php │ │ │ │ │ ├── MysqliPlugin.php │ │ │ │ │ ├── Parser.php │ │ │ │ │ ├── Plugin.php │ │ │ │ │ ├── ProxyPlugin.php │ │ │ │ │ ├── SerializePlugin.php │ │ │ │ │ ├── SimpleXMLElementPlugin.php │ │ │ │ │ ├── SplFileInfoPlugin.php │ │ │ │ │ ├── SplObjectStoragePlugin.php │ │ │ │ │ ├── StreamPlugin.php │ │ │ │ │ ├── TablePlugin.php │ │ │ │ │ ├── ThrowablePlugin.php │ │ │ │ │ ├── TimestampPlugin.php │ │ │ │ │ ├── ToStringPlugin.php │ │ │ │ │ ├── TracePlugin.php │ │ │ │ │ └── XmlPlugin.php │ │ │ │ ├── Renderer │ │ │ │ │ ├── CliRenderer.php │ │ │ │ │ ├── PlainRenderer.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ ├── Rich │ │ │ │ │ │ ├── ArrayLimitPlugin.php │ │ │ │ │ │ ├── BinaryPlugin.php │ │ │ │ │ │ ├── BlacklistPlugin.php │ │ │ │ │ │ ├── CallablePlugin.php │ │ │ │ │ │ ├── ClosurePlugin.php │ │ │ │ │ │ ├── ColorPlugin.php │ │ │ │ │ │ ├── DepthLimitPlugin.php │ │ │ │ │ │ ├── DocstringPlugin.php │ │ │ │ │ │ ├── MicrotimePlugin.php │ │ │ │ │ │ ├── Plugin.php │ │ │ │ │ │ ├── PluginInterface.php │ │ │ │ │ │ ├── RecursionPlugin.php │ │ │ │ │ │ ├── SimpleXMLElementPlugin.php │ │ │ │ │ │ ├── SourcePlugin.php │ │ │ │ │ │ ├── TabPluginInterface.php │ │ │ │ │ │ ├── TablePlugin.php │ │ │ │ │ │ ├── TimestampPlugin.php │ │ │ │ │ │ ├── TraceFramePlugin.php │ │ │ │ │ │ └── ValuePluginInterface.php │ │ │ │ │ ├── RichRenderer.php │ │ │ │ │ ├── Text │ │ │ │ │ │ ├── ArrayLimitPlugin.php │ │ │ │ │ │ ├── BlacklistPlugin.php │ │ │ │ │ │ ├── DepthLimitPlugin.php │ │ │ │ │ │ ├── EnumPlugin.php │ │ │ │ │ │ ├── MicrotimePlugin.php │ │ │ │ │ │ ├── Plugin.php │ │ │ │ │ │ ├── RecursionPlugin.php │ │ │ │ │ │ └── TracePlugin.php │ │ │ │ │ └── TextRenderer.php │ │ │ │ ├── Utils.php │ │ │ │ ├── Zval │ │ │ │ │ ├── BlobValue.php │ │ │ │ │ ├── ClosureValue.php │ │ │ │ │ ├── DateTimeValue.php │ │ │ │ │ ├── EnumValue.php │ │ │ │ │ ├── InstanceValue.php │ │ │ │ │ ├── MethodValue.php │ │ │ │ │ ├── ParameterValue.php │ │ │ │ │ ├── Representation │ │ │ │ │ │ ├── ColorRepresentation.php │ │ │ │ │ │ ├── DocstringRepresentation.php │ │ │ │ │ │ ├── MicrotimeRepresentation.php │ │ │ │ │ │ ├── Representation.php │ │ │ │ │ │ ├── SourceRepresentation.php │ │ │ │ │ │ └── SplFileInfoRepresentation.php │ │ │ │ │ ├── ResourceValue.php │ │ │ │ │ ├── SimpleXMLElementValue.php │ │ │ │ │ ├── StreamValue.php │ │ │ │ │ ├── ThrowableValue.php │ │ │ │ │ ├── TraceFrameValue.php │ │ │ │ │ ├── TraceValue.php │ │ │ │ │ └── Value.php │ │ │ │ ├── init.php │ │ │ │ ├── init_helpers.php │ │ │ │ └── resources │ │ │ │ │ └── compiled │ │ │ │ │ ├── aante-light.css │ │ │ │ │ ├── microtime.js │ │ │ │ │ ├── original.css │ │ │ │ │ ├── plain.css │ │ │ │ │ ├── plain.js │ │ │ │ │ ├── rich.js │ │ │ │ │ ├── shared.js │ │ │ │ │ ├── solarized-dark.css │ │ │ │ │ └── solarized.css │ │ │ └── PSR │ │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LICENSE │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ └── NullLogger.php │ │ ├── Throttle │ │ │ ├── Throttler.php │ │ │ └── ThrottlerInterface.php │ │ ├── Typography │ │ │ └── Typography.php │ │ ├── Validation │ │ │ ├── CreditCardRules.php │ │ │ ├── Exceptions │ │ │ │ └── ValidationException.php │ │ │ ├── FileRules.php │ │ │ ├── FormatRules.php │ │ │ ├── Rules.php │ │ │ ├── StrictRules │ │ │ │ ├── CreditCardRules.php │ │ │ │ ├── FileRules.php │ │ │ │ ├── FormatRules.php │ │ │ │ └── Rules.php │ │ │ ├── Validation.php │ │ │ ├── ValidationInterface.php │ │ │ └── Views │ │ │ │ ├── list.php │ │ │ │ └── single.php │ │ ├── View │ │ │ ├── Cell.php │ │ │ ├── Exceptions │ │ │ │ └── ViewException.php │ │ │ ├── Filters.php │ │ │ ├── Parser.php │ │ │ ├── Plugins.php │ │ │ ├── RendererInterface.php │ │ │ ├── Table.php │ │ │ ├── View.php │ │ │ ├── ViewDecoratorInterface.php │ │ │ └── ViewDecoratorTrait.php │ │ ├── bootstrap.php │ │ └── index.html │ └── writable │ │ ├── .htaccess │ │ ├── cache │ │ └── index.html │ │ ├── logs │ │ └── index.html │ │ ├── session │ │ └── index.html │ │ └── uploads │ │ └── index.html └── robots.txt ├── system ├── .htaccess ├── API │ └── ResponseTrait.php ├── Autoloader │ ├── Autoloader.php │ └── FileLocator.php ├── BaseModel.php ├── CLI │ ├── BaseCommand.php │ ├── CLI.php │ ├── CommandRunner.php │ ├── Commands.php │ ├── Console.php │ ├── Exceptions │ │ └── CLIException.php │ └── GeneratorTrait.php ├── Cache │ ├── CacheFactory.php │ ├── CacheInterface.php │ ├── Exceptions │ │ ├── CacheException.php │ │ └── ExceptionInterface.php │ └── Handlers │ │ ├── BaseHandler.php │ │ ├── DummyHandler.php │ │ ├── FileHandler.php │ │ ├── MemcachedHandler.php │ │ ├── PredisHandler.php │ │ ├── RedisHandler.php │ │ └── WincacheHandler.php ├── CodeIgniter.php ├── Commands │ ├── Cache │ │ ├── ClearCache.php │ │ └── InfoCache.php │ ├── Database │ │ ├── CreateDatabase.php │ │ ├── Migrate.php │ │ ├── MigrateRefresh.php │ │ ├── MigrateRollback.php │ │ ├── MigrateStatus.php │ │ ├── Seed.php │ │ └── ShowTableInfo.php │ ├── Encryption │ │ └── GenerateKey.php │ ├── Generators │ │ ├── CommandGenerator.php │ │ ├── ConfigGenerator.php │ │ ├── ControllerGenerator.php │ │ ├── EntityGenerator.php │ │ ├── FilterGenerator.php │ │ ├── MigrateCreate.php │ │ ├── MigrationGenerator.php │ │ ├── ModelGenerator.php │ │ ├── ScaffoldGenerator.php │ │ ├── SeederGenerator.php │ │ ├── SessionMigrationGenerator.php │ │ ├── ValidationGenerator.php │ │ └── Views │ │ │ ├── command.tpl.php │ │ │ ├── config.tpl.php │ │ │ ├── controller.tpl.php │ │ │ ├── entity.tpl.php │ │ │ ├── filter.tpl.php │ │ │ ├── migration.tpl.php │ │ │ ├── model.tpl.php │ │ │ ├── seeder.tpl.php │ │ │ └── validation.tpl.php │ ├── Help.php │ ├── Housekeeping │ │ ├── ClearDebugbar.php │ │ └── ClearLogs.php │ ├── ListCommands.php │ ├── Server │ │ ├── Serve.php │ │ └── rewrite.php │ └── Utilities │ │ ├── Environment.php │ │ ├── Namespaces.php │ │ ├── Publish.php │ │ ├── Routes.php │ │ └── Routes │ │ ├── AutoRouteCollector.php │ │ ├── AutoRouterImproved │ │ ├── AutoRouteCollector.php │ │ └── ControllerMethodReader.php │ │ ├── ControllerFinder.php │ │ ├── ControllerMethodReader.php │ │ ├── FilterCollector.php │ │ ├── FilterFinder.php │ │ └── SampleURIGenerator.php ├── Common.php ├── ComposerScripts.php ├── Config │ ├── AutoloadConfig.php │ ├── BaseConfig.php │ ├── BaseService.php │ ├── Config.php │ ├── DotEnv.php │ ├── Factories.php │ ├── Factory.php │ ├── ForeignCharacters.php │ ├── Publisher.php │ ├── Routes.php │ ├── Services.php │ └── View.php ├── Controller.php ├── Cookie │ ├── CloneableCookieInterface.php │ ├── Cookie.php │ ├── CookieInterface.php │ ├── CookieStore.php │ └── Exceptions │ │ └── CookieException.php ├── Database │ ├── BaseBuilder.php │ ├── BaseConnection.php │ ├── BasePreparedQuery.php │ ├── BaseResult.php │ ├── BaseUtils.php │ ├── Config.php │ ├── ConnectionInterface.php │ ├── Database.php │ ├── Exceptions │ │ ├── DataException.php │ │ ├── DatabaseException.php │ │ └── ExceptionInterface.php │ ├── Forge.php │ ├── Migration.php │ ├── MigrationRunner.php │ ├── ModelFactory.php │ ├── MySQLi │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ └── Utils.php │ ├── OCI8 │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ └── Utils.php │ ├── Postgre │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ └── Utils.php │ ├── PreparedQueryInterface.php │ ├── Query.php │ ├── QueryInterface.php │ ├── RawSql.php │ ├── ResultInterface.php │ ├── SQLSRV │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ └── Utils.php │ ├── SQLite3 │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ ├── Table.php │ │ └── Utils.php │ └── Seeder.php ├── Debug │ ├── Exceptions.php │ ├── Iterator.php │ ├── Timer.php │ ├── Toolbar.php │ └── Toolbar │ │ ├── Collectors │ │ ├── BaseCollector.php │ │ ├── Config.php │ │ ├── Database.php │ │ ├── Events.php │ │ ├── Files.php │ │ ├── History.php │ │ ├── Logs.php │ │ ├── Routes.php │ │ ├── Timers.php │ │ └── Views.php │ │ └── Views │ │ ├── _config.tpl │ │ ├── _database.tpl │ │ ├── _events.tpl │ │ ├── _files.tpl │ │ ├── _history.tpl │ │ ├── _logs.tpl │ │ ├── _routes.tpl │ │ ├── toolbar.css │ │ ├── toolbar.js │ │ ├── toolbar.tpl.php │ │ └── toolbarloader.js ├── Email │ └── Email.php ├── Encryption │ ├── EncrypterInterface.php │ ├── Encryption.php │ ├── Exceptions │ │ └── EncryptionException.php │ └── Handlers │ │ ├── BaseHandler.php │ │ ├── OpenSSLHandler.php │ │ └── SodiumHandler.php ├── Entity.php ├── Entity │ ├── Cast │ │ ├── ArrayCast.php │ │ ├── BaseCast.php │ │ ├── BooleanCast.php │ │ ├── CSVCast.php │ │ ├── CastInterface.php │ │ ├── DatetimeCast.php │ │ ├── FloatCast.php │ │ ├── IntegerCast.php │ │ ├── JsonCast.php │ │ ├── ObjectCast.php │ │ ├── StringCast.php │ │ ├── TimestampCast.php │ │ └── URICast.php │ ├── Entity.php │ └── Exceptions │ │ └── CastException.php ├── Events │ └── Events.php ├── Exceptions │ ├── AlertError.php │ ├── CastException.php │ ├── ConfigException.php │ ├── CriticalError.php │ ├── DebugTraceableTrait.php │ ├── DownloadException.php │ ├── EmergencyError.php │ ├── ExceptionInterface.php │ ├── FrameworkException.php │ ├── ModelException.php │ ├── PageNotFoundException.php │ └── TestException.php ├── Files │ ├── Exceptions │ │ ├── FileException.php │ │ └── FileNotFoundException.php │ ├── File.php │ └── FileCollection.php ├── Filters │ ├── CSRF.php │ ├── DebugToolbar.php │ ├── Exceptions │ │ └── FilterException.php │ ├── FilterInterface.php │ ├── Filters.php │ ├── Honeypot.php │ ├── InvalidChars.php │ └── SecureHeaders.php ├── Format │ ├── Exceptions │ │ └── FormatException.php │ ├── Format.php │ ├── FormatterInterface.php │ ├── JSONFormatter.php │ └── XMLFormatter.php ├── HTTP │ ├── CLIRequest.php │ ├── CURLRequest.php │ ├── ContentSecurityPolicy.php │ ├── DownloadResponse.php │ ├── Exceptions │ │ └── HTTPException.php │ ├── Files │ │ ├── FileCollection.php │ │ ├── UploadedFile.php │ │ └── UploadedFileInterface.php │ ├── Header.php │ ├── IncomingRequest.php │ ├── Message.php │ ├── MessageInterface.php │ ├── MessageTrait.php │ ├── Negotiate.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── RequestInterface.php │ ├── RequestTrait.php │ ├── Response.php │ ├── ResponseInterface.php │ ├── ResponseTrait.php │ ├── URI.php │ └── UserAgent.php ├── Helpers │ ├── array_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── filesystem_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── inflector_helper.php │ ├── number_helper.php │ ├── security_helper.php │ ├── test_helper.php │ ├── text_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── Honeypot │ ├── Exceptions │ │ └── HoneypotException.php │ └── Honeypot.php ├── I18n │ ├── Exceptions │ │ └── I18nException.php │ ├── Time.php │ └── TimeDifference.php ├── Images │ ├── Exceptions │ │ └── ImageException.php │ ├── Handlers │ │ ├── BaseHandler.php │ │ ├── GDHandler.php │ │ └── ImageMagickHandler.php │ ├── Image.php │ └── ImageHandlerInterface.php ├── Language │ ├── Language.php │ └── en │ │ ├── CLI.php │ │ ├── Cache.php │ │ ├── Cast.php │ │ ├── Cookie.php │ │ ├── Core.php │ │ ├── Database.php │ │ ├── Email.php │ │ ├── Encryption.php │ │ ├── Fabricator.php │ │ ├── Files.php │ │ ├── Filters.php │ │ ├── Format.php │ │ ├── HTTP.php │ │ ├── Images.php │ │ ├── Log.php │ │ ├── Migrations.php │ │ ├── Number.php │ │ ├── Pager.php │ │ ├── Publisher.php │ │ ├── RESTful.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── Session.php │ │ ├── Test.php │ │ ├── Time.php │ │ ├── Validation.php │ │ └── View.php ├── Log │ ├── Exceptions │ │ └── LogException.php │ ├── Handlers │ │ ├── BaseHandler.php │ │ ├── ChromeLoggerHandler.php │ │ ├── ErrorlogHandler.php │ │ ├── FileHandler.php │ │ └── HandlerInterface.php │ └── Logger.php ├── Model.php ├── Modules │ └── Modules.php ├── Pager │ ├── Exceptions │ │ └── PagerException.php │ ├── Pager.php │ ├── PagerInterface.php │ ├── PagerRenderer.php │ └── Views │ │ ├── default_full.php │ │ ├── default_head.php │ │ └── default_simple.php ├── Publisher │ ├── Exceptions │ │ └── PublisherException.php │ └── Publisher.php ├── RESTful │ ├── BaseResource.php │ ├── ResourceController.php │ └── ResourcePresenter.php ├── Router │ ├── AutoRouter.php │ ├── AutoRouterImproved.php │ ├── AutoRouterInterface.php │ ├── Exceptions │ │ ├── RedirectException.php │ │ └── RouterException.php │ ├── RouteCollection.php │ ├── RouteCollectionInterface.php │ ├── Router.php │ └── RouterInterface.php ├── Security │ ├── Exceptions │ │ └── SecurityException.php │ ├── Security.php │ └── SecurityInterface.php ├── Session │ ├── Exceptions │ │ └── SessionException.php │ ├── Handlers │ │ ├── ArrayHandler.php │ │ ├── BaseHandler.php │ │ ├── Database │ │ │ ├── MySQLiHandler.php │ │ │ └── PostgreHandler.php │ │ ├── DatabaseHandler.php │ │ ├── FileHandler.php │ │ ├── MemcachedHandler.php │ │ └── RedisHandler.php │ ├── Session.php │ └── SessionInterface.php ├── Test │ ├── CIDatabaseTestCase.php │ ├── CIUnitTestCase.php │ ├── ConfigFromArrayTrait.php │ ├── Constraints │ │ └── SeeInDatabase.php │ ├── ControllerResponse.php │ ├── ControllerTestTrait.php │ ├── ControllerTester.php │ ├── DOMParser.php │ ├── DatabaseTestTrait.php │ ├── Fabricator.php │ ├── FeatureResponse.php │ ├── FeatureTestCase.php │ ├── FeatureTestTrait.php │ ├── FilterTestTrait.php │ ├── Filters │ │ └── CITestStreamFilter.php │ ├── Interfaces │ │ └── FabricatorModel.php │ ├── Mock │ │ ├── MockAppConfig.php │ │ ├── MockAutoload.php │ │ ├── MockBuilder.php │ │ ├── MockCLIConfig.php │ │ ├── MockCURLRequest.php │ │ ├── MockCache.php │ │ ├── MockCodeIgniter.php │ │ ├── MockCommon.php │ │ ├── MockConnection.php │ │ ├── MockEmail.php │ │ ├── MockEvents.php │ │ ├── MockFileLogger.php │ │ ├── MockIncomingRequest.php │ │ ├── MockLanguage.php │ │ ├── MockLogger.php │ │ ├── MockQuery.php │ │ ├── MockResourceController.php │ │ ├── MockResourcePresenter.php │ │ ├── MockResponse.php │ │ ├── MockResult.php │ │ ├── MockSecurity.php │ │ ├── MockSecurityConfig.php │ │ ├── MockServices.php │ │ ├── MockSession.php │ │ └── MockTable.php │ ├── ReflectionHelper.php │ ├── TestLogger.php │ ├── TestResponse.php │ └── bootstrap.php ├── ThirdParty │ ├── Escaper │ │ ├── Escaper.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ └── LICENSE.md │ ├── Kint │ │ ├── CallFinder.php │ │ ├── Kint.php │ │ ├── LICENSE │ │ ├── Parser │ │ │ ├── ArrayLimitPlugin.php │ │ │ ├── ArrayObjectPlugin.php │ │ │ ├── Base64Plugin.php │ │ │ ├── BinaryPlugin.php │ │ │ ├── BlacklistPlugin.php │ │ │ ├── ClassMethodsPlugin.php │ │ │ ├── ClassStaticsPlugin.php │ │ │ ├── ClosurePlugin.php │ │ │ ├── ColorPlugin.php │ │ │ ├── DOMDocumentPlugin.php │ │ │ ├── DateTimePlugin.php │ │ │ ├── EnumPlugin.php │ │ │ ├── FsPathPlugin.php │ │ │ ├── IteratorPlugin.php │ │ │ ├── JsonPlugin.php │ │ │ ├── MicrotimePlugin.php │ │ │ ├── MysqliPlugin.php │ │ │ ├── Parser.php │ │ │ ├── Plugin.php │ │ │ ├── ProxyPlugin.php │ │ │ ├── SerializePlugin.php │ │ │ ├── SimpleXMLElementPlugin.php │ │ │ ├── SplFileInfoPlugin.php │ │ │ ├── SplObjectStoragePlugin.php │ │ │ ├── StreamPlugin.php │ │ │ ├── TablePlugin.php │ │ │ ├── ThrowablePlugin.php │ │ │ ├── TimestampPlugin.php │ │ │ ├── ToStringPlugin.php │ │ │ ├── TracePlugin.php │ │ │ └── XmlPlugin.php │ │ ├── Renderer │ │ │ ├── CliRenderer.php │ │ │ ├── PlainRenderer.php │ │ │ ├── Renderer.php │ │ │ ├── Rich │ │ │ │ ├── ArrayLimitPlugin.php │ │ │ │ ├── BinaryPlugin.php │ │ │ │ ├── BlacklistPlugin.php │ │ │ │ ├── CallablePlugin.php │ │ │ │ ├── ClosurePlugin.php │ │ │ │ ├── ColorPlugin.php │ │ │ │ ├── DepthLimitPlugin.php │ │ │ │ ├── DocstringPlugin.php │ │ │ │ ├── MicrotimePlugin.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── PluginInterface.php │ │ │ │ ├── RecursionPlugin.php │ │ │ │ ├── SimpleXMLElementPlugin.php │ │ │ │ ├── SourcePlugin.php │ │ │ │ ├── TabPluginInterface.php │ │ │ │ ├── TablePlugin.php │ │ │ │ ├── TimestampPlugin.php │ │ │ │ ├── TraceFramePlugin.php │ │ │ │ └── ValuePluginInterface.php │ │ │ ├── RichRenderer.php │ │ │ ├── Text │ │ │ │ ├── ArrayLimitPlugin.php │ │ │ │ ├── BlacklistPlugin.php │ │ │ │ ├── DepthLimitPlugin.php │ │ │ │ ├── EnumPlugin.php │ │ │ │ ├── MicrotimePlugin.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── RecursionPlugin.php │ │ │ │ └── TracePlugin.php │ │ │ └── TextRenderer.php │ │ ├── Utils.php │ │ ├── Zval │ │ │ ├── BlobValue.php │ │ │ ├── ClosureValue.php │ │ │ ├── DateTimeValue.php │ │ │ ├── EnumValue.php │ │ │ ├── InstanceValue.php │ │ │ ├── MethodValue.php │ │ │ ├── ParameterValue.php │ │ │ ├── Representation │ │ │ │ ├── ColorRepresentation.php │ │ │ │ ├── DocstringRepresentation.php │ │ │ │ ├── MicrotimeRepresentation.php │ │ │ │ ├── Representation.php │ │ │ │ ├── SourceRepresentation.php │ │ │ │ └── SplFileInfoRepresentation.php │ │ │ ├── ResourceValue.php │ │ │ ├── SimpleXMLElementValue.php │ │ │ ├── StreamValue.php │ │ │ ├── ThrowableValue.php │ │ │ ├── TraceFrameValue.php │ │ │ ├── TraceValue.php │ │ │ └── Value.php │ │ ├── init.php │ │ ├── init_helpers.php │ │ └── resources │ │ │ └── compiled │ │ │ ├── aante-light.css │ │ │ ├── microtime.js │ │ │ ├── original.css │ │ │ ├── plain.css │ │ │ ├── plain.js │ │ │ ├── rich.js │ │ │ ├── shared.js │ │ │ ├── solarized-dark.css │ │ │ └── solarized.css │ └── PSR │ │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LICENSE │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ └── NullLogger.php ├── Throttle │ ├── Throttler.php │ └── ThrottlerInterface.php ├── Typography │ └── Typography.php ├── Validation │ ├── CreditCardRules.php │ ├── Exceptions │ │ └── ValidationException.php │ ├── FileRules.php │ ├── FormatRules.php │ ├── Rules.php │ ├── StrictRules │ │ ├── CreditCardRules.php │ │ ├── FileRules.php │ │ ├── FormatRules.php │ │ └── Rules.php │ ├── Validation.php │ ├── ValidationInterface.php │ └── Views │ │ ├── list.php │ │ └── single.php ├── View │ ├── Cell.php │ ├── Exceptions │ │ └── ViewException.php │ ├── Filters.php │ ├── Parser.php │ ├── Plugins.php │ ├── RendererInterface.php │ ├── Table.php │ ├── View.php │ ├── ViewDecoratorInterface.php │ └── ViewDecoratorTrait.php ├── bootstrap.php └── index.html ├── theme_admin ├── com_example │ └── Test │ │ ├── Config │ │ └── Routes.php │ │ ├── Controllers │ │ └── Admin │ │ │ └── Appearance │ │ │ └── Admin │ │ │ └── Theme │ │ │ └── com_example │ │ │ └── Test.php │ │ ├── Language │ │ └── en │ │ │ ├── Heading.php │ │ │ └── Text.php │ │ ├── Views │ │ ├── Appearance │ │ │ └── Admin │ │ │ │ └── Theme │ │ │ │ └── com_example │ │ │ │ └── test.php │ │ └── Common │ │ │ └── header.php │ │ └── assets │ │ └── admin │ │ └── theme │ │ └── com_example │ │ └── Test │ │ └── images │ │ └── test.png └── com_openmvm │ └── Basic │ ├── Config │ └── Routes.php │ ├── Controllers │ └── Admin │ │ └── Appearance │ │ └── Admin │ │ └── Theme │ │ └── com_openmvm │ │ └── Basic.php │ ├── Language │ └── en │ │ ├── Heading.php │ │ └── Text.php │ └── Views │ ├── Administrator │ ├── administrator_form.php │ ├── administrator_group_form.php │ ├── administrator_group_list.php │ ├── administrator_list.php │ ├── login.php │ └── logout.php │ ├── Appearance │ ├── Admin │ │ ├── Theme │ │ │ └── com_openmvm │ │ │ │ └── basic.php │ │ └── theme.php │ └── Marketplace │ │ ├── Widgets │ │ ├── category.php │ │ ├── html_content.php │ │ ├── link.php │ │ ├── page.php │ │ ├── seller_bestseller_product.php │ │ ├── seller_category.php │ │ ├── seller_dashboard_chart.php │ │ ├── seller_dashboard_latest_order.php │ │ ├── seller_dashboard_stat.php │ │ ├── seller_description.php │ │ ├── seller_faq.php │ │ ├── seller_featured_product.php │ │ ├── seller_latest_product.php │ │ ├── seller_menu.php │ │ └── seller_special_product.php │ │ ├── layout_form.php │ │ ├── layout_list.php │ │ ├── theme.php │ │ └── widget.php │ ├── Common │ ├── column_left.php │ ├── dashboard.php │ ├── footer.php │ ├── header.php │ └── permission.php │ ├── Component │ ├── Analytics │ │ └── google_analytics_4.php │ ├── Component │ │ ├── analytics.php │ │ ├── order_total.php │ │ ├── payment_method.php │ │ └── shipping_method.php │ ├── Order_Total │ │ ├── shipping.php │ │ ├── sub_total.php │ │ └── total.php │ ├── Payment_Method │ │ ├── bank_transfer.php │ │ ├── cash_on_delivery.php │ │ ├── free_checkout.php │ │ └── wallet.php │ └── Shipping_Method │ │ ├── flat_rate.php │ │ ├── weight_based.php │ │ └── zone_based.php │ ├── Customer │ ├── customer_form.php │ ├── customer_group_form.php │ ├── customer_group_list.php │ ├── customer_list.php │ └── wallet.php │ ├── Developer │ ├── demo_manager.php │ ├── language_editor_form.php │ └── language_editor_list.php │ ├── File_Manager │ ├── image_manager.php │ └── image_manager_workspace.php │ ├── Localisation │ ├── country_form.php │ ├── country_list.php │ ├── currency_form.php │ ├── currency_list.php │ ├── geo_zone_form.php │ ├── geo_zone_list.php │ ├── language_form.php │ ├── language_list.php │ ├── length_class_form.php │ ├── length_class_list.php │ ├── order_status_form.php │ ├── order_status_list.php │ ├── weight_class_form.php │ ├── weight_class_list.php │ ├── zone_form.php │ └── zone_list.php │ ├── Marketplace │ ├── category_form.php │ ├── category_list.php │ ├── order_info.php │ ├── order_list.php │ └── order_status_history.php │ ├── Page │ ├── page_form.php │ └── page_list.php │ ├── Plugin │ └── plugin.php │ └── System │ ├── error_log.php │ ├── performance.php │ └── setting.php ├── theme_marketplace ├── com_example │ └── Test │ │ ├── Config │ │ └── Routes.php │ │ ├── Controllers │ │ └── Admin │ │ │ └── Appearance │ │ │ └── Marketplace │ │ │ └── Theme │ │ │ └── com_example │ │ │ └── Test.php │ │ ├── Language │ │ └── en │ │ │ ├── Heading.php │ │ │ └── Text.php │ │ ├── Views │ │ ├── Admin │ │ │ └── Appearance │ │ │ │ └── Marketplace │ │ │ │ └── Theme │ │ │ │ └── com_example │ │ │ │ └── test.php │ │ └── Common │ │ │ └── header.php │ │ └── assets │ │ └── marketplace │ │ └── theme │ │ └── com_example │ │ └── Test │ │ └── images │ │ └── test.png └── com_openmvm │ └── Basic │ ├── Config │ └── Routes.php │ ├── Controllers │ └── Admin │ │ └── Appearance │ │ └── Marketplace │ │ └── Theme │ │ └── com_openmvm │ │ └── Basic.php │ └── Views │ ├── Account │ ├── account.php │ ├── address_form.php │ ├── address_list.php │ ├── login.php │ ├── logout.php │ ├── order_info.php │ ├── order_list.php │ ├── product_download.php │ ├── product_review_form.php │ ├── product_review_list.php │ ├── profile.php │ ├── register.php │ ├── reset_password.php │ ├── reset_password_confirm.php │ ├── wallet.php │ └── wishlist.php │ ├── Admin │ └── Appearance │ │ └── Marketplace │ │ └── Theme │ │ └── com_openmvm │ │ └── basic.php │ ├── Appearance │ └── Marketplace │ │ └── Widgets │ │ ├── category.php │ │ ├── html_content.php │ │ ├── link.php │ │ ├── page.php │ │ ├── seller_bestseller_product.php │ │ ├── seller_category.php │ │ ├── seller_dashboard_chart.php │ │ ├── seller_dashboard_latest_order.php │ │ ├── seller_dashboard_stat.php │ │ ├── seller_description.php │ │ ├── seller_faq.php │ │ ├── seller_featured_product.php │ │ ├── seller_latest_product.php │ │ ├── seller_menu.php │ │ └── seller_special_product.php │ ├── Checkout │ ├── cart.php │ ├── checkout.php │ ├── checkout_cart.php │ ├── checkout_confirm.php │ ├── checkout_payment_address.php │ ├── checkout_payment_method.php │ ├── checkout_shipping_address.php │ ├── checkout_shipping_method.php │ └── success.php │ ├── Common │ ├── cart.php │ ├── currency.php │ ├── error.php │ ├── footer.php │ ├── header.php │ ├── home.php │ ├── language.php │ ├── offcanvas_left.php │ ├── offcanvas_right.php │ ├── search.php │ └── wallet.php │ ├── Component │ └── Payment_Method │ │ ├── bank_transfer.php │ │ ├── cash_on_delivery.php │ │ ├── free_checkout.php │ │ └── wallet.php │ ├── Mail │ └── Account │ │ └── reset_password.php │ ├── Page │ ├── page.php │ └── page_info.php │ ├── Product │ ├── category.php │ ├── category_all.php │ ├── customer_question.php │ ├── customer_question_answer.php │ ├── customer_question_list.php │ ├── product.php │ ├── product_all.php │ ├── product_question.php │ ├── product_review.php │ └── search.php │ └── Seller │ ├── Component │ └── shipping_method.php │ ├── Localisation │ ├── geo_zone_form.php │ └── geo_zone_list.php │ ├── Shipping_Method │ ├── flat_rate.php │ ├── weight_based.php │ └── zone_based.php │ ├── dashboard.php │ ├── edit.php │ ├── option_form.php │ ├── option_list.php │ ├── order_info.php │ ├── order_list.php │ ├── product_form.php │ ├── product_list.php │ ├── product_question_answer.php │ ├── product_question_form.php │ ├── product_question_list.php │ ├── product_variant.php │ ├── product_variant_discount.php │ ├── product_variant_special.php │ ├── register.php │ ├── search.php │ ├── seller.php │ ├── seller_category_form.php │ ├── seller_category_info.php │ ├── seller_category_list.php │ ├── seller_faq_form.php │ ├── seller_faq_list.php │ ├── seller_info.php │ └── seller_product.php └── writable ├── .htaccess ├── cache └── index.html ├── debugbar └── .gitkeep ├── downloads └── index.html ├── logs └── index.html ├── session └── index.html ├── temp └── index.html └── uploads └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: openmvm -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- 1 | 'OpenMVM ver. %s', 6 | 'date_format' => 'F jS, Y', 7 | 'date_format_local' => 'F jS, Y', 8 | 'date_format_short' => 'Y-m-d', 9 | 'datetime_format' => 'Y-m-d h:i:s', 10 | 'datetime_format_local' => 'F jS, Y h:i', 11 | 'decimal_point' => '.', 12 | 'framework_version' => 'Framework ver. %s', 13 | 'thousand_point' => ',', 14 | 'time_format' => 'h:i:s', 15 | ]; 16 | -------------------------------------------------------------------------------- /app/Language/en/Help.php: -------------------------------------------------------------------------------- 1 | 'The checkout total amount the order must reach before this component becomes active', 6 | ]; 7 | -------------------------------------------------------------------------------- /app/Language/en/Mail.php: -------------------------------------------------------------------------------- 1 | '%s - Reset Password Instruction', 6 | 'reset_password_greeting' => 'Hello,', 7 | 'reset_password_header' => 'A request has been received to change the password for your %s account.', 8 | 'reset_password_footer' => 'If you did not initiate this request, please contact us immediately at %s.', 9 | 'reset_password_thank_you' => 'Thank You,', 10 | 'reset_password_thank_you_from' => '%s Team', 11 | ]; 12 | -------------------------------------------------------------------------------- /app/Language/en/Tab.php: -------------------------------------------------------------------------------- 1 | 'Address', 6 | 'appearance' => 'Appearance', 7 | 'category' => 'Category', 8 | 'column' => 'Column', 9 | 'data' => 'Data', 10 | 'details' => 'Details', 11 | 'downloads' => 'Downloads', 12 | 'general' => 'General', 13 | 'images' => 'Images', 14 | 'link' => 'Link', 15 | 'localisation' => 'Localisation', 16 | 'mail' => 'Mail', 17 | 'options' => 'Options', 18 | 'order_statuses' => 'Order Statuses', 19 | 'quantity_discounts' => 'Quantity Discounts', 20 | 'rate' => 'Rate', 21 | 'specials' => 'Specials', 22 | 'wallet' => 'Wallet', 23 | 'widget_layouts' => 'Widget Layouts', 24 | ]; 25 | -------------------------------------------------------------------------------- /app/Language/en/Validation.php: -------------------------------------------------------------------------------- 1 | 'OpenMVM ver. %s', 6 | 'date_format' => 'j F Y', 7 | 'date_format_local' => 'F jS, Y', 8 | 'date_format_short' => 'Y-m-d', 9 | 'datetime_format' => 'Y-m-d h:i:s', 10 | 'datetime_format_local' => 'F jS, Y h:i', 11 | 'decimal_point' => ',', 12 | 'framework_version' => 'Framework ver. %s', 13 | 'thousand_point' => '.', 14 | 'time_format' => 'h:i:s', 15 | ]; 16 | -------------------------------------------------------------------------------- /app/Language/id/Help.php: -------------------------------------------------------------------------------- 1 | 'The checkout total amount the order must reach before this component becomes active', 6 | ]; 7 | -------------------------------------------------------------------------------- /app/Language/id/Mail.php: -------------------------------------------------------------------------------- 1 | '%s - Reset Password Instruction', 6 | 'reset_password_greeting' => 'Hello,', 7 | 'reset_password_header' => 'A request has been received to change the password for your %s account.', 8 | 'reset_password_footer' => 'If you did not initiate this request, please contact us immediately at %s.', 9 | 'reset_password_thank_you' => 'Thank You,', 10 | 'reset_password_thank_you_from' => '%s Team', 11 | ]; 12 | -------------------------------------------------------------------------------- /app/Language/id/Tab.php: -------------------------------------------------------------------------------- 1 | 'Address', 6 | 'appearance' => 'Appearance', 7 | 'category' => 'Category', 8 | 'column' => 'Column', 9 | 'data' => 'Data', 10 | 'details' => 'Details', 11 | 'downloads' => 'Downloads', 12 | 'general' => 'General', 13 | 'images' => 'Images', 14 | 'link' => 'Link', 15 | 'localisation' => 'Localisation', 16 | 'mail' => 'Mail', 17 | 'options' => 'Options', 18 | 'order_statuses' => 'Order Statuses', 19 | 'quantity_discounts' => 'Quantity Discounts', 20 | 'rate' => 'Rate', 21 | 'specials' => 'Specials', 22 | 'wallet' => 'Wallet', 23 | 'widget_layouts' => 'Widget Layouts', 24 | ]; 25 | -------------------------------------------------------------------------------- /app/Language/id/Validation.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 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /main/marketplace/Controllers/Account/Logout.php: -------------------------------------------------------------------------------- 1 | session->remove('shopping_cart_key'); 18 | 19 | // Logged out customer 20 | $this->customer->logout(); 21 | 22 | $this->session->set('success', lang('Success.logout', [], $this->language->getCurrentCode())); 23 | 24 | return redirect()->to('marketplace/account/login'); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /plugins/com_example/Widget_Blank/Language/en/Heading.php: -------------------------------------------------------------------------------- 1 | 'Blank', 6 | ]; 7 | -------------------------------------------------------------------------------- /plugins/com_example/Widget_Blank/Language/en/Text.php: -------------------------------------------------------------------------------- 1 | 'Blank', 6 | 'widget_blank' => 'Widget Blank', 7 | 'example_widget_blank_description' => 'Blank widget developed by example.com.', 8 | ]; 9 | -------------------------------------------------------------------------------- /plugins/com_example/Widget_Blank/Views/Marketplace/Appearance/Marketplace/Widgets/blank.php: -------------------------------------------------------------------------------- 1 |
 
-------------------------------------------------------------------------------- /plugins/com_example/Widget_Blank/assets/admin/plugins/com_example/Widget_Blank/images/widget_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/plugins/com_example/Widget_Blank/assets/admin/plugins/com_example/Widget_Blank/images/widget_blank.png -------------------------------------------------------------------------------- /public/assets/admin/theme/com_openmvm/Basic/images/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/admin/theme/com_openmvm/Basic/images/basic.png -------------------------------------------------------------------------------- /public/assets/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ad.png -------------------------------------------------------------------------------- /public/assets/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ae.png -------------------------------------------------------------------------------- /public/assets/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/af.png -------------------------------------------------------------------------------- /public/assets/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ag.png -------------------------------------------------------------------------------- /public/assets/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ai.png -------------------------------------------------------------------------------- /public/assets/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/al.png -------------------------------------------------------------------------------- /public/assets/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/am.png -------------------------------------------------------------------------------- /public/assets/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/an.png -------------------------------------------------------------------------------- /public/assets/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ao.png -------------------------------------------------------------------------------- /public/assets/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ar.png -------------------------------------------------------------------------------- /public/assets/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/as.png -------------------------------------------------------------------------------- /public/assets/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/at.png -------------------------------------------------------------------------------- /public/assets/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/au.png -------------------------------------------------------------------------------- /public/assets/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/aw.png -------------------------------------------------------------------------------- /public/assets/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ax.png -------------------------------------------------------------------------------- /public/assets/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/az.png -------------------------------------------------------------------------------- /public/assets/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ba.png -------------------------------------------------------------------------------- /public/assets/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bb.png -------------------------------------------------------------------------------- /public/assets/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bd.png -------------------------------------------------------------------------------- /public/assets/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/be.png -------------------------------------------------------------------------------- /public/assets/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bf.png -------------------------------------------------------------------------------- /public/assets/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bg.png -------------------------------------------------------------------------------- /public/assets/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bh.png -------------------------------------------------------------------------------- /public/assets/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bi.png -------------------------------------------------------------------------------- /public/assets/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bj.png -------------------------------------------------------------------------------- /public/assets/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bm.png -------------------------------------------------------------------------------- /public/assets/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bn.png -------------------------------------------------------------------------------- /public/assets/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bo.png -------------------------------------------------------------------------------- /public/assets/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/br.png -------------------------------------------------------------------------------- /public/assets/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bs.png -------------------------------------------------------------------------------- /public/assets/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bt.png -------------------------------------------------------------------------------- /public/assets/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bv.png -------------------------------------------------------------------------------- /public/assets/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bw.png -------------------------------------------------------------------------------- /public/assets/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/by.png -------------------------------------------------------------------------------- /public/assets/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/bz.png -------------------------------------------------------------------------------- /public/assets/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ca.png -------------------------------------------------------------------------------- /public/assets/flags/catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/catalonia.png -------------------------------------------------------------------------------- /public/assets/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cc.png -------------------------------------------------------------------------------- /public/assets/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cd.png -------------------------------------------------------------------------------- /public/assets/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cf.png -------------------------------------------------------------------------------- /public/assets/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cg.png -------------------------------------------------------------------------------- /public/assets/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ch.png -------------------------------------------------------------------------------- /public/assets/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ci.png -------------------------------------------------------------------------------- /public/assets/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ck.png -------------------------------------------------------------------------------- /public/assets/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cl.png -------------------------------------------------------------------------------- /public/assets/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cm.png -------------------------------------------------------------------------------- /public/assets/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cn.png -------------------------------------------------------------------------------- /public/assets/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/co.png -------------------------------------------------------------------------------- /public/assets/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cr.png -------------------------------------------------------------------------------- /public/assets/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cs.png -------------------------------------------------------------------------------- /public/assets/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cu.png -------------------------------------------------------------------------------- /public/assets/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cv.png -------------------------------------------------------------------------------- /public/assets/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cx.png -------------------------------------------------------------------------------- /public/assets/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cy.png -------------------------------------------------------------------------------- /public/assets/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/cz.png -------------------------------------------------------------------------------- /public/assets/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/de.png -------------------------------------------------------------------------------- /public/assets/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/dj.png -------------------------------------------------------------------------------- /public/assets/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/dk.png -------------------------------------------------------------------------------- /public/assets/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/dm.png -------------------------------------------------------------------------------- /public/assets/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/do.png -------------------------------------------------------------------------------- /public/assets/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/dz.png -------------------------------------------------------------------------------- /public/assets/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ec.png -------------------------------------------------------------------------------- /public/assets/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ee.png -------------------------------------------------------------------------------- /public/assets/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/eg.png -------------------------------------------------------------------------------- /public/assets/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/eh.png -------------------------------------------------------------------------------- /public/assets/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/en.png -------------------------------------------------------------------------------- /public/assets/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/er.png -------------------------------------------------------------------------------- /public/assets/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/es.png -------------------------------------------------------------------------------- /public/assets/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/et.png -------------------------------------------------------------------------------- /public/assets/flags/europeanunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/europeanunion.png -------------------------------------------------------------------------------- /public/assets/flags/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/fam.png -------------------------------------------------------------------------------- /public/assets/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/fi.png -------------------------------------------------------------------------------- /public/assets/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/fj.png -------------------------------------------------------------------------------- /public/assets/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/fk.png -------------------------------------------------------------------------------- /public/assets/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/fm.png -------------------------------------------------------------------------------- /public/assets/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/fo.png -------------------------------------------------------------------------------- /public/assets/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/fr.png -------------------------------------------------------------------------------- /public/assets/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ga.png -------------------------------------------------------------------------------- /public/assets/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gd.png -------------------------------------------------------------------------------- /public/assets/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ge.png -------------------------------------------------------------------------------- /public/assets/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gf.png -------------------------------------------------------------------------------- /public/assets/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gh.png -------------------------------------------------------------------------------- /public/assets/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gi.png -------------------------------------------------------------------------------- /public/assets/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gl.png -------------------------------------------------------------------------------- /public/assets/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gm.png -------------------------------------------------------------------------------- /public/assets/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gn.png -------------------------------------------------------------------------------- /public/assets/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gp.png -------------------------------------------------------------------------------- /public/assets/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gq.png -------------------------------------------------------------------------------- /public/assets/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gr.png -------------------------------------------------------------------------------- /public/assets/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gs.png -------------------------------------------------------------------------------- /public/assets/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gt.png -------------------------------------------------------------------------------- /public/assets/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gu.png -------------------------------------------------------------------------------- /public/assets/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gw.png -------------------------------------------------------------------------------- /public/assets/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/gy.png -------------------------------------------------------------------------------- /public/assets/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/hk.png -------------------------------------------------------------------------------- /public/assets/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/hm.png -------------------------------------------------------------------------------- /public/assets/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/hn.png -------------------------------------------------------------------------------- /public/assets/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/hr.png -------------------------------------------------------------------------------- /public/assets/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ht.png -------------------------------------------------------------------------------- /public/assets/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/hu.png -------------------------------------------------------------------------------- /public/assets/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/id.png -------------------------------------------------------------------------------- /public/assets/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ie.png -------------------------------------------------------------------------------- /public/assets/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/il.png -------------------------------------------------------------------------------- /public/assets/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/in.png -------------------------------------------------------------------------------- /public/assets/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/io.png -------------------------------------------------------------------------------- /public/assets/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/iq.png -------------------------------------------------------------------------------- /public/assets/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ir.png -------------------------------------------------------------------------------- /public/assets/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/is.png -------------------------------------------------------------------------------- /public/assets/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/it.png -------------------------------------------------------------------------------- /public/assets/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/jm.png -------------------------------------------------------------------------------- /public/assets/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/jo.png -------------------------------------------------------------------------------- /public/assets/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/jp.png -------------------------------------------------------------------------------- /public/assets/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ke.png -------------------------------------------------------------------------------- /public/assets/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/kg.png -------------------------------------------------------------------------------- /public/assets/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/kh.png -------------------------------------------------------------------------------- /public/assets/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ki.png -------------------------------------------------------------------------------- /public/assets/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/km.png -------------------------------------------------------------------------------- /public/assets/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/kn.png -------------------------------------------------------------------------------- /public/assets/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/kp.png -------------------------------------------------------------------------------- /public/assets/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/kr.png -------------------------------------------------------------------------------- /public/assets/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/kw.png -------------------------------------------------------------------------------- /public/assets/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ky.png -------------------------------------------------------------------------------- /public/assets/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/kz.png -------------------------------------------------------------------------------- /public/assets/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/la.png -------------------------------------------------------------------------------- /public/assets/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/lb.png -------------------------------------------------------------------------------- /public/assets/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/lc.png -------------------------------------------------------------------------------- /public/assets/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/li.png -------------------------------------------------------------------------------- /public/assets/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/lk.png -------------------------------------------------------------------------------- /public/assets/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/lr.png -------------------------------------------------------------------------------- /public/assets/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ls.png -------------------------------------------------------------------------------- /public/assets/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/lt.png -------------------------------------------------------------------------------- /public/assets/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/lu.png -------------------------------------------------------------------------------- /public/assets/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/lv.png -------------------------------------------------------------------------------- /public/assets/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ly.png -------------------------------------------------------------------------------- /public/assets/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ma.png -------------------------------------------------------------------------------- /public/assets/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mc.png -------------------------------------------------------------------------------- /public/assets/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/md.png -------------------------------------------------------------------------------- /public/assets/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/me.png -------------------------------------------------------------------------------- /public/assets/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mg.png -------------------------------------------------------------------------------- /public/assets/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mh.png -------------------------------------------------------------------------------- /public/assets/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mk.png -------------------------------------------------------------------------------- /public/assets/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ml.png -------------------------------------------------------------------------------- /public/assets/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mm.png -------------------------------------------------------------------------------- /public/assets/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mn.png -------------------------------------------------------------------------------- /public/assets/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mo.png -------------------------------------------------------------------------------- /public/assets/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mp.png -------------------------------------------------------------------------------- /public/assets/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mq.png -------------------------------------------------------------------------------- /public/assets/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mr.png -------------------------------------------------------------------------------- /public/assets/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ms.png -------------------------------------------------------------------------------- /public/assets/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mt.png -------------------------------------------------------------------------------- /public/assets/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mu.png -------------------------------------------------------------------------------- /public/assets/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mv.png -------------------------------------------------------------------------------- /public/assets/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mw.png -------------------------------------------------------------------------------- /public/assets/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mx.png -------------------------------------------------------------------------------- /public/assets/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/my.png -------------------------------------------------------------------------------- /public/assets/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/mz.png -------------------------------------------------------------------------------- /public/assets/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/na.png -------------------------------------------------------------------------------- /public/assets/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/nc.png -------------------------------------------------------------------------------- /public/assets/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ne.png -------------------------------------------------------------------------------- /public/assets/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/nf.png -------------------------------------------------------------------------------- /public/assets/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ng.png -------------------------------------------------------------------------------- /public/assets/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ni.png -------------------------------------------------------------------------------- /public/assets/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/nl.png -------------------------------------------------------------------------------- /public/assets/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/no.png -------------------------------------------------------------------------------- /public/assets/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/np.png -------------------------------------------------------------------------------- /public/assets/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/nr.png -------------------------------------------------------------------------------- /public/assets/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/nu.png -------------------------------------------------------------------------------- /public/assets/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/nz.png -------------------------------------------------------------------------------- /public/assets/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/om.png -------------------------------------------------------------------------------- /public/assets/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pa.png -------------------------------------------------------------------------------- /public/assets/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pe.png -------------------------------------------------------------------------------- /public/assets/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pf.png -------------------------------------------------------------------------------- /public/assets/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pg.png -------------------------------------------------------------------------------- /public/assets/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ph.png -------------------------------------------------------------------------------- /public/assets/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pk.png -------------------------------------------------------------------------------- /public/assets/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pl.png -------------------------------------------------------------------------------- /public/assets/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pm.png -------------------------------------------------------------------------------- /public/assets/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pn.png -------------------------------------------------------------------------------- /public/assets/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pr.png -------------------------------------------------------------------------------- /public/assets/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ps.png -------------------------------------------------------------------------------- /public/assets/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pt.png -------------------------------------------------------------------------------- /public/assets/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/pw.png -------------------------------------------------------------------------------- /public/assets/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/py.png -------------------------------------------------------------------------------- /public/assets/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/qa.png -------------------------------------------------------------------------------- /public/assets/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/re.png -------------------------------------------------------------------------------- /public/assets/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ro.png -------------------------------------------------------------------------------- /public/assets/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/rs.png -------------------------------------------------------------------------------- /public/assets/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ru.png -------------------------------------------------------------------------------- /public/assets/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/rw.png -------------------------------------------------------------------------------- /public/assets/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sa.png -------------------------------------------------------------------------------- /public/assets/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sb.png -------------------------------------------------------------------------------- /public/assets/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sc.png -------------------------------------------------------------------------------- /public/assets/flags/scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/scotland.png -------------------------------------------------------------------------------- /public/assets/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sd.png -------------------------------------------------------------------------------- /public/assets/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/se.png -------------------------------------------------------------------------------- /public/assets/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sg.png -------------------------------------------------------------------------------- /public/assets/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sh.png -------------------------------------------------------------------------------- /public/assets/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/si.png -------------------------------------------------------------------------------- /public/assets/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sj.png -------------------------------------------------------------------------------- /public/assets/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sk.png -------------------------------------------------------------------------------- /public/assets/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sl.png -------------------------------------------------------------------------------- /public/assets/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sm.png -------------------------------------------------------------------------------- /public/assets/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sn.png -------------------------------------------------------------------------------- /public/assets/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/so.png -------------------------------------------------------------------------------- /public/assets/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sr.png -------------------------------------------------------------------------------- /public/assets/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/st.png -------------------------------------------------------------------------------- /public/assets/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sv.png -------------------------------------------------------------------------------- /public/assets/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sy.png -------------------------------------------------------------------------------- /public/assets/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/sz.png -------------------------------------------------------------------------------- /public/assets/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tc.png -------------------------------------------------------------------------------- /public/assets/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/td.png -------------------------------------------------------------------------------- /public/assets/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tf.png -------------------------------------------------------------------------------- /public/assets/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tg.png -------------------------------------------------------------------------------- /public/assets/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/th.png -------------------------------------------------------------------------------- /public/assets/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tj.png -------------------------------------------------------------------------------- /public/assets/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tk.png -------------------------------------------------------------------------------- /public/assets/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tl.png -------------------------------------------------------------------------------- /public/assets/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tm.png -------------------------------------------------------------------------------- /public/assets/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tn.png -------------------------------------------------------------------------------- /public/assets/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/to.png -------------------------------------------------------------------------------- /public/assets/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tr.png -------------------------------------------------------------------------------- /public/assets/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tt.png -------------------------------------------------------------------------------- /public/assets/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tv.png -------------------------------------------------------------------------------- /public/assets/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tw.png -------------------------------------------------------------------------------- /public/assets/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/tz.png -------------------------------------------------------------------------------- /public/assets/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ua.png -------------------------------------------------------------------------------- /public/assets/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ug.png -------------------------------------------------------------------------------- /public/assets/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/um.png -------------------------------------------------------------------------------- /public/assets/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/us.png -------------------------------------------------------------------------------- /public/assets/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/uy.png -------------------------------------------------------------------------------- /public/assets/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/uz.png -------------------------------------------------------------------------------- /public/assets/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/va.png -------------------------------------------------------------------------------- /public/assets/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/vc.png -------------------------------------------------------------------------------- /public/assets/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ve.png -------------------------------------------------------------------------------- /public/assets/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/vg.png -------------------------------------------------------------------------------- /public/assets/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/vi.png -------------------------------------------------------------------------------- /public/assets/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/vn.png -------------------------------------------------------------------------------- /public/assets/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/vu.png -------------------------------------------------------------------------------- /public/assets/flags/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/wales.png -------------------------------------------------------------------------------- /public/assets/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/wf.png -------------------------------------------------------------------------------- /public/assets/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ws.png -------------------------------------------------------------------------------- /public/assets/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/ye.png -------------------------------------------------------------------------------- /public/assets/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/yt.png -------------------------------------------------------------------------------- /public/assets/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/za.png -------------------------------------------------------------------------------- /public/assets/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/zm.png -------------------------------------------------------------------------------- /public/assets/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/flags/zw.png -------------------------------------------------------------------------------- /public/assets/images/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/cache/index.html -------------------------------------------------------------------------------- /public/assets/images/logo-openmvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/logo-openmvm.png -------------------------------------------------------------------------------- /public/assets/images/marketplace/customers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/marketplace/customers/index.html -------------------------------------------------------------------------------- /public/assets/images/marketplace/favicon-openmvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/marketplace/favicon-openmvm.png -------------------------------------------------------------------------------- /public/assets/images/marketplace/logo-openmvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/marketplace/logo-openmvm.png -------------------------------------------------------------------------------- /public/assets/images/marketplace/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/marketplace/no_image.png -------------------------------------------------------------------------------- /public/assets/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/no_image.png -------------------------------------------------------------------------------- /public/assets/images/plugin_not_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/plugin_not_installed.png -------------------------------------------------------------------------------- /public/assets/images/theme_not_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/images/theme_not_installed.png -------------------------------------------------------------------------------- /public/assets/marketplace/theme/com_openmvm/Basic/images/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/marketplace/theme/com_openmvm/Basic/images/basic.png -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/auto/auto.cjs: -------------------------------------------------------------------------------- 1 | const exports = require('../dist/chart.cjs'); 2 | const {Chart, registerables} = exports; 3 | 4 | Chart.register(...registerables); 5 | 6 | module.exports = Object.assign(Chart, exports); 7 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/auto/auto.d.ts: -------------------------------------------------------------------------------- 1 | import {Chart} from '../dist/types.js'; 2 | 3 | export * from '../dist/types.js'; 4 | export default Chart; 5 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/auto/auto.js: -------------------------------------------------------------------------------- 1 | import {Chart, registerables} from '../dist/chart.js'; 2 | 3 | Chart.register(...registerables); 4 | 5 | export * from '../dist/chart.js'; 6 | export default Chart; 7 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/auto/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chart.js-auto", 3 | "private": true, 4 | "description": "Auto registering package. Exists to support bundlers without exports support such as webpack 4.", 5 | "type": "module", 6 | "main": "auto.js", 7 | "exports": "./auto.js", 8 | "types": "auto.d.ts" 9 | } 10 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/controllers/controller.line.d.ts: -------------------------------------------------------------------------------- 1 | export default class LineController extends DatasetController { 2 | static id: string; 3 | /** 4 | * @type {any} 5 | */ 6 | static overrides: any; 7 | update(mode: any): void; 8 | /** 9 | * @protected 10 | */ 11 | protected getMaxOverflow(): any; 12 | } 13 | import DatasetController from "../core/core.datasetController.js"; 14 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/controllers/controller.pie.d.ts: -------------------------------------------------------------------------------- 1 | export default class PieController extends DoughnutController { 2 | } 3 | import DoughnutController from "./controller.doughnut.js"; 4 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/controllers/controller.radar.d.ts: -------------------------------------------------------------------------------- 1 | export default class RadarController extends DatasetController { 2 | static id: string; 3 | /** 4 | * @type {any} 5 | */ 6 | static overrides: any; 7 | /** 8 | * @protected 9 | */ 10 | protected getLabelAndValue(index: any): { 11 | label: any; 12 | value: string; 13 | }; 14 | parseObjectData(meta: any, data: any, start: any, count: any): any[]; 15 | update(mode: any): void; 16 | } 17 | import DatasetController from "../core/core.datasetController.js"; 18 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/controllers/controller.scatter.d.ts: -------------------------------------------------------------------------------- 1 | export default class ScatterController extends DatasetController { 2 | static id: string; 3 | /** 4 | * @type {any} 5 | */ 6 | static overrides: any; 7 | /** 8 | * @protected 9 | */ 10 | protected getLabelAndValue(index: any): { 11 | label: any; 12 | value: string; 13 | }; 14 | update(mode: any): void; 15 | /** 16 | * @protected 17 | */ 18 | protected getMaxOverflow(): any; 19 | } 20 | import DatasetController from "../core/core.datasetController.js"; 21 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/controllers/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default as BarController } from "./controller.bar.js"; 2 | export { default as BubbleController } from "./controller.bubble.js"; 3 | export { default as DoughnutController } from "./controller.doughnut.js"; 4 | export { default as LineController } from "./controller.line.js"; 5 | export { default as PolarAreaController } from "./controller.polarArea.js"; 6 | export { default as PieController } from "./controller.pie.js"; 7 | export { default as RadarController } from "./controller.radar.js"; 8 | export { default as ScatterController } from "./controller.scatter.js"; 9 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/core/core.animation.d.ts: -------------------------------------------------------------------------------- 1 | export default class Animation { 2 | constructor(cfg: any, target: any, prop: any, to: any); 3 | _active: boolean; 4 | _fn: any; 5 | _easing: any; 6 | _start: number; 7 | _duration: number; 8 | _total: number; 9 | _loop: boolean; 10 | _target: any; 11 | _prop: any; 12 | _from: unknown; 13 | _to: any; 14 | _promises: any[]; 15 | active(): boolean; 16 | update(cfg: any, to: any, date: any): void; 17 | cancel(): void; 18 | tick(date: any): void; 19 | wait(): Promise; 20 | _notify(resolved: any): void; 21 | } 22 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/core/core.animations.defaults.d.ts: -------------------------------------------------------------------------------- 1 | export function applyAnimationsDefaults(defaults: any): void; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/core/core.layouts.defaults.d.ts: -------------------------------------------------------------------------------- 1 | export function applyLayoutsDefaults(defaults: any): void; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/core/core.scale.autoskip.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @typedef { import('./core.controller.js').default } Chart 3 | * @typedef {{value:number | string, label?:string, major?:boolean, $context?:any}} Tick 4 | */ 5 | /** 6 | * Returns a subset of ticks to be plotted to avoid overlapping labels. 7 | * @param {import('./core.scale.js').default} scale 8 | * @param {Tick[]} ticks 9 | * @return {Tick[]} 10 | * @private 11 | */ 12 | export function autoSkip(scale: import('./core.scale.js').default, ticks: Tick[]): Tick[]; 13 | export type Chart = import('./core.controller.js').default; 14 | export type Tick = { 15 | value: number | string; 16 | label?: string; 17 | major?: boolean; 18 | $context?: any; 19 | }; 20 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/core/core.scale.defaults.d.ts: -------------------------------------------------------------------------------- 1 | export function applyScaleDefaults(defaults: any): void; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/elements/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default as ArcElement } from "./element.arc.js"; 2 | export { default as LineElement } from "./element.line.js"; 3 | export { default as PointElement } from "./element.point.js"; 4 | export { default as BarElement } from "./element.bar.js"; 5 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/helpers.cjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"} -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/helpers.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;"} -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/helpers/helpers.interpolation.d.ts: -------------------------------------------------------------------------------- 1 | import type { Point } from '../../types/geometric.js'; 2 | import type { SplinePoint } from './helpers.curve.js'; 3 | /** 4 | * @private 5 | */ 6 | export declare function _pointInLine(p1: Point, p2: Point, t: number, mode?: any): { 7 | x: number; 8 | y: number; 9 | }; 10 | /** 11 | * @private 12 | */ 13 | export declare function _steppedInterpolation(p1: Point, p2: Point, t: number, mode: 'middle' | 'after' | unknown): { 14 | x: number; 15 | y: number; 16 | }; 17 | /** 18 | * @private 19 | */ 20 | export declare function _bezierInterpolation(p1: SplinePoint, p2: SplinePoint, t: number, mode?: any): { 21 | x: number; 22 | y: number; 23 | }; 24 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/helpers/helpers.intl.d.ts: -------------------------------------------------------------------------------- 1 | export declare function formatNumber(num: number, locale: string, options?: Intl.NumberFormatOptions): string; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/helpers/helpers.rtl.d.ts: -------------------------------------------------------------------------------- 1 | export interface RTLAdapter { 2 | x(x: number): number; 3 | setWidth(w: number): void; 4 | textAlign(align: 'center' | 'left' | 'right'): 'center' | 'left' | 'right'; 5 | xPlus(x: number, value: number): number; 6 | leftForLtr(x: number, itemWidth: number): number; 7 | } 8 | export declare function getRtlAdapter(rtl: boolean, rectX: number, width: number): RTLAdapter; 9 | export declare function overrideTextDirection(ctx: CanvasRenderingContext2D, direction: 'ltr' | 'rtl'): void; 10 | export declare function restoreTextDirection(ctx: CanvasRenderingContext2D, original?: [string, string]): void; 11 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/helpers/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './helpers.color.js'; 2 | export * from './helpers.core.js'; 3 | export * from './helpers.canvas.js'; 4 | export * from './helpers.collection.js'; 5 | export * from './helpers.config.js'; 6 | export * from './helpers.curve.js'; 7 | export * from './helpers.dom.js'; 8 | export { default as easingEffects } from './helpers.easing.js'; 9 | export * from './helpers.extras.js'; 10 | export * from './helpers.interpolation.js'; 11 | export * from './helpers.intl.js'; 12 | export * from './helpers.options.js'; 13 | export * from './helpers.math.js'; 14 | export * from './helpers.rtl.js'; 15 | export * from './helpers.segment.js'; 16 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/helpers/types.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Temporary entry point of the types at the time of the transition. 3 | * After transition done need to remove it in favor of index.ts 4 | */ 5 | export * from './helpers.color.js'; 6 | export * from './helpers.collection.js'; 7 | export * from './helpers.core.js'; 8 | export * from './helpers.curve.js'; 9 | export * from './helpers.dom.js'; 10 | export * from './helpers.easing.js'; 11 | export * from './helpers.extras.js'; 12 | export * from './helpers.interpolation.js'; 13 | export * from './helpers.intl.js'; 14 | export * from './helpers.math.js'; 15 | export * from './helpers.options.js'; 16 | export * from './helpers.rtl.js'; 17 | export * from '../../types/helpers/index.js'; 18 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './controllers/index.js'; 2 | export * from './core/index.js'; 3 | export * from './elements/index.js'; 4 | export * from './platform/index.js'; 5 | export * from './plugins/index.js'; 6 | export * from './scales/index.js'; 7 | import * as controllers from './controllers/index.js'; 8 | import * as elements from './elements/index.js'; 9 | import * as plugins from './plugins/index.js'; 10 | import * as scales from './scales/index.js'; 11 | export { controllers, elements, plugins, scales, }; 12 | export declare const registerables: (typeof controllers | typeof elements | typeof plugins | typeof scales)[]; 13 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/index.umd.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace Chart 3 | */ 4 | import Chart from './core/core.controller.js'; 5 | export default Chart; 6 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/platform/index.d.ts: -------------------------------------------------------------------------------- 1 | export function _detectPlatform(canvas: any): typeof BasicPlatform | typeof DomPlatform; 2 | import BasicPlatform from "./platform.basic.js"; 3 | import DomPlatform from "./platform.dom.js"; 4 | import BasePlatform from "./platform.base.js"; 5 | export { BasePlatform, BasicPlatform, DomPlatform }; 6 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/platform/platform.basic.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Platform class for charts without access to the DOM or to many element properties 3 | * This platform is used by default for any chart passed an OffscreenCanvas. 4 | * @extends BasePlatform 5 | */ 6 | export default class BasicPlatform extends BasePlatform { 7 | acquireContext(item: any): any; 8 | updateConfig(config: any): void; 9 | } 10 | import BasePlatform from "./platform.base.js"; 11 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default as Colors } from "./plugin.colors.js"; 2 | export { default as Decimation } from "./plugin.decimation.js"; 3 | export { default as Filler } from "./plugin.filler/index.js"; 4 | export { default as Legend } from "./plugin.legend.js"; 5 | export { default as SubTitle } from "./plugin.subtitle.js"; 6 | export { default as Title } from "./plugin.title.js"; 7 | export { default as Tooltip } from "./plugin.tooltip.js"; 8 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/plugin.colors.d.ts: -------------------------------------------------------------------------------- 1 | import type { Chart } from '../types.js'; 2 | export interface ColorsPluginOptions { 3 | enabled?: boolean; 4 | forceOverride?: boolean; 5 | } 6 | declare const _default: { 7 | id: string; 8 | defaults: ColorsPluginOptions; 9 | beforeLayout(chart: Chart, _args: any, options: ColorsPluginOptions): void; 10 | }; 11 | export default _default; 12 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/plugin.decimation.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace _default { 2 | const id: string; 3 | namespace defaults { 4 | const algorithm: string; 5 | const enabled: boolean; 6 | } 7 | function beforeElementsUpdate(chart: any, args: any, options: any): void; 8 | function destroy(chart: any): void; 9 | function destroy(chart: any): void; 10 | } 11 | export default _default; 12 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/plugin.filler/filler.drawing.d.ts: -------------------------------------------------------------------------------- 1 | export function _drawfill(ctx: any, source: any, area: any): void; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/plugin.filler/filler.helper.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @param {PointElement[] | { x: number; y: number; }} boundary 3 | * @param {LineElement} line 4 | * @return {LineElement?} 5 | */ 6 | export function _createBoundaryLine(boundary: PointElement[] | { 7 | x: number; 8 | y: number; 9 | }, line: LineElement): LineElement | null; 10 | export function _shouldApplyFill(source: any): boolean; 11 | export type Chart = import('../../core/core.controller.js').default; 12 | export type Scale = import('../../core/core.scale.js').default; 13 | export type PointElement = import('../../elements/element.point.js').default; 14 | import { LineElement } from "../../elements/index.js"; 15 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/plugin.filler/filler.target.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @typedef { import('../../core/core.controller.js').default } Chart 3 | * @typedef { import('../../core/core.scale.js').default } Scale 4 | * @typedef { import('../../elements/element.point.js').default } PointElement 5 | */ 6 | export function _getTarget(source: any): any; 7 | export type Chart = import('../../core/core.controller.js').default; 8 | export type Scale = import('../../core/core.scale.js').default; 9 | export type PointElement = import('../../elements/element.point.js').default; 10 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/plugin.filler/filler.target.stack.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @param {{ chart: Chart; scale: Scale; index: number; line: LineElement; }} source 3 | * @return {LineElement} 4 | */ 5 | export function _buildStackLine(source: { 6 | chart: Chart; 7 | scale: Scale; 8 | index: number; 9 | line: LineElement; 10 | }): LineElement; 11 | export type Chart = import('../../core/core.controller.js').default; 12 | export type Scale = import('../../core/core.scale.js').default; 13 | export type PointElement = import('../../elements/element.point.js').default; 14 | import { LineElement } from "../../elements/index.js"; 15 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/plugins/plugin.filler/simpleArc.d.ts: -------------------------------------------------------------------------------- 1 | export class simpleArc { 2 | constructor(opts: any); 3 | x: any; 4 | y: any; 5 | radius: any; 6 | pathSegment(ctx: any, bounds: any, opts: any): boolean; 7 | interpolate(point: any): { 8 | x: any; 9 | y: any; 10 | angle: any; 11 | }; 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/scales/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default as CategoryScale } from "./scale.category.js"; 2 | export { default as LinearScale } from "./scale.linear.js"; 3 | export { default as LogarithmicScale } from "./scale.logarithmic.js"; 4 | export { default as RadialLinearScale } from "./scale.radialLinear.js"; 5 | export { default as TimeScale } from "./scale.time.js"; 6 | export { default as TimeSeriesScale } from "./scale.timeseries.js"; 7 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/scales/scale.category.d.ts: -------------------------------------------------------------------------------- 1 | export default class CategoryScale extends Scale { 2 | static id: string; 3 | /** 4 | * @type {any} 5 | */ 6 | static defaults: any; 7 | /** @type {number} */ 8 | _startValue: number; 9 | _valueRange: number; 10 | _addedLabels: any[]; 11 | init(scaleOptions: any): void; 12 | parse(raw: any, index: any): number; 13 | buildTicks(): { 14 | value: any; 15 | }[]; 16 | getLabelForValue(value: any): any; 17 | getPixelForValue(value: any): number; 18 | getPixelForTick(index: any): number; 19 | getValueForPixel(pixel: any): number; 20 | } 21 | import Scale from "../core/core.scale.js"; 22 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/scales/scale.linear.d.ts: -------------------------------------------------------------------------------- 1 | export default class LinearScale extends LinearScaleBase { 2 | static id: string; 3 | /** 4 | * @type {any} 5 | */ 6 | static defaults: any; 7 | getPixelForValue(value: any): number; 8 | getValueForPixel(pixel: any): number; 9 | } 10 | import LinearScaleBase from "./scale.linearbase.js"; 11 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/dist/scales/scale.linearbase.d.ts: -------------------------------------------------------------------------------- 1 | export default class LinearScaleBase extends Scale { 2 | /** @type {number} */ 3 | start: number; 4 | /** @type {number} */ 5 | end: number; 6 | /** @type {number} */ 7 | _startValue: number; 8 | /** @type {number} */ 9 | _endValue: number; 10 | _valueRange: number; 11 | parse(raw: any, index: any): number; 12 | handleTickRangeOptions(): void; 13 | getTickLimit(): number; 14 | /** 15 | * @protected 16 | */ 17 | protected computeTickLimit(): number; 18 | getLabelForValue(value: any): string; 19 | } 20 | import Scale from "../core/core.scale.js"; 21 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/helpers/helpers.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../dist/helpers.cjs'); 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/helpers/helpers.d.ts: -------------------------------------------------------------------------------- 1 | export * from '../dist/helpers/index.js'; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/helpers/helpers.js: -------------------------------------------------------------------------------- 1 | export * from '../dist/helpers.js'; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/helpers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chart.js-helpers", 3 | "private": true, 4 | "description": "Helpers package. Exists to support bundlers without exports support such as webpack 4.", 5 | "type": "module", 6 | "main": "helpers.js", 7 | "exports": "./helpers.js", 8 | "types": "helpers.d.ts" 9 | } 10 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/types/basic.d.ts: -------------------------------------------------------------------------------- 1 | 2 | export type AnyObject = Record; 3 | export type EmptyObject = Record; 4 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/types/color.d.ts: -------------------------------------------------------------------------------- 1 | export type Color = string | CanvasGradient | CanvasPattern; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/types/helpers/helpers.segment.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /public/assets/plugins/chart.js-4.1.0/types/helpers/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './helpers.canvas.js'; 2 | export * from './helpers.canvas.js'; 3 | export * from './helpers.segment.js'; 4 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2022 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400} -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2022 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900} -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/fontawesome-free-6.2.1-web/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/jquery/jquery-ui-1.13.2/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/assets/plugins/swipenav/css/jquery-swipe-nav.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* CSS Document */ 3 | #swipeNav{ 4 | width: 300px; 5 | } 6 | #menuBtn{ 7 | cursor: pointer; 8 | } -------------------------------------------------------------------------------- /public/assets/plugins/swipenav/img/list-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/assets/plugins/swipenav/img/list-icon.png -------------------------------------------------------------------------------- /public/assets/plugins/swipenav/js/jquery-swipe-nav-plugin.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(e){e.fn.swipeNav=function(n){var n=e.extend({menu:this,menuBtn:e("#menuBtn"),body:e(document.body),menuSpeed:300},n),t=n.menu.width();e(document.body).css({"overflow-x":"hidden",position:"relative",left:0}),n.menu.css({position:"fixed",top:0,left:-t+"px",width:+t+"px",height:"100%"}),n.menuBtn.on("click",function(){n.body.toggleClass("open"),n.body.hasClass("open")?(n.body.animate({left:t},n.menuSpeed),n.menu.animate({left:0},n.menuSpeed)):(n.menu.animate({left:-t},n.menuSpeed),n.body.animate({left:0},n.menuSpeed))})}}); -------------------------------------------------------------------------------- /public/assets/plugins/tinymce_6.2.0/js/tinymce/langs/README.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /public/assets/plugins/tinymce_6.2.0/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/assets/plugins/tinymce_6.2.0/js/tinymce/skins/ui/oxide/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/assets/plugins/tinymce_6.2.0/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/assets/plugins/tinymce_6.2.0/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/favicon.ico -------------------------------------------------------------------------------- /public/install/app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /public/install/app/Common.php: -------------------------------------------------------------------------------- 1 | 'Continue', 6 | 'button_open_admin' => 'Open Administrator Area', 7 | 'button_open_site' => 'Open Homepage', 8 | ]; -------------------------------------------------------------------------------- /public/install/app/Language/en/Column.php: -------------------------------------------------------------------------------- 1 | 'Current', 6 | 'column_extension' => 'Extension', 7 | 'column_path' => 'Path', 8 | 'column_required' => 'Required', 9 | 'column_setting' => 'Setting', 10 | 'column_status' => 'Status', 11 | ]; -------------------------------------------------------------------------------- /public/install/app/Language/en/Entry.php: -------------------------------------------------------------------------------- 1 | 'DB Driver', 6 | 'entry_hostname' => 'Hostname', 7 | 'entry_db_username' => 'DB Username', 8 | 'entry_db_password' => 'DB Password', 9 | 'entry_database' => 'Database', 10 | 'entry_db_prefix' => 'DB Prefix', 11 | 'entry_firstname' => 'Firstname', 12 | 'entry_lastname' => 'Lastname', 13 | 'entry_email' => 'Email', 14 | 'entry_username' => 'Username', 15 | 'entry_password' => 'Password', 16 | 'entry_passconf' => 'Password Confirmation', 17 | 'entry_admin_url_segment' => 'Admin URL Segment', 18 | ]; -------------------------------------------------------------------------------- /public/install/app/Language/en/Error.php: -------------------------------------------------------------------------------- 1 | 'You must agree to the End-User License Agreement!', 6 | 'error_pre_installation' => 'ERROR: Please check the requirements!', 7 | 'error_required' => '{field} is required!', 8 | 'error_alpha_numeric' => 'The {field} field may only contain alphanumeric characters.', 9 | 'error_connect_database' => 'Failed to connect to database! Please check your server configuration.', 10 | ]; -------------------------------------------------------------------------------- /public/install/app/Language/en/Heading.php: -------------------------------------------------------------------------------- 1 | 'Configuration', 6 | 'heading_finish' => 'Finish', 7 | 'heading_installation' => 'Installation', 8 | 'heading_installation_steps' => 'Installation Steps', 9 | 'heading_license_agreement' => 'License Agreement', 10 | 'heading_pre_installation' => 'Pre-Installation', 11 | 'heading_welcome' => 'Welcome', 12 | 'heading_welcome_to' => 'Welcome to OpenMVM Installation', 13 | ]; -------------------------------------------------------------------------------- /public/install/app/Language/en/Success.php: -------------------------------------------------------------------------------- 1 | 'Success: OpenMVM has been installed successfully!', 6 | ]; -------------------------------------------------------------------------------- /public/install/app/Language/en/Validation.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | OpenMVM 8 | 9 | 10 | 11 | 12 |

Required .env files not found!

13 |

Please rename both env files in root and in public/install folder to .env.

14 |

Click here after renaming those files to start the installation process.

15 | 16 | -------------------------------------------------------------------------------- /public/install/app/Views/errors/cli/error_404.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/install/app/Views/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/install/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/install/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/public/install/public/favicon.ico -------------------------------------------------------------------------------- /public/install/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/install/system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /public/install/system/Cache/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Cache\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all framework-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Cache\Exceptions\ExceptionInterface) { ... } 19 | * 20 | * @deprecated 4.1.2 21 | */ 22 | interface ExceptionInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /public/install/system/Commands/Generators/Views/config.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Config\BaseConfig; 6 | 7 | class {class} extends BaseConfig 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /public/install/system/Commands/Generators/Views/entity.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Entity\Entity; 6 | 7 | class {class} extends Entity 8 | { 9 | protected $datamap = []; 10 | protected $dates = ['created_at', 'updated_at', 'deleted_at']; 11 | protected $casts = []; 12 | } 13 | -------------------------------------------------------------------------------- /public/install/system/Commands/Generators/Views/seeder.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Database\Seeder; 6 | 7 | class {class} extends Seeder 8 | { 9 | public function run() 10 | { 11 | // 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /public/install/system/Commands/Generators/Views/validation.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | class {class} 6 | { 7 | // public function custom_rule(): bool 8 | // { 9 | // return true; 10 | // } 11 | } 12 | -------------------------------------------------------------------------------- /public/install/system/Database/Exceptions/DatabaseException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Database\Exceptions; 13 | 14 | use Error; 15 | 16 | class DatabaseException extends Error implements ExceptionInterface 17 | { 18 | /** 19 | * Exit status code 20 | * 21 | * @var int 22 | */ 23 | protected $code = EXIT_DATABASE; 24 | } 25 | -------------------------------------------------------------------------------- /public/install/system/Database/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Database\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all database-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Database\Exceptions\ExceptionInterface) { ... } 19 | */ 20 | interface ExceptionInterface extends \CodeIgniter\Exceptions\ExceptionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /public/install/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 | -------------------------------------------------------------------------------- /public/install/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/install/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 | -------------------------------------------------------------------------------- /public/install/system/Entity.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter; 13 | 14 | use CodeIgniter\Entity\Entity as CoreEntity; 15 | 16 | /** 17 | * Entity encapsulation, for use with CodeIgniter\Model 18 | * 19 | * @deprecated use CodeIgniter\Entity\Entity class instead 20 | */ 21 | class Entity extends CoreEntity 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /public/install/system/Entity/Cast/BooleanCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class BooleanCast 16 | */ 17 | class BooleanCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): bool 23 | { 24 | return (bool) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/install/system/Entity/Cast/FloatCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class FloatCast 16 | */ 17 | class FloatCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): float 23 | { 24 | return (float) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/install/system/Entity/Cast/IntegerCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class IntegerCast 16 | */ 17 | class IntegerCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): int 23 | { 24 | return (int) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/install/system/Entity/Cast/ObjectCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class ObjectCast 16 | */ 17 | class ObjectCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): object 23 | { 24 | return (object) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/install/system/Entity/Cast/StringCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class StringCast 16 | */ 17 | class StringCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): string 23 | { 24 | return (string) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/install/system/Entity/Cast/URICast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | use CodeIgniter\HTTP\URI; 15 | 16 | /** 17 | * Class URICast 18 | */ 19 | class URICast extends BaseCast 20 | { 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | public static function get($value, array $params = []): URI 25 | { 26 | return $value instanceof URI ? $value : new URI($value); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /public/install/system/Exceptions/AlertError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: Action must be taken immediately (system/db down, etc) 18 | */ 19 | class AlertError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /public/install/system/Exceptions/CriticalError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: Critical conditions, like component unavailable, etc. 18 | */ 19 | class CriticalError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /public/install/system/Exceptions/EmergencyError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: system is unusable 18 | */ 19 | class EmergencyError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /public/install/system/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all framework-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Exceptions\ExceptionInterface) { ... } 19 | */ 20 | interface ExceptionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /public/install/system/Exceptions/TestException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Exception for automatic logging. 16 | */ 17 | class TestException extends CriticalError 18 | { 19 | use DebugTraceableTrait; 20 | 21 | public static function forInvalidMockClass(string $name) 22 | { 23 | return new static(lang('Test.invalidMockClass', [$name])); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /public/install/system/Format/FormatterInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Format; 13 | 14 | /** 15 | * Formatter interface 16 | */ 17 | interface FormatterInterface 18 | { 19 | /** 20 | * Takes the given data and formats it. 21 | * 22 | * @param array|string $data 23 | * 24 | * @return false|string 25 | */ 26 | public function format($data); 27 | } 28 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Cache unable to write to {0}.', 15 | 'invalidHandlers' => 'Cache config must have an array of $validHandlers.', 16 | 'noBackup' => 'Cache config must have a handler and backupHandler set.', 17 | 'handlerNotFound' => 'Cache config has an invalid handler or backup handler specified.', 18 | ]; 19 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Invalid model supplied for fabrication.', 15 | 'missingFormatters' => 'No valid formatters defined.', 16 | 'createFailed' => 'Fabricator failed to insert on table {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'File not found: {0}', 15 | 'cannotMove' => 'Could not move file {0} to {1} ({2}).', 16 | 'expectedDirectory' => '{0} expects a valid directory.', 17 | 'expectedFile' => '{0} expects a valid file.', 18 | ]; 19 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} filter must have a matching alias defined.', 15 | 'incorrectInterface' => '{0} must implement CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" is not a valid Formatter class.', 15 | 'invalidJSON' => 'Failed to parse json string, error: "{0}".', 16 | 'invalidMime' => 'No Formatter defined for mime type: "{0}".', 17 | 'missingExtension' => 'The SimpleXML extension is required to format XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} is an invalid log level.', 15 | 'invalidMessageType' => 'The given message type "{0}" is not supported.', 16 | ]; 17 | -------------------------------------------------------------------------------- /public/install/system/Language/en/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" action not implemented.', 15 | ]; 16 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'The action you requested is not allowed.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'The SameSite value must be None, Lax, Strict, or a blank string. Given: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /public/install/system/Language/en/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} is not a valid Mock class', 15 | ]; 16 | -------------------------------------------------------------------------------- /public/install/system/Router/AutoRouterInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Router; 13 | 14 | /** 15 | * Expected behavior of a AutoRouter. 16 | */ 17 | interface AutoRouterInterface 18 | { 19 | /** 20 | * Returns controller, method and params from the URI. 21 | * 22 | * @return array [directory_name, controller_name, controller_method, params] 23 | */ 24 | public function getRoute(string $uri): array; 25 | } 26 | -------------------------------------------------------------------------------- /public/install/system/Router/Exceptions/RedirectException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Router\Exceptions; 13 | 14 | use Exception; 15 | 16 | /** 17 | * RedirectException 18 | */ 19 | class RedirectException extends Exception 20 | { 21 | /** 22 | * HTTP status code for redirects 23 | * 24 | * @var int 25 | */ 26 | protected $code = 302; 27 | } 28 | -------------------------------------------------------------------------------- /public/install/system/Test/CIDatabaseTestCase.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test; 13 | 14 | /** 15 | * CIDatabaseTestCase 16 | * 17 | * Use DatabaseTestTrait instead. 18 | * 19 | * @deprecated 4.1.2 20 | */ 21 | abstract class CIDatabaseTestCase extends CIUnitTestCase 22 | { 23 | use DatabaseTestTrait; 24 | } 25 | -------------------------------------------------------------------------------- /public/install/system/Test/FeatureResponse.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test; 13 | 14 | /** 15 | * Assertions for a response 16 | * 17 | * @deprecated Use TestResponse directly 18 | */ 19 | class FeatureResponse extends TestResponse 20 | { 21 | /** 22 | * @deprecated Will be protected in a future release, use response() instead 23 | */ 24 | public $response; 25 | } 26 | -------------------------------------------------------------------------------- /public/install/system/Test/Mock/MockAutoload.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use Config\Autoload; 15 | 16 | class MockAutoload extends Autoload 17 | { 18 | public $psr4 = []; 19 | public $classmap = []; 20 | 21 | public function __construct() 22 | { 23 | // Don't call the parent since we don't want the default mappings. 24 | // parent::__construct(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/install/system/Test/Mock/MockBuilder.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Database\BaseBuilder; 15 | 16 | class MockBuilder extends BaseBuilder 17 | { 18 | protected $supportedIgnoreStatements = [ 19 | 'update' => 'IGNORE', 20 | 'insert' => 'IGNORE', 21 | 'delete' => 'IGNORE', 22 | ]; 23 | } 24 | -------------------------------------------------------------------------------- /public/install/system/Test/Mock/MockCodeIgniter.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\CodeIgniter; 15 | 16 | class MockCodeIgniter extends CodeIgniter 17 | { 18 | protected ?string $context = 'web'; 19 | 20 | protected function callExit($code) 21 | { 22 | // Do not call exit() in testing. 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /public/install/system/Test/Mock/MockIncomingRequest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\HTTP\IncomingRequest; 15 | 16 | class MockIncomingRequest extends IncomingRequest 17 | { 18 | protected function detectURI($protocol, $baseURL) 19 | { 20 | // Do nothing... 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /public/install/system/Test/Mock/MockQuery.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Database\Query; 15 | 16 | class MockQuery extends Query 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /public/install/system/ThirdParty/Escaper/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/install/system/Validation/StrictRules/FileRules.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Validation\StrictRules; 15 | 16 | use CodeIgniter\Validation\FileRules as NonStrictFileRules; 17 | 18 | /** 19 | * File validation rules 20 | */ 21 | class FileRules extends NonStrictFileRules 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /public/install/system/Validation/Views/list.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /public/install/system/Validation/Views/single.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/install/system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/install/writable/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /public/install/writable/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /system/Cache/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Cache\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all framework-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Cache\Exceptions\ExceptionInterface) { ... } 19 | * 20 | * @deprecated 4.1.2 21 | */ 22 | interface ExceptionInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /system/Commands/Generators/Views/config.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Config\BaseConfig; 6 | 7 | class {class} extends BaseConfig 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /system/Commands/Generators/Views/entity.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Entity\Entity; 6 | 7 | class {class} extends Entity 8 | { 9 | protected $datamap = []; 10 | protected $dates = ['created_at', 'updated_at', 'deleted_at']; 11 | protected $casts = []; 12 | } 13 | -------------------------------------------------------------------------------- /system/Commands/Generators/Views/seeder.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Database\Seeder; 6 | 7 | class {class} extends Seeder 8 | { 9 | public function run() 10 | { 11 | // 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /system/Commands/Generators/Views/validation.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | class {class} 6 | { 7 | // public function custom_rule(): bool 8 | // { 9 | // return true; 10 | // } 11 | } 12 | -------------------------------------------------------------------------------- /system/Config/Routes.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * System URI Routing 14 | * 15 | * This file contains any routing to system tools, such as command-line 16 | * tools for migrations, etc. 17 | * 18 | * It is called by Config\Routes, and has the $routes RouteCollection 19 | * already loaded up and ready for us to use. 20 | */ 21 | 22 | // CLI Catchall - uses a _remap to call Commands 23 | $routes->cli('ci(:any)', '\CodeIgniter\CLI\CommandRunner::index/$1'); 24 | -------------------------------------------------------------------------------- /system/Database/Exceptions/DatabaseException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Database\Exceptions; 13 | 14 | use Error; 15 | 16 | class DatabaseException extends Error implements ExceptionInterface 17 | { 18 | /** 19 | * Exit status code 20 | * 21 | * @var int 22 | */ 23 | protected $code = EXIT_DATABASE; 24 | } 25 | -------------------------------------------------------------------------------- /system/Database/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Database\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all database-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Database\Exceptions\ExceptionInterface) { ... } 19 | */ 20 | interface ExceptionInterface extends \CodeIgniter\Exceptions\ExceptionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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/Entity.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter; 13 | 14 | use CodeIgniter\Entity\Entity as CoreEntity; 15 | 16 | /** 17 | * Entity encapsulation, for use with CodeIgniter\Model 18 | * 19 | * @deprecated use CodeIgniter\Entity\Entity class instead 20 | */ 21 | class Entity extends CoreEntity 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /system/Entity/Cast/BooleanCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class BooleanCast 16 | */ 17 | class BooleanCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): bool 23 | { 24 | return (bool) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /system/Entity/Cast/FloatCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class FloatCast 16 | */ 17 | class FloatCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): float 23 | { 24 | return (float) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /system/Entity/Cast/IntegerCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class IntegerCast 16 | */ 17 | class IntegerCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): int 23 | { 24 | return (int) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /system/Entity/Cast/ObjectCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class ObjectCast 16 | */ 17 | class ObjectCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): object 23 | { 24 | return (object) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /system/Entity/Cast/StringCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class StringCast 16 | */ 17 | class StringCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): string 23 | { 24 | return (string) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /system/Entity/Cast/URICast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | use CodeIgniter\HTTP\URI; 15 | 16 | /** 17 | * Class URICast 18 | */ 19 | class URICast extends BaseCast 20 | { 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | public static function get($value, array $params = []): URI 25 | { 26 | return $value instanceof URI ? $value : new URI($value); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /system/Exceptions/AlertError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: Action must be taken immediately (system/db down, etc) 18 | */ 19 | class AlertError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /system/Exceptions/CriticalError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: Critical conditions, like component unavailable, etc. 18 | */ 19 | class CriticalError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /system/Exceptions/EmergencyError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: system is unusable 18 | */ 19 | class EmergencyError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /system/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all framework-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Exceptions\ExceptionInterface) { ... } 19 | */ 20 | interface ExceptionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /system/Exceptions/TestException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Exception for automatic logging. 16 | */ 17 | class TestException extends CriticalError 18 | { 19 | use DebugTraceableTrait; 20 | 21 | public static function forInvalidMockClass(string $name) 22 | { 23 | return new static(lang('Test.invalidMockClass', [$name])); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /system/Format/FormatterInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Format; 13 | 14 | /** 15 | * Formatter interface 16 | */ 17 | interface FormatterInterface 18 | { 19 | /** 20 | * Takes the given data and formats it. 21 | * 22 | * @param array|string $data 23 | * 24 | * @return false|string 25 | */ 26 | public function format($data); 27 | } 28 | -------------------------------------------------------------------------------- /system/Language/en/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Cache unable to write to {0}.', 15 | 'invalidHandlers' => 'Cache config must have an array of $validHandlers.', 16 | 'noBackup' => 'Cache config must have a handler and backupHandler set.', 17 | 'handlerNotFound' => 'Cache config has an invalid handler or backup handler specified.', 18 | ]; 19 | -------------------------------------------------------------------------------- /system/Language/en/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Invalid model supplied for fabrication.', 15 | 'missingFormatters' => 'No valid formatters defined.', 16 | 'createFailed' => 'Fabricator failed to insert on table {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /system/Language/en/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'File not found: {0}', 15 | 'cannotMove' => 'Could not move file {0} to {1} ({2}).', 16 | 'expectedDirectory' => '{0} expects a valid directory.', 17 | 'expectedFile' => '{0} expects a valid file.', 18 | ]; 19 | -------------------------------------------------------------------------------- /system/Language/en/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} filter must have a matching alias defined.', 15 | 'incorrectInterface' => '{0} must implement CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /system/Language/en/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" is not a valid Formatter class.', 15 | 'invalidJSON' => 'Failed to parse json string, error: "{0}".', 16 | 'invalidMime' => 'No Formatter defined for mime type: "{0}".', 17 | 'missingExtension' => 'The SimpleXML extension is required to format XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /system/Language/en/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} is an invalid log level.', 15 | 'invalidMessageType' => 'The given message type "{0}" is not supported.', 16 | ]; 17 | -------------------------------------------------------------------------------- /system/Language/en/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" action not implemented.', 15 | ]; 16 | -------------------------------------------------------------------------------- /system/Language/en/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'The action you requested is not allowed.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'The SameSite value must be None, Lax, Strict, or a blank string. Given: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /system/Language/en/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} is not a valid Mock class', 15 | ]; 16 | -------------------------------------------------------------------------------- /system/Pager/Views/default_simple.php: -------------------------------------------------------------------------------- 1 | setSurroundCount(0); 9 | ?> 10 | 24 | -------------------------------------------------------------------------------- /system/Router/AutoRouterInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Router; 13 | 14 | /** 15 | * Expected behavior of a AutoRouter. 16 | */ 17 | interface AutoRouterInterface 18 | { 19 | /** 20 | * Returns controller, method and params from the URI. 21 | * 22 | * @return array [directory_name, controller_name, controller_method, params] 23 | */ 24 | public function getRoute(string $uri): array; 25 | } 26 | -------------------------------------------------------------------------------- /system/Router/Exceptions/RedirectException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Router\Exceptions; 13 | 14 | use Exception; 15 | 16 | /** 17 | * RedirectException 18 | */ 19 | class RedirectException extends Exception 20 | { 21 | /** 22 | * HTTP status code for redirects 23 | * 24 | * @var int 25 | */ 26 | protected $code = 302; 27 | } 28 | -------------------------------------------------------------------------------- /system/Test/CIDatabaseTestCase.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test; 13 | 14 | /** 15 | * CIDatabaseTestCase 16 | * 17 | * Use DatabaseTestTrait instead. 18 | * 19 | * @deprecated 4.1.2 20 | */ 21 | abstract class CIDatabaseTestCase extends CIUnitTestCase 22 | { 23 | use DatabaseTestTrait; 24 | } 25 | -------------------------------------------------------------------------------- /system/Test/FeatureResponse.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test; 13 | 14 | /** 15 | * Assertions for a response 16 | * 17 | * @deprecated Use TestResponse directly 18 | */ 19 | class FeatureResponse extends TestResponse 20 | { 21 | /** 22 | * @deprecated Will be protected in a future release, use response() instead 23 | */ 24 | public $response; 25 | } 26 | -------------------------------------------------------------------------------- /system/Test/Mock/MockAutoload.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use Config\Autoload; 15 | 16 | class MockAutoload extends Autoload 17 | { 18 | public $psr4 = []; 19 | public $classmap = []; 20 | 21 | public function __construct() 22 | { 23 | // Don't call the parent since we don't want the default mappings. 24 | // parent::__construct(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /system/Test/Mock/MockBuilder.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Database\BaseBuilder; 15 | 16 | class MockBuilder extends BaseBuilder 17 | { 18 | protected $supportedIgnoreStatements = [ 19 | 'update' => 'IGNORE', 20 | 'insert' => 'IGNORE', 21 | 'delete' => 'IGNORE', 22 | ]; 23 | } 24 | -------------------------------------------------------------------------------- /system/Test/Mock/MockCodeIgniter.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\CodeIgniter; 15 | 16 | class MockCodeIgniter extends CodeIgniter 17 | { 18 | protected ?string $context = 'web'; 19 | 20 | protected function callExit($code) 21 | { 22 | // Do not call exit() in testing. 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /system/Test/Mock/MockIncomingRequest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\HTTP\IncomingRequest; 15 | 16 | class MockIncomingRequest extends IncomingRequest 17 | { 18 | protected function detectURI($protocol, $baseURL) 19 | { 20 | // Do nothing... 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /system/Test/Mock/MockQuery.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Database\Query; 15 | 16 | class MockQuery extends Query 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /system/Validation/StrictRules/FileRules.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Validation\StrictRules; 15 | 16 | use CodeIgniter\Validation\FileRules as NonStrictFileRules; 17 | 18 | /** 19 | * File validation rules 20 | */ 21 | class FileRules extends NonStrictFileRules 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /system/Validation/Views/list.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /system/Validation/Views/single.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /theme_admin/com_example/Test/Language/en/Heading.php: -------------------------------------------------------------------------------- 1 | 'Theme Test', 6 | ]; 7 | -------------------------------------------------------------------------------- /theme_admin/com_example/Test/Language/en/Text.php: -------------------------------------------------------------------------------- 1 | 'Theme Test is an OpenMVM administrator theme created by example.com.', 6 | 'theme_test' => 'Theme Test', 7 | ]; 8 | -------------------------------------------------------------------------------- /theme_admin/com_example/Test/assets/admin/theme/com_example/Test/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/theme_admin/com_example/Test/assets/admin/theme/com_example/Test/images/test.png -------------------------------------------------------------------------------- /theme_admin/com_openmvm/Basic/Language/en/Heading.php: -------------------------------------------------------------------------------- 1 | 'Theme Basic', 6 | ]; 7 | -------------------------------------------------------------------------------- /theme_admin/com_openmvm/Basic/Language/en/Text.php: -------------------------------------------------------------------------------- 1 | 'Theme Basic is an OpenMVM administrator theme created by OpenMVM.', 6 | 'theme_basic' => 'Theme Basic', 7 | ]; 8 | -------------------------------------------------------------------------------- /theme_admin/com_openmvm/Basic/Views/Common/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
( )
4 |
5 | 6 | -------------------------------------------------------------------------------- /theme_marketplace/com_example/Test/Language/en/Heading.php: -------------------------------------------------------------------------------- 1 | 'Theme Test (by example.com)', 6 | ]; 7 | -------------------------------------------------------------------------------- /theme_marketplace/com_example/Test/Language/en/Text.php: -------------------------------------------------------------------------------- 1 | 'Theme Test is an OpenMVM marketplace theme created by example.com.', 6 | 'example_marketplace_theme_test' => 'Theme Test (by example.com)', 7 | ]; 8 | -------------------------------------------------------------------------------- /theme_marketplace/com_example/Test/assets/marketplace/theme/com_example/Test/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/theme_marketplace/com_example/Test/assets/marketplace/theme/com_example/Test/images/test.png -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Account/account.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Account/logout.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Appearance/Marketplace/Widgets/html_content.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 |
5 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Appearance/Marketplace/Widgets/link.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Appearance/Marketplace/Widgets/page.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 9 |
10 | 11 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Appearance/Marketplace/Widgets/seller_description.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Checkout/checkout_confirm.php: -------------------------------------------------------------------------------- 1 | 2 |
getCurrentCode()); ?>
3 | 4 |
5 | 6 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Common/error.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Common/wallet.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Page/page.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Page/page_info.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

5 |
6 |
7 |
8 | 9 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Product/category_all.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

5 | 6 |
7 | 8 |
9 |
10 | 11 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Product/product_all.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

5 | 6 |
7 | 8 |
9 |
10 | 11 | -------------------------------------------------------------------------------- /theme_marketplace/com_openmvm/Basic/Views/Seller/seller.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /writable/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/writable/cache/index.html -------------------------------------------------------------------------------- /writable/debugbar/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmvm/OpenMVM/dab7c5a9c6a073aee07a9d02ff7801adb747cedb/writable/debugbar/.gitkeep -------------------------------------------------------------------------------- /writable/downloads/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 | -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/temp/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 | --------------------------------------------------------------------------------