├── .docker ├── Dockerfile ├── docker_run_git.sh └── wait-for-it.sh ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── contrib │ ├── install.php │ ├── pre-commit │ └── uninstall.php ├── release │ ├── README.md │ ├── create_release.sh │ ├── package-lock.json │ ├── package.json │ └── replace_version.js └── workflows │ ├── php.yml │ └── ui-tests-code-checks.yml ├── .gitignore ├── .php_cs.dist ├── .prettyci.composer.json ├── .scrutinizer.yml ├── .t9n.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── INSTALL.txt ├── LICENSE.md ├── README.md ├── admin-dev ├── .htaccess ├── ajax-tab.php ├── ajax.php ├── ajax_products_list.php ├── autoupgrade │ ├── backup │ │ └── index.php │ └── index.php ├── backup.php ├── backups │ ├── .htaccess │ └── index.php ├── bootstrap.php ├── cron_currency_rates.php ├── displayImage.php ├── drawer.php ├── export │ ├── .htaccess │ └── index.php ├── favicon.ico ├── filemanager │ ├── LICENSE │ ├── ajax_calls.php │ ├── config │ │ ├── config.php │ │ └── index.php │ ├── css │ │ ├── bootstrap-lightbox.min.css │ │ ├── bootstrap-modal.min.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.min.css │ │ ├── dropzone.css │ │ ├── dropzone.min.css │ │ ├── index.php │ │ ├── jquery.contextMenu.min.css │ │ ├── style.css │ │ └── style.less │ ├── dialog.php │ ├── execute.php │ ├── force_download.php │ ├── img │ │ ├── cut.png │ │ ├── date.png │ │ ├── dimension.png │ │ ├── door.png │ │ ├── down.png │ │ ├── download.png │ │ ├── duplicate.png │ │ ├── edit_img.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── ico │ │ │ ├── ac3.jpg │ │ │ ├── accdb.jpg │ │ │ ├── ade.jpg │ │ │ ├── adp.jpg │ │ │ ├── ai.jpg │ │ │ ├── aiff.jpg │ │ │ ├── avi.jpg │ │ │ ├── bmp.jpg │ │ │ ├── css.jpg │ │ │ ├── csv.jpg │ │ │ ├── default.jpg │ │ │ ├── dmg.jpg │ │ │ ├── doc.jpg │ │ │ ├── docx.jpg │ │ │ ├── favicon.ico │ │ │ ├── fla.jpg │ │ │ ├── flv.jpg │ │ │ ├── folder.jpg │ │ │ ├── folder.png │ │ │ ├── folder_back.jpg │ │ │ ├── folder_back.png │ │ │ ├── gif.jpg │ │ │ ├── gz.jpg │ │ │ ├── html.jpg │ │ │ ├── index.php │ │ │ ├── iso.jpg │ │ │ ├── jpeg.jpg │ │ │ ├── jpg.jpg │ │ │ ├── log.jpg │ │ │ ├── m4a.jpg │ │ │ ├── mdb.jpg │ │ │ ├── mid.jpg │ │ │ ├── mov.jpg │ │ │ ├── mp3.jpg │ │ │ ├── mp4.jpg │ │ │ ├── mpeg.jpg │ │ │ ├── mpg.jpg │ │ │ ├── odb.jpg │ │ │ ├── odf.jpg │ │ │ ├── odg.jpg │ │ │ ├── odp.jpg │ │ │ ├── ods.jpg │ │ │ ├── odt.jpg │ │ │ ├── ogg.jpg │ │ │ ├── otg.jpg │ │ │ ├── otp.jpg │ │ │ ├── ots.jpg │ │ │ ├── ott.jpg │ │ │ ├── pdf.jpg │ │ │ ├── png.jpg │ │ │ ├── ppt.jpg │ │ │ ├── pptx.jpg │ │ │ ├── psd.jpg │ │ │ ├── rar.jpg │ │ │ ├── rtf.jpg │ │ │ ├── sql.jpg │ │ │ ├── svg.jpg │ │ │ ├── tar.jpg │ │ │ ├── tiff.jpg │ │ │ ├── txt.jpg │ │ │ ├── wav.jpg │ │ │ ├── webm.jpg │ │ │ ├── wma.jpg │ │ │ ├── xhtml.jpg │ │ │ ├── xls.jpg │ │ │ ├── xlsx.jpg │ │ │ ├── xml.jpg │ │ │ └── zip.jpg │ │ ├── ico_dark │ │ │ ├── ac3.jpg │ │ │ ├── accdb.jpg │ │ │ ├── ade.jpg │ │ │ ├── adp.jpg │ │ │ ├── ai.jpg │ │ │ ├── aiff.jpg │ │ │ ├── avi.jpg │ │ │ ├── bmp.jpg │ │ │ ├── css.jpg │ │ │ ├── csv.jpg │ │ │ ├── default.jpg │ │ │ ├── dmg.jpg │ │ │ ├── doc.jpg │ │ │ ├── docx.jpg │ │ │ ├── favicon.ico │ │ │ ├── fla.jpg │ │ │ ├── flv.jpg │ │ │ ├── folder.jpg │ │ │ ├── folder.png │ │ │ ├── folder_back.jpg │ │ │ ├── folder_back.png │ │ │ ├── gif.jpg │ │ │ ├── gz.jpg │ │ │ ├── html.jpg │ │ │ ├── index.php │ │ │ ├── iso.jpg │ │ │ ├── jpeg.jpg │ │ │ ├── jpg.jpg │ │ │ ├── log.jpg │ │ │ ├── m4a.jpg │ │ │ ├── mdb.jpg │ │ │ ├── mid.jpg │ │ │ ├── mov.jpg │ │ │ ├── mp3.jpg │ │ │ ├── mp4.jpg │ │ │ ├── mpeg.jpg │ │ │ ├── mpg.jpg │ │ │ ├── odb.jpg │ │ │ ├── odf.jpg │ │ │ ├── odg.jpg │ │ │ ├── odp.jpg │ │ │ ├── ods.jpg │ │ │ ├── odt.jpg │ │ │ ├── ogg.jpg │ │ │ ├── otg.jpg │ │ │ ├── otp.jpg │ │ │ ├── ots.jpg │ │ │ ├── ott.jpg │ │ │ ├── pdf.jpg │ │ │ ├── png.jpg │ │ │ ├── ppt.jpg │ │ │ ├── pptx.jpg │ │ │ ├── psd.jpg │ │ │ ├── rar.jpg │ │ │ ├── rtf.jpg │ │ │ ├── sql.jpg │ │ │ ├── svg.jpg │ │ │ ├── tar.jpg │ │ │ ├── tiff.jpg │ │ │ ├── txt.jpg │ │ │ ├── wav.jpg │ │ │ ├── webm.jpg │ │ │ ├── wma.jpg │ │ │ ├── xhtml.jpg │ │ │ ├── xls.jpg │ │ │ ├── xlsx.jpg │ │ │ ├── xml.jpg │ │ │ └── zip.jpg │ │ ├── index.php │ │ ├── info.png │ │ ├── label.png │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── page_white_add.png │ │ ├── page_white_copy.png │ │ ├── page_white_delete.png │ │ ├── page_white_edit.png │ │ ├── page_white_paste.png │ │ ├── preview.png │ │ ├── processing.gif │ │ ├── rename.png │ │ ├── size.png │ │ ├── sort.png │ │ ├── spritemap.png │ │ ├── spritemap@2x.png │ │ ├── spritemap@2x_hu_HU.png │ │ ├── spritemap_hu_HU.png │ │ ├── storing_animation.gif │ │ ├── up.png │ │ ├── url.png │ │ └── zip.png │ ├── include │ │ ├── index.php │ │ ├── php_image_magician.php │ │ └── utils.php │ ├── index.php │ ├── jPlayer │ │ ├── add-on │ │ │ ├── index.php │ │ │ ├── jplayer.playlist.min.js │ │ │ └── jquery.jplayer.inspector.js │ │ ├── index.php │ │ ├── jquery.jplayer.min.js │ │ ├── popcorn │ │ │ ├── index.php │ │ │ └── popcorn.jplayer.js │ │ └── skin │ │ │ ├── blue.monday │ │ │ ├── index.php │ │ │ ├── jplayer.blue.monday.css │ │ │ ├── jplayer.blue.monday.jpg │ │ │ ├── jplayer.blue.monday.seeking.gif │ │ │ ├── jplayer.blue.monday.video.play.png │ │ │ └── spirites_blue.monday_2011.pxm │ │ │ └── index.php │ ├── js │ │ ├── bootbox.min.js │ │ ├── bootstrap-lightbox.min.js │ │ ├── bootstrap-modal.min.js │ │ ├── bootstrap-modalmanager.min.js │ │ ├── bootstrap.min.js │ │ ├── dropzone.min.js │ │ ├── imagesloaded.pkgd.min.js │ │ ├── include.js │ │ ├── include.min.js │ │ ├── index.php │ │ ├── jquery.contextMenu.js │ │ ├── jquery.contextMenu.min.js │ │ ├── jquery.js │ │ ├── jquery.queryloader2.min.js │ │ ├── jquery.touchSwipe.min.js │ │ ├── jquery.ui.position.js │ │ ├── jquery.ui.position.min.js │ │ └── modernizr.custom.js │ ├── lang │ │ ├── az.php │ │ ├── bg.php │ │ ├── br.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fa.php │ │ ├── fr.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── index.php │ │ ├── it.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt.php │ │ ├── ru.php │ │ ├── se.php │ │ ├── sk.php │ │ ├── tr.php │ │ └── uk.php │ ├── plugin.js │ ├── plugin.min.js │ ├── upload.php │ └── uploader │ │ ├── index.php │ │ ├── success.jpg │ │ └── success.php ├── footer.inc.php ├── functions.php ├── get-file-admin.php ├── grider.php ├── header.inc.php ├── import │ ├── .htaccess │ └── index.php ├── index.php ├── init.php ├── package-lock.json ├── package.json ├── pdf.php ├── public │ └── bundle.js ├── robots.txt ├── searchcron.php ├── themes │ ├── default │ │ ├── bower.json │ │ ├── css │ │ │ ├── bundle │ │ │ │ ├── default.css │ │ │ │ └── shared.css │ │ │ ├── font.css │ │ │ ├── index.php │ │ │ ├── overrides.css │ │ │ └── vendor │ │ │ │ ├── font-awesome │ │ │ │ ├── LICENSE │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.css.map │ │ │ │ ├── index.php │ │ │ │ ├── nv.d3.css │ │ │ │ └── titatoggle-min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ └── index.php │ │ ├── img │ │ │ ├── ajax-loader.gif │ │ │ ├── bg-button-degrade.png │ │ │ ├── bg-degrade-table.png │ │ │ ├── bg-lang.png │ │ │ ├── bg-quick.png │ │ │ ├── bg-submenu.png │ │ │ ├── bg-subtab.png │ │ │ ├── bg-tab.png │ │ │ ├── bg-top.png │ │ │ ├── bg_loaderSpace.png │ │ │ ├── bullet_orange.png │ │ │ ├── bundle │ │ │ │ ├── dashboard_loading.gif │ │ │ │ ├── pub_conversion_EN.gif │ │ │ │ ├── pub_loyalty_EN.gif │ │ │ │ └── pub_trafic_EN.gif │ │ │ ├── button-bg.png │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen-sprite@2x.png │ │ │ ├── dashboard_loading.gif │ │ │ ├── export-csv.png │ │ │ ├── footer-bg.png │ │ │ ├── header_module.png │ │ │ ├── icon-attention.png │ │ │ ├── icon-cancel.png │ │ │ ├── icon-info.png │ │ │ ├── icon-multishop.png │ │ │ ├── icon-search.png │ │ │ ├── icon-search2.png │ │ │ ├── icon-sprites-title.png │ │ │ ├── icon-valid-green.png │ │ │ ├── index.php │ │ │ ├── live_edit.png │ │ │ ├── loader.gif │ │ │ ├── lock.png │ │ │ ├── logout.png │ │ │ ├── module-logout.png │ │ │ ├── module-profile.png │ │ │ ├── modules_list_button.png │ │ │ ├── modules_view_layout_sidebar.png │ │ │ ├── modules_view_layout_sidebar_grey.png │ │ │ ├── modules_view_table_select_row.png │ │ │ ├── modules_view_table_select_row_grey.png │ │ │ ├── news-bg.gif │ │ │ ├── notif_customer.png │ │ │ ├── notif_message.png │ │ │ ├── notif_order.png │ │ │ ├── patterns │ │ │ │ ├── bedge_grunge.png │ │ │ │ ├── classy_fabric.png │ │ │ │ └── index.php │ │ │ ├── play.png │ │ │ ├── prestashop-addons-logo.png │ │ │ ├── prestashop-avatar-header_shopname.png │ │ │ ├── preston.png │ │ │ ├── process-icon-addProduct.png │ │ │ ├── process-icon-back.png │ │ │ ├── process-icon-cancel.png │ │ │ ├── process-icon-delete.png │ │ │ ├── process-icon-duplicate.png │ │ │ ├── process-icon-edit.png │ │ │ ├── process-icon-export-csv-details.png │ │ │ ├── process-icon-export-csv.png │ │ │ ├── process-icon-help-new.png │ │ │ ├── process-icon-help.png │ │ │ ├── process-icon-import.png │ │ │ ├── process-icon-modules-list.png │ │ │ ├── process-icon-new-module-addon.png │ │ │ ├── process-icon-new-module.png │ │ │ ├── process-icon-new-url.png │ │ │ ├── process-icon-new.png │ │ │ ├── process-icon-partial-refund.png │ │ │ ├── process-icon-preview.png │ │ │ ├── process-icon-refresh-cache.png │ │ │ ├── process-icon-refresh-index.png │ │ │ ├── process-icon-save-and-stay.png │ │ │ ├── process-icon-save-calendar.png │ │ │ ├── process-icon-save.png │ │ │ ├── process-icon-standard-refund.png │ │ │ ├── process-icon-stats.png │ │ │ ├── searchbar.png │ │ │ ├── searchbutton.png │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.png │ │ │ ├── select2x2.png │ │ │ ├── separator.png │ │ │ ├── separator_subnav.png │ │ │ ├── spinner.gif │ │ │ ├── tab_right.gif │ │ │ ├── thead.png │ │ │ ├── tree-multishop-groups.png │ │ │ ├── tree-multishop-root.png │ │ │ ├── tree-multishop-shop.png │ │ │ ├── tree-multishop-url.png │ │ │ └── trophy.png │ │ ├── index.php │ │ ├── js │ │ │ ├── admin-theme.js │ │ │ ├── bundle │ │ │ │ ├── admin_parameters │ │ │ │ │ ├── performancePage.js │ │ │ │ │ └── performancePageUI.js │ │ │ │ ├── category-tree.js │ │ │ │ ├── default.js │ │ │ │ ├── modal-confirmation.js │ │ │ │ ├── module │ │ │ │ │ ├── loader.js │ │ │ │ │ ├── module.js │ │ │ │ │ └── module_card.js │ │ │ │ ├── pagination.js │ │ │ │ ├── plugins │ │ │ │ │ └── jquery.pstagger.js │ │ │ │ ├── product │ │ │ │ │ ├── catalog.js │ │ │ │ │ ├── default-category.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── product-category-tags.js │ │ │ │ │ ├── product-combinations.js │ │ │ │ │ ├── product-manufacturer.js │ │ │ │ │ └── product-related.js │ │ │ │ └── right-sidebar.js │ │ │ ├── calendar.js │ │ │ ├── date-range-picker.js │ │ │ ├── help.js │ │ │ ├── index.php │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload.LICENSE │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── modernizr-loads.js │ │ │ ├── theme.js │ │ │ ├── tree.js │ │ │ └── vendor │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── index.php │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ │ ├── enquire.LICENSE │ │ │ │ ├── enquire.min.js │ │ │ │ ├── index.php │ │ │ │ ├── jquery-passy.LICENSE │ │ │ │ ├── jquery-passy.js │ │ │ │ ├── matchMedia.LICENSE │ │ │ │ ├── matchMedia.addListener.js │ │ │ │ ├── matchMedia.js │ │ │ │ ├── modernizr.LICENSE │ │ │ │ ├── modernizr.min.js │ │ │ │ ├── moment-with-langs.min.js │ │ │ │ ├── moment.LICENSE │ │ │ │ ├── nv.d3.min.js │ │ │ │ ├── nvd3.LICENSE │ │ │ │ ├── typeahead.LICENSE │ │ │ │ └── typeahead.min.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ │ ├── 012cf6a10129e2275d79d6adac7f3b02.woff │ │ │ ├── 08952b029e4decbc8ef9fb553cae8cea.woff2 │ │ │ ├── 1c0b4eb93fcf561eec03297a24922d6c.ttf │ │ │ ├── 24aab533f87e7b434be5fa5b1684975c.svg │ │ │ ├── 2980083682e94d33a66eef2e7d612519.svg │ │ │ ├── 2a9a30e14574c9ec24add2901a80b81c.svg │ │ │ ├── 3326e4d74d3924ee1c882c29f5b571c0.woff2 │ │ │ ├── 3343e54368719e3786f78a1b22839455.woff2 │ │ │ ├── 33f225b8f5f7d6b34a0926f58f96c1e9.ttf │ │ │ ├── 383eba0e55ed778006d76428812d343c.woff2 │ │ │ ├── 389ca666f6d8279a80bf54a644c16f20.png │ │ │ ├── 525074686dfb8aa36b1b92e29de467ac.woff │ │ │ ├── 55835483c304eaa8477fea2c36abba17.woff2 │ │ │ ├── 570eb83859dc23dd0eec423a49e147fe.woff2 │ │ │ ├── 59b0f4c15b9b43ef643eefa44b5096f3.gif │ │ │ ├── 5a100916f94b0babde0c92aaa8fb80d6.ttf │ │ │ ├── 5aaceea2d60ddb477c6aafc825eece3d.woff2 │ │ │ ├── 5be71612af754cc566ec30ef200d8a65.woff │ │ │ ├── 706450d7bba6374ca02fe167d86685cb.ttf │ │ │ ├── 7be88e73fea7b64568a450d7c01346b0.woff │ │ │ ├── 892667349c5cff6fcf7e40439596b97c.woff │ │ │ ├── 97493d3f11c0a3bd5cbd959f5d19b699.woff2 │ │ │ ├── 9b30f13428e1b4a659aeeab4ac1fff35.ttf │ │ │ ├── 9f2144213fad53d4e0fdb26ecf93865f.woff │ │ │ ├── a282a2adada37bcc8a97c8113733e56c.png │ │ │ ├── a33a878f3861ca67e9bc423c58b2a357.svg │ │ │ ├── a37b0c01c0baf1888ca812cc0508f6e2.ttf │ │ │ ├── ac327c4db6284ef64ebe872b6308f5da.woff │ │ │ ├── b46ff9f5c8bcba1ea3b4b320e22be5c7.svg │ │ │ ├── bf4dde0147bb02556500d922e2efc90b.svg │ │ │ ├── bundle.js │ │ │ ├── c36b5ac7c2dddf6f525c8d161412ef41.ttf │ │ │ ├── cd7296352d159532b66c07d98efb1126.ttf │ │ │ ├── cd94e25905d9ac90bab221600bf19312.png │ │ │ ├── d9ee23d59d0e0e727b51368b458a0bff.woff │ │ │ ├── e79bfd88537def476913f3ed52f4f4b3.eot │ │ │ ├── eb24af6668c633feab6bf8f989296e73.woff2 │ │ │ ├── ec55f263e2b86bc0f28fff46b873d6df.woff │ │ │ ├── f7c2b4b747b1a225eb8dee034134a1b0.eot │ │ │ ├── fabb0801a35dfb37b94447b53e588e80.gif │ │ │ ├── fbc2a379fdad6d5a1b10c881644bc5dd.png │ │ │ ├── fedf49d31f55f4beaf2c891f3875554f.svg │ │ │ ├── theme.css │ │ │ └── theme.rtlfix │ │ ├── sass │ │ │ ├── admin-theme.sass │ │ │ ├── controllers │ │ │ │ ├── _carrier-wizard.sass │ │ │ │ ├── _customer-thread.sass │ │ │ │ ├── _dashboard.sass │ │ │ │ ├── _login.sass │ │ │ │ ├── _modules.sass │ │ │ │ ├── _order.sass │ │ │ │ ├── _products.sass │ │ │ │ ├── _search.sass │ │ │ │ ├── _themes.sass │ │ │ │ ├── _translations.sass │ │ │ │ └── index.php │ │ │ ├── font.scss │ │ │ ├── index.php │ │ │ ├── modules │ │ │ │ ├── _colors.sass │ │ │ │ ├── _mixins.sass │ │ │ │ ├── _variables.sass │ │ │ │ ├── colors │ │ │ │ │ ├── _ambers.scss │ │ │ │ │ ├── _blues.scss │ │ │ │ │ ├── _browns.scss │ │ │ │ │ ├── _grays.scss │ │ │ │ │ ├── _greens.scss │ │ │ │ │ ├── _limes.scss │ │ │ │ │ ├── _oranges.scss │ │ │ │ │ ├── _peaches.scss │ │ │ │ │ ├── _pinks.scss │ │ │ │ │ ├── _preboot.scss │ │ │ │ │ ├── _purples.scss │ │ │ │ │ ├── _reds.scss │ │ │ │ │ ├── _tans.scss │ │ │ │ │ ├── _turquoise.scss │ │ │ │ │ ├── _whites.scss │ │ │ │ │ ├── _yellows.scss │ │ │ │ │ └── index.php │ │ │ │ └── index.php │ │ │ ├── partials │ │ │ │ ├── _backward.sass │ │ │ │ ├── _chosen.sass │ │ │ │ ├── _commons.sass │ │ │ │ ├── _content.sass │ │ │ │ ├── _date-picker.sass │ │ │ │ ├── _date-range-picker.sass │ │ │ │ ├── _footer.sass │ │ │ │ ├── _forms.sass │ │ │ │ ├── _growl.sass │ │ │ │ ├── _header.sass │ │ │ │ ├── _icons.sass │ │ │ │ ├── _kpi.sass │ │ │ │ ├── _ladda.sass │ │ │ │ ├── _multistore.sass │ │ │ │ ├── _nav.sass │ │ │ │ ├── _print.sass │ │ │ │ ├── _product.sass │ │ │ │ ├── _rtl.sass │ │ │ │ ├── _select2.scss │ │ │ │ ├── _switch.sass │ │ │ │ ├── _tables.sass │ │ │ │ ├── _tinymce.sass │ │ │ │ ├── _toolbar.sass │ │ │ │ ├── _tree.sass │ │ │ │ └── index.php │ │ │ └── vendor │ │ │ │ ├── _animate.sass │ │ │ │ ├── bi-app │ │ │ │ ├── _bi-app-ltr.scss │ │ │ │ ├── _bi-app-rtl.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _variables-ltr.scss │ │ │ │ ├── _variables-rtl.scss │ │ │ │ └── index.php │ │ │ │ ├── bootstrap-rtl-sass │ │ │ │ ├── _bootstrap-rtl.sass │ │ │ │ ├── _button-groups-rtl.sass │ │ │ │ ├── _carousel-rtl.sass │ │ │ │ ├── _grid-rtl.sass │ │ │ │ ├── _list-group-rtl.sass │ │ │ │ ├── _merged-rtl.sass │ │ │ │ ├── _pager-rtl.sass │ │ │ │ ├── _pagination-rtl.sass │ │ │ │ ├── _type-rtl.sass │ │ │ │ └── index.php │ │ │ │ ├── bootstrap-sass │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _button-groups.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _component-animations.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _glyphicons.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _input-groups.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _navs.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _responsive-embed.scss │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ ├── _scaffolding.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _theme.scss │ │ │ │ ├── _thumbnails.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _wells.scss │ │ │ │ ├── index.php │ │ │ │ └── mixins │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _panels.scss │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ ├── _vendor-prefixes.scss │ │ │ │ │ └── index.php │ │ │ │ ├── font-awesome │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _spinning.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ └── index.php │ │ │ │ └── index.php │ │ ├── template │ │ │ ├── content-legacy.tpl │ │ │ ├── content.tpl │ │ │ ├── controllers │ │ │ │ ├── access │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── attribute_generator │ │ │ │ │ ├── content.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── attributes │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── attributes_groups │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── list_header.tpl │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── carrier_wizard │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ ├── form_ranges.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ ├── logo.tpl │ │ │ │ │ └── summary.tpl │ │ │ │ ├── carriers │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── list_content.tpl │ │ │ │ │ │ │ ├── list_footer.tpl │ │ │ │ │ │ │ └── list_header.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── cart_rules │ │ │ │ │ ├── actions.tpl │ │ │ │ │ ├── conditions.tpl │ │ │ │ │ ├── form.js │ │ │ │ │ ├── form.tpl │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── list_header.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ ├── informations.tpl │ │ │ │ │ ├── product_rule.tpl │ │ │ │ │ ├── product_rule_group.tpl │ │ │ │ │ └── product_rule_itemlist.tpl │ │ │ │ ├── carts │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── countries │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── list_footer.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── customer_threads │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── list_header.tpl │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── options.tpl │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── message.tpl │ │ │ │ │ │ │ ├── modal.tpl │ │ │ │ │ │ │ ├── timeline_item.tpl │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ └── message.tpl │ │ │ │ ├── dashboard │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── feature_value │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── features │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── groups │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── tree │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── tree_categories.tpl │ │ │ │ │ │ │ ├── tree_node_folder_radio.tpl │ │ │ │ │ │ │ └── tree_node_item_radio.tpl │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── images │ │ │ │ │ ├── content.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── import │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ └── modal_import_progress.tpl │ │ │ │ ├── index.php │ │ │ │ ├── login │ │ │ │ │ ├── content.tpl │ │ │ │ │ ├── header.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ └── layout.tpl │ │ │ │ ├── marketing │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── meta │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── modules │ │ │ │ │ ├── ad_bar.tpl │ │ │ │ │ ├── configuration_bar.tpl │ │ │ │ │ ├── configure.tpl │ │ │ │ │ ├── content-legacy.tpl │ │ │ │ │ ├── favorites.tpl │ │ │ │ │ ├── filters.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ ├── js.tpl │ │ │ │ │ ├── list.tpl │ │ │ │ │ ├── login_addons.tpl │ │ │ │ │ ├── modal_not_trusted.tpl │ │ │ │ │ ├── modal_not_trusted_blocked.tpl │ │ │ │ │ ├── modal_not_trusted_country.tpl │ │ │ │ │ ├── modal_translation.tpl │ │ │ │ │ ├── page.tpl │ │ │ │ │ ├── page_header_toolbar-legacy.tpl │ │ │ │ │ ├── quickview.tpl │ │ │ │ │ ├── readmore-body.tpl │ │ │ │ │ ├── readmore-header.tpl │ │ │ │ │ ├── tab_module_line.tpl │ │ │ │ │ ├── tab_modules_list.tpl │ │ │ │ │ └── warning_module.tpl │ │ │ │ ├── modules_positions │ │ │ │ │ ├── form.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ └── list_modules.tpl │ │ │ │ ├── not_found │ │ │ │ │ ├── content.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── outstanding │ │ │ │ │ ├── _print_pdf_icon.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── payment │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── referrers │ │ │ │ │ ├── calendar.tpl │ │ │ │ │ ├── form_settings.tpl │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── list_header.tpl │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── return │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── scenes │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── tree │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── tree_node_folder_checkbox.tpl │ │ │ │ │ │ │ └── tree_node_item_checkbox.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── search │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── shop │ │ │ │ │ ├── content.tpl │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── list_action_delete.tpl │ │ │ │ │ │ │ ├── list_content.tpl │ │ │ │ │ │ │ └── list_header.tpl │ │ │ │ │ │ └── tree │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── shop_tree_header.tpl │ │ │ │ │ │ │ ├── shop_tree_node_folder.tpl │ │ │ │ │ │ │ └── shop_tree_node_item.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── shop_group │ │ │ │ │ ├── content.tpl │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── shop_url │ │ │ │ │ ├── content.tpl │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── list_content.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── specific_price_rule │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── states │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── list │ │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── stats │ │ │ │ │ ├── calendar.tpl │ │ │ │ │ ├── engines.tpl │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ ├── menu.tpl │ │ │ │ │ └── stats.tpl │ │ │ │ ├── statuses │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── stores │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── options │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── options.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── suppliers │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── view.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── tabs │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ └── list_content.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── tags │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── tax_rules │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── list_action_edit.tpl │ │ │ │ │ │ │ ├── list_content.tpl │ │ │ │ │ │ │ ├── list_footer.tpl │ │ │ │ │ │ │ └── list_header.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── tax_rules_group │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── translations │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── translation_errors.tpl │ │ │ │ │ │ │ ├── translation_form.tpl │ │ │ │ │ │ │ ├── translation_mails.tpl │ │ │ │ │ │ │ └── translation_modules.tpl │ │ │ │ │ └── index.php │ │ │ │ └── zones │ │ │ │ │ ├── index.php │ │ │ │ │ └── select.tpl │ │ │ ├── error.tpl │ │ │ ├── footer.tpl │ │ │ ├── footer_toolbar.tpl │ │ │ ├── form_date_range_picker.tpl │ │ │ ├── form_submit_ajax.tpl │ │ │ ├── header.tpl │ │ │ ├── helpers │ │ │ │ ├── calendar │ │ │ │ │ ├── calendar.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── dataviz │ │ │ │ │ ├── graph.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── form │ │ │ │ │ ├── assoshop.tpl │ │ │ │ │ ├── form.tpl │ │ │ │ │ ├── form_category.tpl │ │ │ │ │ ├── form_group.tpl │ │ │ │ │ └── index.php │ │ │ │ ├── index.php │ │ │ │ ├── kpi │ │ │ │ │ ├── index.php │ │ │ │ │ ├── kpi.tpl │ │ │ │ │ └── row.tpl │ │ │ │ ├── list │ │ │ │ │ ├── index.php │ │ │ │ │ ├── list.tpl │ │ │ │ │ ├── list_action_addstock.tpl │ │ │ │ │ ├── list_action_default.tpl │ │ │ │ │ ├── list_action_delete.tpl │ │ │ │ │ ├── list_action_details.tpl │ │ │ │ │ ├── list_action_duplicate.tpl │ │ │ │ │ ├── list_action_edit.tpl │ │ │ │ │ ├── list_action_enable.tpl │ │ │ │ │ ├── list_action_preview.tpl │ │ │ │ │ ├── list_action_removestock.tpl │ │ │ │ │ ├── list_action_supplier_order_receipt.tpl │ │ │ │ │ ├── list_action_supply_order_change_state.tpl │ │ │ │ │ ├── list_action_supply_order_create_from_template.tpl │ │ │ │ │ ├── list_action_supply_order_receipt.tpl │ │ │ │ │ ├── list_action_transferstock.tpl │ │ │ │ │ ├── list_action_view.tpl │ │ │ │ │ ├── list_content.tpl │ │ │ │ │ ├── list_footer.tpl │ │ │ │ │ └── list_header.tpl │ │ │ │ ├── modules_list │ │ │ │ │ ├── index.php │ │ │ │ │ ├── list.tpl │ │ │ │ │ └── modal.tpl │ │ │ │ ├── options │ │ │ │ │ ├── index.php │ │ │ │ │ └── options.tpl │ │ │ │ ├── required_fields.tpl │ │ │ │ ├── shops_list │ │ │ │ │ ├── index.php │ │ │ │ │ └── list.tpl │ │ │ │ ├── tree │ │ │ │ │ ├── index.php │ │ │ │ │ ├── subtree_associated_categories.tpl │ │ │ │ │ ├── tree.tpl │ │ │ │ │ ├── tree_associated_categories.tpl │ │ │ │ │ ├── tree_associated_header.tpl │ │ │ │ │ ├── tree_categories.tpl │ │ │ │ │ ├── tree_header.tpl │ │ │ │ │ ├── tree_node_folder.tpl │ │ │ │ │ ├── tree_node_folder_checkbox.tpl │ │ │ │ │ ├── tree_node_folder_checkbox_shops.tpl │ │ │ │ │ ├── tree_node_folder_radio.tpl │ │ │ │ │ ├── tree_node_item.tpl │ │ │ │ │ ├── tree_node_item_checkbox.tpl │ │ │ │ │ ├── tree_node_item_checkbox_shops.tpl │ │ │ │ │ ├── tree_node_item_radio.tpl │ │ │ │ │ ├── tree_shops.tpl │ │ │ │ │ ├── tree_toolbar.tpl │ │ │ │ │ ├── tree_toolbar_link.tpl │ │ │ │ │ └── tree_toolbar_search.tpl │ │ │ │ ├── uploader │ │ │ │ │ ├── ajax.tpl │ │ │ │ │ ├── index.php │ │ │ │ │ └── simple.tpl │ │ │ │ └── view │ │ │ │ │ ├── index.php │ │ │ │ │ └── view.tpl │ │ │ ├── index.php │ │ │ ├── invalid_token.tpl │ │ │ ├── layout-ajax.tpl │ │ │ ├── layout-export.tpl │ │ │ ├── layout.tpl │ │ │ ├── modal.tpl │ │ │ ├── nav.tpl │ │ │ ├── page_header_toolbar.tpl │ │ │ ├── search_form.tpl │ │ │ └── toolbar.tpl │ │ └── webpack.config.js │ ├── index.php │ └── new-theme │ │ ├── .babelrc │ │ ├── .webpack │ │ ├── common.js │ │ ├── dev.js │ │ └── prod.js │ │ ├── bundle.js │ │ ├── css │ │ ├── module │ │ │ └── drop.css │ │ └── right-sidebar.css │ │ ├── img │ │ ├── empty_state │ │ │ ├── attachment.png │ │ │ ├── catalog.png │ │ │ ├── credit_slip.png │ │ │ ├── order.png │ │ │ └── supplier.svg │ │ ├── error │ │ │ └── 500.svg │ │ └── glyph.png │ │ ├── js │ │ ├── app │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── cldr │ │ │ │ ├── exception │ │ │ │ │ └── localization.js │ │ │ │ ├── index.js │ │ │ │ ├── number-formatter.js │ │ │ │ ├── number-symbol.js │ │ │ │ └── specifications │ │ │ │ │ ├── number.js │ │ │ │ │ └── price.js │ │ │ ├── pages │ │ │ │ ├── catalog │ │ │ │ │ └── index.js │ │ │ │ ├── module-card │ │ │ │ │ └── index.js │ │ │ │ ├── stock │ │ │ │ │ ├── components │ │ │ │ │ │ ├── app.vue │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ ├── breadcrumb.vue │ │ │ │ │ │ │ ├── filters.vue │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ ├── filter-component.vue │ │ │ │ │ │ │ │ └── low-filter.vue │ │ │ │ │ │ │ ├── search.vue │ │ │ │ │ │ │ ├── stock-header.vue │ │ │ │ │ │ │ └── tabs.vue │ │ │ │ │ │ ├── movements │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ └── movement-line.vue │ │ │ │ │ │ └── overview │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── movement-type.vue │ │ │ │ │ │ │ ├── product-line.vue │ │ │ │ │ │ │ ├── products-actions.vue │ │ │ │ │ │ │ ├── products-table.vue │ │ │ │ │ │ │ └── spinner.vue │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── product-desc.js │ │ │ │ │ │ └── translate.js │ │ │ │ │ ├── router │ │ │ │ │ │ └── index.js │ │ │ │ │ └── store │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mutation-types.js │ │ │ │ │ │ └── mutations.js │ │ │ │ └── translations │ │ │ │ │ ├── components │ │ │ │ │ ├── app.vue │ │ │ │ │ ├── header │ │ │ │ │ │ ├── breadcrumb.vue │ │ │ │ │ │ ├── search.vue │ │ │ │ │ │ └── translations-header.vue │ │ │ │ │ ├── principal │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── translation-input.vue │ │ │ │ │ └── sidebar │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mixins │ │ │ │ │ └── translate.js │ │ │ │ │ ├── router │ │ │ │ │ └── index.js │ │ │ │ │ └── store │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mutation-types.js │ │ │ │ │ └── mutations.js │ │ │ ├── store │ │ │ │ └── index.js │ │ │ ├── utils │ │ │ │ ├── datepicker.js │ │ │ │ ├── email-idn.js │ │ │ │ ├── event-bus.js │ │ │ │ ├── fields.js │ │ │ │ ├── growl.js │ │ │ │ ├── number-comma-transformer.js │ │ │ │ ├── reset_search.js │ │ │ │ ├── serp │ │ │ │ │ ├── index.js │ │ │ │ │ └── serp.vue │ │ │ │ ├── sql-manager.js │ │ │ │ └── table-sorting.js │ │ │ └── widgets │ │ │ │ ├── ps-alert.vue │ │ │ │ ├── ps-button.vue │ │ │ │ ├── ps-checkbox.vue │ │ │ │ ├── ps-datepicker.vue │ │ │ │ ├── ps-loader.vue │ │ │ │ ├── ps-media.vue │ │ │ │ ├── ps-modal.vue │ │ │ │ ├── ps-number.vue │ │ │ │ ├── ps-pagination.vue │ │ │ │ ├── ps-radio.vue │ │ │ │ ├── ps-select.vue │ │ │ │ ├── ps-spinner.vue │ │ │ │ ├── ps-table │ │ │ │ ├── ps-sort.vue │ │ │ │ └── ps-table.vue │ │ │ │ ├── ps-tags.vue │ │ │ │ └── ps-tree │ │ │ │ ├── ps-tree-item.vue │ │ │ │ └── ps-tree.vue │ │ ├── clickable-dropdown.js │ │ ├── components │ │ │ ├── addons-connector.js │ │ │ ├── change-password-handler.js │ │ │ ├── choice-table.js │ │ │ ├── country-dni-required-toggler.js │ │ │ ├── country-postcode-required-toggler.js │ │ │ ├── country-state-selection-toggler.js │ │ │ ├── event-emitter.js │ │ │ ├── form-submit-button.js │ │ │ ├── form │ │ │ │ ├── autocomplete-with-email.js │ │ │ │ ├── change-password-control.js │ │ │ │ ├── choice-tree.js │ │ │ │ ├── form-popover-error.js │ │ │ │ ├── preview-opener.js │ │ │ │ ├── text-with-length-counter.js │ │ │ │ └── text-with-recommended-length-counter.js │ │ │ ├── generatable-input.js │ │ │ ├── grid │ │ │ │ ├── extension │ │ │ │ │ ├── action │ │ │ │ │ │ ├── bulk │ │ │ │ │ │ │ ├── category │ │ │ │ │ │ │ │ └── delete-categories-bulk-action-extension.js │ │ │ │ │ │ │ └── customer │ │ │ │ │ │ │ │ └── delete-customers-bulk-action-extension.js │ │ │ │ │ │ └── row │ │ │ │ │ │ │ ├── category │ │ │ │ │ │ │ └── delete-category-row-action-extension.js │ │ │ │ │ │ │ ├── customer │ │ │ │ │ │ │ └── delete-customer-row-action-extension.js │ │ │ │ │ │ │ └── submit-row-action-extension.js │ │ │ │ │ ├── bulk-action-checkbox-extension.js │ │ │ │ │ ├── bulk-open-tabs-extension.js │ │ │ │ │ ├── choice-extension.js │ │ │ │ │ ├── column-toggling-extension.js │ │ │ │ │ ├── column │ │ │ │ │ │ ├── catalog │ │ │ │ │ │ │ └── category-position-extension.js │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── async-toggle-column-extension.js │ │ │ │ │ ├── export-to-sql-manager-extension.js │ │ │ │ │ ├── filters-reset-extension.js │ │ │ │ │ ├── filters-submit-button-enabler-extension.js │ │ │ │ │ ├── link-row-action-extension.js │ │ │ │ │ ├── modal-form-submit-extension.js │ │ │ │ │ ├── position-extension.js │ │ │ │ │ ├── preview-extension.js │ │ │ │ │ ├── reload-list-extension.js │ │ │ │ │ ├── sorting-extension.js │ │ │ │ │ ├── submit-bulk-action-extension.js │ │ │ │ │ └── submit-grid-action-extension.js │ │ │ │ └── grid.js │ │ │ ├── linkable-item.js │ │ │ ├── modal.js │ │ │ ├── module-card.js │ │ │ ├── multi-store-restriction-field │ │ │ │ ├── multi-store-restriction-field-map.js │ │ │ │ └── multi-store-restriction-field.js │ │ │ ├── multiple-choice-table.js │ │ │ ├── password-validator.js │ │ │ ├── router.js │ │ │ ├── showcase-card │ │ │ │ ├── extension │ │ │ │ │ └── showcase-card-close-extension.js │ │ │ │ └── showcase-card.js │ │ │ ├── taggable-field.js │ │ │ ├── text-to-link-rewrite-copier.js │ │ │ ├── tinymce-editor.js │ │ │ ├── translatable-field.js │ │ │ └── translatable-input.js │ │ ├── fos_js_routes.json │ │ ├── header.js │ │ ├── maintenance-page │ │ │ ├── index.js │ │ │ └── ip-input.js │ │ ├── nav_bar.js │ │ ├── notifications.js │ │ ├── pages │ │ │ ├── address │ │ │ │ ├── address-form-map.js │ │ │ │ ├── form.js │ │ │ │ └── index.js │ │ │ ├── attachment │ │ │ │ └── index.js │ │ │ ├── attribute-group │ │ │ │ └── index.js │ │ │ ├── attribute │ │ │ │ └── index.js │ │ │ ├── backup │ │ │ │ └── index.js │ │ │ ├── catalog-price-rule │ │ │ │ ├── form │ │ │ │ │ ├── catalog-price-rule-form-map.js │ │ │ │ │ ├── include-tax-field-visibility-handler.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── price-field-availability-handler.js │ │ │ │ └── index.js │ │ │ ├── catalog │ │ │ │ └── product │ │ │ │ │ ├── index.js │ │ │ │ │ └── specific-price-form-handler.js │ │ │ ├── category │ │ │ │ └── index.js │ │ │ ├── cms-page │ │ │ │ ├── form │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── contacts │ │ │ │ ├── ContactsPage.js │ │ │ │ └── index.js │ │ │ ├── credit-slip │ │ │ │ └── index.js │ │ │ ├── currency │ │ │ │ ├── ExchangeRatesUpdateScheduler.js │ │ │ │ ├── form │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CurrencyFormatForm.vue │ │ │ │ │ │ ├── CurrencyFormatter.vue │ │ │ │ │ │ ├── CurrencyModal.vue │ │ │ │ │ │ └── LanguageList.vue │ │ │ │ │ ├── currency-form-map.js │ │ │ │ │ ├── currency-form.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── customer-thread │ │ │ │ ├── customer-thread-view-page-map.js │ │ │ │ └── view.js │ │ │ ├── customer │ │ │ │ └── index.js │ │ │ ├── email │ │ │ │ ├── email-sending-test.js │ │ │ │ ├── index.js │ │ │ │ └── smtp-configuration-toggler.js │ │ │ ├── employee │ │ │ │ ├── EmployeeForm.js │ │ │ │ ├── employee-form-map.js │ │ │ │ ├── form.js │ │ │ │ └── index.js │ │ │ ├── error │ │ │ │ └── index.js │ │ │ ├── feature │ │ │ │ └── form.js │ │ │ ├── geolocation │ │ │ │ └── index.js │ │ │ ├── import-data │ │ │ │ ├── EntityFieldsValidator.js │ │ │ │ ├── ImportBatchSizeCalculator.js │ │ │ │ ├── ImportDataPage.js │ │ │ │ ├── ImportDataTable.js │ │ │ │ ├── ImportMatchConfiguration.js │ │ │ │ ├── ImportProgressModal.js │ │ │ │ ├── Importer.js │ │ │ │ ├── PostSizeChecker.js │ │ │ │ └── index.js │ │ │ ├── import │ │ │ │ ├── FormFieldToggle.js │ │ │ │ ├── ImportPage.js │ │ │ │ └── index.js │ │ │ ├── improve │ │ │ │ └── design_positions │ │ │ │ │ ├── index.js │ │ │ │ │ └── positions-list-handler.js │ │ │ ├── invoices │ │ │ │ └── index.js │ │ │ ├── language │ │ │ │ └── index.js │ │ │ ├── localization │ │ │ │ └── index.js │ │ │ ├── logs │ │ │ │ └── index.js │ │ │ ├── maintenance │ │ │ │ └── index.js │ │ │ ├── manufacturer │ │ │ │ ├── index.js │ │ │ │ ├── manufacturer-address-map.js │ │ │ │ └── manufacturer_address_form.js │ │ │ ├── merchandise-return │ │ │ │ └── index.js │ │ │ ├── meta │ │ │ │ ├── index.js │ │ │ │ └── meta-page-name-option-handler.js │ │ │ ├── module │ │ │ │ ├── controller.js │ │ │ │ ├── index.js │ │ │ │ └── loader.js │ │ │ ├── monitoring │ │ │ │ └── index.js │ │ │ ├── order-preferences │ │ │ │ ├── index.js │ │ │ │ └── terms-and-conditions-option-handler.js │ │ │ ├── order │ │ │ │ ├── OrderViewPageMap.js │ │ │ │ ├── create.js │ │ │ │ ├── create │ │ │ │ │ ├── addresses-renderer.js │ │ │ │ │ ├── cart-editor.js │ │ │ │ │ ├── cart-provider.js │ │ │ │ │ ├── cart-rule-manager.js │ │ │ │ │ ├── cart-rules-renderer.js │ │ │ │ │ ├── create-order-map.js │ │ │ │ │ ├── create-order-page.js │ │ │ │ │ ├── customer-manager.js │ │ │ │ │ ├── customer-renderer.js │ │ │ │ │ ├── event-map.js │ │ │ │ │ ├── product-manager.js │ │ │ │ │ ├── product-renderer.js │ │ │ │ │ ├── shipping-renderer.js │ │ │ │ │ ├── summary-manager.js │ │ │ │ │ └── summary-renderer.js │ │ │ │ ├── delivery │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── invoice-note-manager.js │ │ │ │ ├── message │ │ │ │ │ └── order-view-page-messages-handler.js │ │ │ │ ├── order-shipping-manager.js │ │ │ │ ├── preview-products-toggler.js │ │ │ │ ├── view.js │ │ │ │ └── view │ │ │ │ │ ├── order-discounts-refresher.js │ │ │ │ │ ├── order-documents-refresher.js │ │ │ │ │ ├── order-invoices-refresher.js │ │ │ │ │ ├── order-payments-refresher.js │ │ │ │ │ ├── order-prices-refresher.js │ │ │ │ │ ├── order-prices.js │ │ │ │ │ ├── order-product-add-autocomplete.js │ │ │ │ │ ├── order-product-add.js │ │ │ │ │ ├── order-product-cancel.js │ │ │ │ │ ├── order-product-edit.js │ │ │ │ │ ├── order-product-manager.js │ │ │ │ │ ├── order-product-renderer.js │ │ │ │ │ ├── order-shipping-refresher.js │ │ │ │ │ ├── order-view-event-map.js │ │ │ │ │ └── order-view-page.js │ │ │ ├── order_message │ │ │ │ ├── form.js │ │ │ │ └── index.js │ │ │ ├── payment-preferences │ │ │ │ └── index.js │ │ │ ├── product-preferences │ │ │ │ ├── catalog-mode-option-handler.js │ │ │ │ ├── index.js │ │ │ │ ├── product-preferences-page-map.js │ │ │ │ └── stock-management-option-handler.js │ │ │ ├── profiles │ │ │ │ ├── ProfilesPage.js │ │ │ │ └── index.js │ │ │ ├── sql-manager │ │ │ │ └── index.js │ │ │ ├── supplier │ │ │ │ ├── index.js │ │ │ │ ├── supplier-form.js │ │ │ │ └── supplier-map.js │ │ │ ├── tax-rules-group │ │ │ │ └── index.js │ │ │ ├── tax │ │ │ │ ├── display-in-cart-option-handler.js │ │ │ │ └── index.js │ │ │ ├── themes │ │ │ │ ├── delete-theme-handler.js │ │ │ │ ├── index.js │ │ │ │ ├── reset-theme-layouts-handler.js │ │ │ │ └── use-theme-handler.js │ │ │ ├── translation-settings │ │ │ │ ├── FormFieldToggle.js │ │ │ │ ├── TranslationSettingsPage.js │ │ │ │ └── index.js │ │ │ └── webservice │ │ │ │ ├── index.js │ │ │ │ └── permissions-row-selector.js │ │ ├── product-page │ │ │ ├── attributes.js │ │ │ ├── category-tree.js │ │ │ ├── combination.js │ │ │ ├── index.js │ │ │ ├── nested-categories.js │ │ │ ├── product-bulk-combinations.js │ │ │ ├── product-header.js │ │ │ └── product-search-autocomplete.js │ │ ├── theme.js │ │ ├── translation-page │ │ │ ├── index.js │ │ │ ├── messages-edition.js │ │ │ ├── messages-pagination.js │ │ │ ├── messages-search.js │ │ │ ├── messages-tree.js │ │ │ ├── messages-visibility.js │ │ │ └── multi-pagination.js │ │ └── vue │ │ │ ├── components │ │ │ └── Modal.vue │ │ │ ├── directives │ │ │ └── click-outside.js │ │ │ └── plugins │ │ │ └── vue-i18n │ │ │ └── replace-formatter.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ ├── 00dd0ec0a16a1085e714c7906ff8fb06.png │ │ ├── 093a819138276b446611d1d2a45b98a2.png │ │ ├── 21297f5598e307f9171a5704655be9f8.png │ │ ├── 40bf25799e4fec8079c7775083de09df.png │ │ ├── 4e7e3e142f3939883cd0a7e00cabdaef.png │ │ ├── 5c7041c0b060b51529618b06b629ec58.png │ │ ├── address.bundle.js │ │ ├── attachment.bundle.js │ │ ├── attribute.bundle.js │ │ ├── attribute_group.bundle.js │ │ ├── backup.bundle.js │ │ ├── catalog.bundle.js │ │ ├── catalog_price_rule.bundle.js │ │ ├── catalog_price_rule_form.bundle.js │ │ ├── catalog_product.bundle.js │ │ ├── category.bundle.js │ │ ├── cldr.bundle.js │ │ ├── cms_page.bundle.js │ │ ├── cms_page_form.bundle.js │ │ ├── contacts.bundle.js │ │ ├── credit_slip.bundle.js │ │ ├── currency.bundle.js │ │ ├── currency_form.bundle.js │ │ ├── customer.bundle.js │ │ ├── customer_address_form.bundle.js │ │ ├── customer_thread_view.bundle.js │ │ ├── d10bc07005bb2d604f4905183690ac04.png │ │ ├── ea4ebe072be75fbbea002631916836de.png │ │ ├── email.bundle.js │ │ ├── employee.bundle.js │ │ ├── employee_form.bundle.js │ │ ├── error.bundle.js │ │ ├── fbc2a379fdad6d5a1b10c881644bc5dd.png │ │ ├── feature_form.bundle.js │ │ ├── form_popover_error.bundle.js │ │ ├── geolocation.bundle.js │ │ ├── helper-card │ │ │ ├── category@3x.png │ │ │ ├── content@3x.png │ │ │ ├── customer@3x.png │ │ │ ├── monitoring@3x.png │ │ │ ├── seo@3x.png │ │ │ └── team@3x.png │ │ ├── imports.bundle.js │ │ ├── improve_design_positions.bundle.js │ │ ├── invoices.bundle.js │ │ ├── language.bundle.js │ │ ├── localization.bundle.js │ │ ├── logs.bundle.js │ │ ├── main.bundle.js │ │ ├── maintenance.bundle.js │ │ ├── manufacturer.bundle.js │ │ ├── manufacturer_address_form.bundle.js │ │ ├── merchandise_return.bundle.js │ │ ├── meta.bundle.js │ │ ├── module.bundle.js │ │ ├── module_card.bundle.js │ │ ├── monitoring.bundle.js │ │ ├── order.bundle.js │ │ ├── order_create.bundle.js │ │ ├── order_delivery.bundle.js │ │ ├── order_message.bundle.js │ │ ├── order_message_form.bundle.js │ │ ├── order_preferences.bundle.js │ │ ├── order_view.bundle.js │ │ ├── pages │ │ │ └── themes │ │ │ │ ├── icon_layouts.png │ │ │ │ └── icon_themes.png │ │ ├── payment_preferences.bundle.js │ │ ├── product_page.bundle.js │ │ ├── product_preferences.bundle.js │ │ ├── profiles.bundle.js │ │ ├── sql_manager.bundle.js │ │ ├── stock.bundle.js │ │ ├── supplier.bundle.js │ │ ├── supplier_form.bundle.js │ │ ├── tax.bundle.js │ │ ├── tax_rules_group.bundle.js │ │ ├── theme.css │ │ ├── theme.rtlfix │ │ ├── themes.bundle.js │ │ ├── translation_settings.bundle.js │ │ ├── translations.bundle.js │ │ └── webservice.bundle.js │ │ ├── scss │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _button_groups.scss │ │ │ ├── _cards.scss │ │ │ ├── _category_tree.scss │ │ │ ├── _choice_table.scss │ │ │ ├── _cursor.scss │ │ │ ├── _datepicker.scss │ │ │ ├── _dropzone.scss │ │ │ ├── _font.scss │ │ │ ├── _form.scss │ │ │ ├── _form_popover_error.scss │ │ │ ├── _grid.scss │ │ │ ├── _help_box.scss │ │ │ ├── _material_choice_tree.scss │ │ │ ├── _modulescards.scss │ │ │ ├── _notifications.scss │ │ │ ├── _ps_alert.scss │ │ │ ├── _ps_dropdown.scss │ │ │ ├── _ps_number.scss │ │ │ ├── _ps_radio.scss │ │ │ ├── _ps_spinner.scss │ │ │ ├── _ps_tree.scss │ │ │ ├── _showcase-card.scss │ │ │ ├── _timeline.scss │ │ │ ├── _tinymce.scss │ │ │ ├── _toggable_field.scss │ │ │ ├── _translatable_input.scss │ │ │ └── layout │ │ │ │ ├── _content_div.scss │ │ │ │ ├── _header_toolbar.scss │ │ │ │ ├── _kpi.scss │ │ │ │ ├── _main_header.scss │ │ │ │ ├── _nav_bar.scss │ │ │ │ └── _non_responsive.scss │ │ ├── config │ │ │ ├── _keyframes.scss │ │ │ └── _settings.scss │ │ ├── img │ │ │ ├── helper-card │ │ │ │ ├── attributes@3x.png │ │ │ │ ├── content-background@3x.png │ │ │ │ ├── seo-background@3x.png │ │ │ │ └── wave-shape-background.png │ │ │ └── logo.png │ │ ├── mixins │ │ │ ├── _cards.scss │ │ │ ├── _hover.scss │ │ │ ├── _notification_container.scss │ │ │ ├── _notification_counter.scss │ │ │ ├── _single_line_block.scss │ │ │ └── _stars.scss │ │ ├── pages │ │ │ ├── _attribute.scss │ │ │ ├── _cms_page.scss │ │ │ ├── _currency.scss │ │ │ ├── _customer_thread.scss │ │ │ ├── _employee.scss │ │ │ ├── _error.scss │ │ │ ├── _import_data.scss │ │ │ ├── _invoices.scss │ │ │ ├── _meta.scss │ │ │ ├── _modules.scss │ │ │ ├── _orders.scss │ │ │ ├── _orders_create.scss │ │ │ ├── _orders_view.scss │ │ │ ├── _product_page.scss │ │ │ ├── _products_catalog.scss │ │ │ ├── _stock_page.scss │ │ │ ├── _themes_logo.scss │ │ │ ├── _translation_page.scss │ │ │ └── partials │ │ │ │ ├── _order-navigation.scss │ │ │ │ ├── _theme_logo_configuration.scss │ │ │ │ └── _theme_logo_theme_card.scss │ │ └── theme.scss │ │ ├── static │ │ ├── helper-card │ │ │ ├── category@3x.png │ │ │ ├── content@3x.png │ │ │ ├── customer@3x.png │ │ │ ├── monitoring@3x.png │ │ │ ├── seo@3x.png │ │ │ └── team@3x.png │ │ └── pages │ │ │ └── themes │ │ │ ├── icon_layouts.png │ │ │ └── icon_themes.png │ │ ├── template │ │ ├── components │ │ │ └── layout │ │ │ │ ├── confirmation_messages.tpl │ │ │ │ ├── employee_dropdown.tpl │ │ │ │ ├── error_messages.tpl │ │ │ │ ├── information_messages.tpl │ │ │ │ ├── nav_bar.tpl │ │ │ │ ├── non-responsive.tpl │ │ │ │ ├── notifications_center.tpl │ │ │ │ ├── quick_access.tpl │ │ │ │ ├── search_form.tpl │ │ │ │ ├── shop_list.tpl │ │ │ │ └── warning_messages.tpl │ │ ├── content.tpl │ │ ├── controllers │ │ │ ├── modules │ │ │ │ └── login_addons.tpl │ │ │ └── orders │ │ │ │ └── page_header_toolbar.tpl │ │ ├── error.tpl │ │ ├── footer.tpl │ │ ├── header.tpl │ │ ├── helpers │ │ │ ├── kpi │ │ │ │ ├── kpi.tpl │ │ │ │ └── row.tpl │ │ │ └── shops_list │ │ │ │ └── list.tpl │ │ ├── layout.tpl │ │ ├── modal.tpl │ │ └── page_header_toolbar.tpl │ │ ├── tests │ │ ├── cldr │ │ │ ├── number-formatter.spec.js │ │ │ ├── number-symbol.spec.js │ │ │ └── specifications │ │ │ │ ├── number.spec.js │ │ │ │ └── price.spec.js │ │ └── utils │ │ │ └── number-comma-transformer.spec.js │ │ └── webpack.config.js └── webpack.config.js ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ ├── TwigBundle │ │ └── views │ │ │ └── Exception │ │ │ └── error.html.twig │ ├── all_languages.json │ ├── geoip │ │ └── index.php │ ├── legacy-to-standard-locales.json │ ├── security │ │ └── .htaccess.dist │ ├── translations │ │ ├── .gitkeep │ │ └── default │ │ │ ├── AdminActions.xlf │ │ │ ├── AdminAdvparametersFeature.xlf │ │ │ ├── AdminAdvparametersHelp.xlf │ │ │ ├── AdminAdvparametersNotification.xlf │ │ │ ├── AdminCatalogFeature.xlf │ │ │ ├── AdminCatalogHelp.xlf │ │ │ ├── AdminCatalogNotification.xlf │ │ │ ├── AdminDashboardFeature.xlf │ │ │ ├── AdminDashboardHelp.xlf │ │ │ ├── AdminDashboardNotification.xlf │ │ │ ├── AdminDesignFeature.xlf │ │ │ ├── AdminDesignHelp.xlf │ │ │ ├── AdminDesignNotification.xlf │ │ │ ├── AdminGlobal.xlf │ │ │ ├── AdminInternationalFeature.xlf │ │ │ ├── AdminInternationalHelp.xlf │ │ │ ├── AdminInternationalNotification.xlf │ │ │ ├── AdminLoginFeature.xlf │ │ │ ├── AdminLoginNotification.xlf │ │ │ ├── AdminModulesFeature.xlf │ │ │ ├── AdminModulesHelp.xlf │ │ │ ├── AdminModulesNotification.xlf │ │ │ ├── AdminNavigationFooter.xlf │ │ │ ├── AdminNavigationHeader.xlf │ │ │ ├── AdminNavigationMenu.xlf │ │ │ ├── AdminNavigationNotification.xlf │ │ │ ├── AdminNavigationSearch.xlf │ │ │ ├── AdminNotificationsError.xlf │ │ │ ├── AdminNotificationsInfo.xlf │ │ │ ├── AdminNotificationsSuccess.xlf │ │ │ ├── AdminNotificationsWarning.xlf │ │ │ ├── AdminOrderscustomersFeature.xlf │ │ │ ├── AdminOrderscustomersHelp.xlf │ │ │ ├── AdminOrderscustomersNotification.xlf │ │ │ ├── AdminPaymentFeature.xlf │ │ │ ├── AdminPaymentHelp.xlf │ │ │ ├── AdminPaymentNotification.xlf │ │ │ ├── AdminShippingFeature.xlf │ │ │ ├── AdminShippingHelp.xlf │ │ │ ├── AdminShippingNotification.xlf │ │ │ ├── AdminShopparametersFeature.xlf │ │ │ ├── AdminShopparametersHelp.xlf │ │ │ ├── AdminShopparametersNotification.xlf │ │ │ ├── AdminStatsFeature.xlf │ │ │ ├── AdminStatsHelp.xlf │ │ │ ├── AdminStatsNotification.xlf │ │ │ ├── EmailsBody.xlf │ │ │ ├── EmailsSubject.xlf │ │ │ ├── Install.xlf │ │ │ ├── ModulesAdvertisingAdmin.xlf │ │ │ ├── ModulesBannerAdmin.xlf │ │ │ ├── ModulesBannerShop.xlf │ │ │ ├── ModulesBestsellersAdmin.xlf │ │ │ ├── ModulesBestsellersShop.xlf │ │ │ ├── ModulesBlockreassuranceAdmin.xlf │ │ │ ├── ModulesBlockreassuranceShop.xlf │ │ │ ├── ModulesBlockwishlistAdmin.xlf │ │ │ ├── ModulesBlockwishlistShop.xlf │ │ │ ├── ModulesBrandlistAdmin.xlf │ │ │ ├── ModulesBrandlistShop.xlf │ │ │ ├── ModulesBuybuttonliteAdmin.xlf │ │ │ ├── ModulesCarriercomparisonAdmin.xlf │ │ │ ├── ModulesCarriercomparisonShop.xlf │ │ │ ├── ModulesCashondeliveryAdmin.xlf │ │ │ ├── ModulesCashondeliveryShop.xlf │ │ │ ├── ModulesCategoryproductsAdmin.xlf │ │ │ ├── ModulesCategoryproductsShop.xlf │ │ │ ├── ModulesCategorytreeAdmin.xlf │ │ │ ├── ModulesCheckpaymentAdmin.xlf │ │ │ ├── ModulesCheckpaymentShop.xlf │ │ │ ├── ModulesContactformAdmin.xlf │ │ │ ├── ModulesContactformShop.xlf │ │ │ ├── ModulesContactinfoAdmin.xlf │ │ │ ├── ModulesContactinfoShop.xlf │ │ │ ├── ModulesCrosssellingAdmin.xlf │ │ │ ├── ModulesCrosssellingShop.xlf │ │ │ ├── ModulesCurrencyselectorAdmin.xlf │ │ │ ├── ModulesCustomeraccountlinksAdmin.xlf │ │ │ ├── ModulesCustomersigninAdmin.xlf │ │ │ ├── ModulesCustomtextAdmin.xlf │ │ │ ├── ModulesDashactivityAdmin.xlf │ │ │ ├── ModulesDashgoalsAdmin.xlf │ │ │ ├── ModulesDashproductsAdmin.xlf │ │ │ ├── ModulesDashtrendsAdmin.xlf │ │ │ ├── ModulesDataprivacyAdmin.xlf │ │ │ ├── ModulesDataprivacyShop.xlf │ │ │ ├── ModulesDateofdeliveryAdmin.xlf │ │ │ ├── ModulesDateofdeliveryShop.xlf │ │ │ ├── ModulesEmailsubscriptionAdmin.xlf │ │ │ ├── ModulesEmailsubscriptionShop.xlf │ │ │ ├── ModulesFacetedsearchAdmin.xlf │ │ │ ├── ModulesFacetedsearchShop.xlf │ │ │ ├── ModulesFaviconnotificationboAdmin.xlf │ │ │ ├── ModulesFeaturedproductsAdmin.xlf │ │ │ ├── ModulesFeaturedproductsShop.xlf │ │ │ ├── ModulesFeederAdmin.xlf │ │ │ ├── ModulesGAnalyticsAdmin.xlf │ │ │ ├── ModulesGraphnvd3Admin.xlf │ │ │ ├── ModulesGridhtmlAdmin.xlf │ │ │ ├── ModulesGsitemapAdmin.xlf │ │ │ ├── ModulesImagesliderAdmin.xlf │ │ │ ├── ModulesLanguageselectorAdmin.xlf │ │ │ ├── ModulesLegalcomplianceAdmin.xlf │ │ │ ├── ModulesLegalcomplianceShop.xlf │ │ │ ├── ModulesLinklistAdmin.xlf │ │ │ ├── ModulesLinklistShop.xlf │ │ │ ├── ModulesLivetranslationAdmin.xlf │ │ │ ├── ModulesLivetranslationShop.xlf │ │ │ ├── ModulesMailalertsAdmin.xlf │ │ │ ├── ModulesMailalertsShop.xlf │ │ │ ├── ModulesMainmenuAdmin.xlf │ │ │ ├── ModulesNewproductsAdmin.xlf │ │ │ ├── ModulesNewproductsShop.xlf │ │ │ ├── ModulesNewsletterAdmin.xlf │ │ │ ├── ModulesPagesnotfoundAdmin.xlf │ │ │ ├── ModulesProductcommentsAdmin.xlf │ │ │ ├── ModulesProductcommentsShop.xlf │ │ │ ├── ModulesProductinfoAdmin.xlf │ │ │ ├── ModulesPscleanerAdmin.xlf │ │ │ ├── ModulesReminderAdmin.xlf │ │ │ ├── ModulesRssfeedAdmin.xlf │ │ │ ├── ModulesRssfeedShop.xlf │ │ │ ├── ModulesSearchbarAdmin.xlf │ │ │ ├── ModulesSearchbarShop.xlf │ │ │ ├── ModulesSekeywordsAdmin.xlf │ │ │ ├── ModulesSharebuttonsAdmin.xlf │ │ │ ├── ModulesSharebuttonsShop.xlf │ │ │ ├── ModulesShoppingcartAdmin.xlf │ │ │ ├── ModulesSocialfollowAdmin.xlf │ │ │ ├── ModulesSocialfollowShop.xlf │ │ │ ├── ModulesSpecialsAdmin.xlf │ │ │ ├── ModulesSpecialsShop.xlf │ │ │ ├── ModulesStatsbestcategoriesAdmin.xlf │ │ │ ├── ModulesStatsbestcustomersAdmin.xlf │ │ │ ├── ModulesStatsbestmanufacturersAdmin.xlf │ │ │ ├── ModulesStatsbestproductsAdmin.xlf │ │ │ ├── ModulesStatsbestsuppliersAdmin.xlf │ │ │ ├── ModulesStatsbestvouchersAdmin.xlf │ │ │ ├── ModulesStatscarrierAdmin.xlf │ │ │ ├── ModulesStatscatalogAdmin.xlf │ │ │ ├── ModulesStatscheckupAdmin.xlf │ │ │ ├── ModulesStatsdataAdmin.xlf │ │ │ ├── ModulesStatsequipmentAdmin.xlf │ │ │ ├── ModulesStatsforecastAdmin.xlf │ │ │ ├── ModulesStatsliveAdmin.xlf │ │ │ ├── ModulesStatsnewsletterAdmin.xlf │ │ │ ├── ModulesStatsoriginAdmin.xlf │ │ │ ├── ModulesStatspersonalinfosAdmin.xlf │ │ │ ├── ModulesStatsproductAdmin.xlf │ │ │ ├── ModulesStatsregistrationsAdmin.xlf │ │ │ ├── ModulesStatssalesAdmin.xlf │ │ │ ├── ModulesStatssearchAdmin.xlf │ │ │ ├── ModulesStatsstockAdmin.xlf │ │ │ ├── ModulesStatsvisitsAdmin.xlf │ │ │ ├── ModulesSupplierlistAdmin.xlf │ │ │ ├── ModulesSupplierlistShop.xlf │ │ │ ├── ModulesTrackingfrontAdmin.xlf │ │ │ ├── ModulesTrackingfrontShop.xlf │ │ │ ├── ModulesViewedproductAdmin.xlf │ │ │ ├── ModulesViewedproductShop.xlf │ │ │ ├── ModulesWatermarkAdmin.xlf │ │ │ ├── ModulesWelcomeAdmin.xlf │ │ │ ├── ModulesWirepaymentAdmin.xlf │ │ │ ├── ModulesWirepaymentShop.xlf │ │ │ ├── ShopDemoCatalog.xlf │ │ │ ├── ShopFormsErrors.xlf │ │ │ ├── ShopFormsHelp.xlf │ │ │ ├── ShopFormsLabels.xlf │ │ │ ├── ShopNavigation.xlf │ │ │ ├── ShopNotificationsError.xlf │ │ │ ├── ShopNotificationsInfo.xlf │ │ │ ├── ShopNotificationsSuccess.xlf │ │ │ ├── ShopNotificationsWarning.xlf │ │ │ ├── ShopPdf.xlf │ │ │ ├── ShopThemeActions.xlf │ │ │ ├── ShopThemeCatalog.xlf │ │ │ ├── ShopThemeCheckout.xlf │ │ │ ├── ShopThemeCustomeraccount.xlf │ │ │ ├── ShopThemeGlobal.xlf │ │ │ └── messages.xlf │ └── views │ │ └── base.html.twig ├── config │ ├── addons │ │ └── categories.yml │ ├── config.yml │ ├── config_dev.yml │ ├── config_legacy.yml │ ├── config_legacy_dev.yml │ ├── config_legacy_prod.yml │ ├── config_legacy_test.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── doctrine.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ ├── security.yml │ ├── services.yml │ └── set_parameters.php ├── phpunit.xml.dist └── test │ └── cache │ └── .gitkeep ├── autoload.php ├── bin ├── .htaccess ├── console └── symfony_requirements ├── cache ├── .htaccess ├── cachefs │ └── index.php ├── deprecated.txt ├── index.php ├── purifier │ └── index.php ├── push │ ├── activity │ ├── index.php │ └── trends ├── sandbox │ └── index.php ├── smarty │ ├── cache │ │ └── index.php │ ├── compile │ │ └── index.php │ └── index.php └── tcpdf │ └── index.php ├── classes ├── .htaccess ├── Access.php ├── Address.php ├── AddressChecksumCore.php ├── AddressFormat.php ├── Alias.php ├── Attachment.php ├── Attribute.php ├── AttributeGroup.php ├── CMS.php ├── CMSCategory.php ├── CMSRole.php ├── CSV.php ├── Carrier.php ├── Cart.php ├── CartRule.php ├── Category.php ├── Chart.php ├── ChecksumInterface.php ├── Combination.php ├── Configuration.php ├── ConfigurationKPI.php ├── ConfigurationTest.php ├── Connection.php ├── ConnectionsSource.php ├── Contact.php ├── Context.php ├── Cookie.php ├── Country.php ├── Currency.php ├── Curve.php ├── Customer.php ├── CustomerAddress.php ├── CustomerMessage.php ├── CustomerSession.php ├── CustomerThread.php ├── Customization.php ├── CustomizationField.php ├── DateRange.php ├── Delivery.php ├── Dispatcher.php ├── Employee.php ├── EmployeeSession.php ├── Feature.php ├── FeatureValue.php ├── FileUploader.php ├── Gender.php ├── Group.php ├── GroupReduction.php ├── Guest.php ├── Hook.php ├── Image.php ├── ImageManager.php ├── ImageType.php ├── Language.php ├── Link.php ├── LocalizationPack.php ├── Mail.php ├── Manufacturer.php ├── ManufacturerAddress.php ├── Media.php ├── Message.php ├── Meta.php ├── Notification.php ├── ObjectModel.php ├── Pack.php ├── Page.php ├── PaymentFree.php ├── PaymentModule.php ├── PhpEncryption.php ├── PhpEncryptionEngine.php ├── PhpEncryptionLegacyEngine.php ├── PrestaShopAutoload.php ├── PrestaShopBackup.php ├── PrestaShopCollection.php ├── PrestaShopLogger.php ├── Product.php ├── ProductAssembler.php ├── ProductDownload.php ├── ProductPresenterFactory.php ├── ProductSale.php ├── ProductSupplier.php ├── Profile.php ├── QqUploadedFileForm.php ├── QqUploadedFileXhr.php ├── QuickAccess.php ├── Referrer.php ├── RequestSql.php ├── Risk.php ├── Search.php ├── SearchEngine.php ├── Smarty │ ├── SmartyCacheResourceMysql.php │ ├── SmartyCustom.php │ ├── SmartyCustomTemplate.php │ ├── SmartyDev.php │ ├── SmartyDevTemplate.php │ ├── SmartyLazyRegister.php │ ├── SmartyResourceModule.php │ ├── SmartyResourceParent.php │ └── TemplateFinder.php ├── SpecificPrice.php ├── SpecificPriceRule.php ├── State.php ├── Store.php ├── Supplier.php ├── SupplierAddress.php ├── Tab.php ├── Tag.php ├── Tools.php ├── Translate.php ├── TranslatedConfiguration.php ├── Upgrader.php ├── Uploader.php ├── Validate.php ├── ValidateConstraintTranslator.php ├── WarehouseAddress.php ├── Windows.php ├── Zone.php ├── assets │ ├── AbstractAssetManager.php │ ├── CccReducer.php │ ├── CssMinifier.php │ ├── JavascriptManager.php │ ├── JsMinifier.php │ ├── PrestashopAssetsLibraries.php │ └── StylesheetManager.php ├── cache │ ├── Cache.php │ ├── CacheApc.php │ ├── CacheMemcache.php │ ├── CacheMemcached.php │ ├── CacheXcache.php │ └── index.php ├── checkout │ ├── AbstractCheckoutStep.php │ ├── AddressValidator.php │ ├── CartChecksum.php │ ├── CheckoutAddressesStep.php │ ├── CheckoutDeliveryStep.php │ ├── CheckoutPaymentStep.php │ ├── CheckoutPersonalInformationStep.php │ ├── CheckoutProcess.php │ ├── CheckoutSession.php │ ├── CheckoutStepInterface.php │ ├── ConditionsToApproveFinder.php │ ├── DeliveryOptionsFinder.php │ └── PaymentOptionsFinder.php ├── container │ └── LegacyCompilerPass.php ├── controller │ ├── AdminController.php │ ├── Controller.php │ ├── FrontController.php │ ├── ModuleAdminController.php │ ├── ModuleFrontController.php │ ├── ProductListingFrontController.php │ ├── ProductPresentingFrontController.php │ └── index.php ├── db │ ├── Db.php │ ├── DbMySQLi.php │ ├── DbPDO.php │ ├── DbQuery.php │ └── index.php ├── exception │ ├── PrestaShopDatabaseException.php │ ├── PrestaShopException.php │ ├── PrestaShopModuleException.php │ ├── PrestaShopObjectNotFoundException.php │ ├── PrestaShopPaymentException.php │ └── index.php ├── form │ ├── AbstractForm.php │ ├── CustomerAddressForm.php │ ├── CustomerAddressFormatter.php │ ├── CustomerAddressPersister.php │ ├── CustomerForm.php │ ├── CustomerFormatter.php │ ├── CustomerLoginForm.php │ ├── CustomerLoginFormatter.php │ ├── CustomerPersister.php │ ├── FormField.php │ ├── FormFormatterInterface.php │ └── FormInterface.php ├── helper │ ├── Helper.php │ ├── HelperCalendar.php │ ├── HelperForm.php │ ├── HelperImageUploader.php │ ├── HelperKpi.php │ ├── HelperKpiRow.php │ ├── HelperList.php │ ├── HelperOptions.php │ ├── HelperShop.php │ ├── HelperTreeCategories.php │ ├── HelperTreeShops.php │ ├── HelperUploader.php │ ├── HelperView.php │ └── index.php ├── index.php ├── lang │ ├── AttributeGroupLang.php │ ├── AttributeLang.php │ ├── CarrierLang.php │ ├── CategoryLang.php │ ├── CmsCategoryLang.php │ ├── ConfigurationLang.php │ ├── ContactLang.php │ ├── DataLang.php │ ├── FeatureLang.php │ ├── FeatureValueLang.php │ ├── GenderLang.php │ ├── GroupLang.php │ ├── KeysReference │ │ ├── AttributeGroupLang.php │ │ ├── AttributeLang.php │ │ ├── CarrierLang.php │ │ ├── CategoryLang.php │ │ ├── CmsCategoryLang.php │ │ ├── ConfigurationLang.php │ │ ├── ContactLang.php │ │ ├── FeatureLang.php │ │ ├── FeatureValueLang.php │ │ ├── GenderLang.php │ │ ├── GroupLang.php │ │ ├── MetaLang.php │ │ ├── OrderMessageLang.php │ │ ├── OrderReturnStateLang.php │ │ ├── OrderStateLang.php │ │ ├── ProfileLang.php │ │ ├── QuickAccessLang.php │ │ ├── README.md │ │ ├── RiskLang.php │ │ ├── StockMvtReasonLang.php │ │ ├── SupplyOrderStateLang.php │ │ ├── TabLang.php │ │ └── ThemeLang.php │ ├── MetaLang.php │ ├── OrderMessageLang.php │ ├── OrderReturnStateLang.php │ ├── OrderStateLang.php │ ├── ProfileLang.php │ ├── QuickAccessLang.php │ ├── RiskLang.php │ ├── StockMvtReasonLang.php │ ├── SupplyOrderStateLang.php │ ├── TabLang.php │ └── ThemeLang.php ├── log │ ├── AbstractLogger.php │ ├── FileLogger.php │ └── index.php ├── module │ ├── CarrierModule.php │ ├── Module.php │ ├── ModuleGraph.php │ ├── ModuleGraphEngine.php │ ├── ModuleGrid.php │ ├── ModuleGridEngine.php │ └── index.php ├── order │ ├── Order.php │ ├── OrderCarrier.php │ ├── OrderCartRule.php │ ├── OrderDetail.php │ ├── OrderDiscount.php │ ├── OrderHistory.php │ ├── OrderInvoice.php │ ├── OrderMessage.php │ ├── OrderPayment.php │ ├── OrderReturn.php │ ├── OrderReturnState.php │ ├── OrderSlip.php │ ├── OrderState.php │ └── index.php ├── pdf │ ├── HTMLTemplate.php │ ├── HTMLTemplateDeliverySlip.php │ ├── HTMLTemplateInvoice.php │ ├── HTMLTemplateOrderReturn.php │ ├── HTMLTemplateOrderSlip.php │ ├── HTMLTemplateSupplyOrderForm.php │ ├── PDF.php │ ├── PDFGenerator.php │ └── index.php ├── product │ └── SpecificPriceFormatter.php ├── proxy │ └── LinkProxy.php ├── range │ ├── RangePrice.php │ ├── RangeWeight.php │ └── index.php ├── shop │ ├── Shop.php │ ├── ShopGroup.php │ ├── ShopUrl.php │ └── index.php ├── stock │ ├── Stock.php │ ├── StockAvailable.php │ ├── StockManager.php │ ├── StockManagerFactory.php │ ├── StockManagerInterface.php │ ├── StockManagerModule.php │ ├── StockMvt.php │ ├── StockMvtReason.php │ ├── StockMvtWS.php │ ├── SupplyOrder.php │ ├── SupplyOrderDetail.php │ ├── SupplyOrderHistory.php │ ├── SupplyOrderReceiptHistory.php │ ├── SupplyOrderState.php │ ├── Warehouse.php │ ├── WarehouseProductLocation.php │ └── index.php ├── tax │ ├── AverageTaxOfProductsTaxCalculator.php │ ├── Tax.php │ ├── TaxCalculator.php │ ├── TaxConfiguration.php │ ├── TaxManagerFactory.php │ ├── TaxManagerInterface.php │ ├── TaxManagerModule.php │ ├── TaxRule.php │ ├── TaxRulesGroup.php │ ├── TaxRulesTaxManager.php │ └── index.php ├── tree │ ├── ITreeToolbar.php │ ├── ITreeToolbarButton.php │ ├── Tree.php │ ├── TreeToolbar.php │ ├── TreeToolbarButton.php │ ├── TreeToolbarLink.php │ ├── TreeToolbarSearch.php │ ├── TreeToolbarSearchCategories.php │ └── index.php └── webservice │ ├── WebserviceException.php │ ├── WebserviceKey.php │ ├── WebserviceOutputBuilder.php │ ├── WebserviceOutputInterface.php │ ├── WebserviceOutputJSON.php │ ├── WebserviceOutputXML.php │ ├── WebserviceRequest.php │ ├── WebserviceSpecificManagementImages.php │ ├── WebserviceSpecificManagementInterface.php │ ├── WebserviceSpecificManagementSearch.php │ └── index.php ├── composer.json ├── composer.lock ├── config ├── .htaccess ├── alias.php ├── autoload.php ├── bootstrap.php ├── config.inc.php ├── db_slave_server.inc.php ├── defines.inc.php ├── defines_uri.inc.php ├── index.php ├── services │ ├── admin │ │ ├── services_dev.yml │ │ ├── services_prod.yml │ │ └── services_test.yml │ ├── common.yml │ ├── front │ │ ├── services_dev.yml │ │ ├── services_prod.yml │ │ └── services_test.yml │ └── webservice │ │ ├── services_dev.yml │ │ ├── services_prod.yml │ │ └── services_test.yml ├── smarty.config.inc.php ├── smartyadmin.config.inc.php ├── smartyfront.config.inc.php ├── themes │ └── .gitkeep └── xml │ ├── .htaccess │ ├── index.php │ └── themes │ ├── default.xml │ └── index.php ├── controllers ├── .htaccess ├── admin │ ├── AdminAccessController.php │ ├── AdminAttributeGeneratorController.php │ ├── AdminAttributesGroupsController.php │ ├── AdminCarrierWizardController.php │ ├── AdminCarriersController.php │ ├── AdminCartRulesController.php │ ├── AdminCartsController.php │ ├── AdminCountriesController.php │ ├── AdminCustomerThreadsController.php │ ├── AdminDashboardController.php │ ├── AdminFeaturesController.php │ ├── AdminGendersController.php │ ├── AdminGroupsController.php │ ├── AdminImagesController.php │ ├── AdminImportController.php │ ├── AdminLegacyLayoutController.php │ ├── AdminLoginController.php │ ├── AdminModulesController.php │ ├── AdminModulesPositionsController.php │ ├── AdminNotFoundController.php │ ├── AdminOutstandingController.php │ ├── AdminPatternsController.php │ ├── AdminPdfController.php │ ├── AdminProductsController.php │ ├── AdminQuickAccessesController.php │ ├── AdminReferrersController.php │ ├── AdminRequestSqlController.php │ ├── AdminReturnController.php │ ├── AdminSearchConfController.php │ ├── AdminSearchController.php │ ├── AdminSearchEnginesController.php │ ├── AdminShopController.php │ ├── AdminShopGroupController.php │ ├── AdminShopUrlController.php │ ├── AdminSpecificPriceRuleController.php │ ├── AdminStatesController.php │ ├── AdminStatsController.php │ ├── AdminStatsTabController.php │ ├── AdminStatusesController.php │ ├── AdminStoresController.php │ ├── AdminSuppliersController.php │ ├── AdminTabsController.php │ ├── AdminTagsController.php │ ├── AdminTaxRulesGroupController.php │ ├── AdminTranslationsController.php │ ├── AdminZonesController.php │ ├── BoOrder.php │ └── index.php ├── front │ ├── AddressController.php │ ├── AddressesController.php │ ├── AttachmentController.php │ ├── AuthController.php │ ├── CartController.php │ ├── ChangeCurrencyController.php │ ├── CmsController.php │ ├── ContactController.php │ ├── DiscountController.php │ ├── GetFileController.php │ ├── GuestTrackingController.php │ ├── HistoryController.php │ ├── IdentityController.php │ ├── IndexController.php │ ├── MyAccountController.php │ ├── OrderConfirmationController.php │ ├── OrderController.php │ ├── OrderDetailController.php │ ├── OrderFollowController.php │ ├── OrderReturnController.php │ ├── OrderSlipController.php │ ├── PageNotFoundController.php │ ├── PasswordController.php │ ├── PdfInvoiceController.php │ ├── PdfOrderReturnController.php │ ├── PdfOrderSlipController.php │ ├── ProductController.php │ ├── SitemapController.php │ ├── StatisticsController.php │ ├── StoresController.php │ ├── index.php │ └── listing │ │ ├── BestSalesController.php │ │ ├── CategoryController.php │ │ ├── ManufacturerController.php │ │ ├── NewProductsController.php │ │ ├── PricesDropController.php │ │ ├── SearchController.php │ │ ├── SupplierController.php │ │ └── index.php └── index.php ├── diff-hooks.php ├── docker-compose.yml ├── docs ├── .htaccess ├── CHANGELOG.txt ├── csv_import │ ├── .htaccess │ ├── README.md │ ├── addresses_import.csv │ ├── alias_import.csv │ ├── categories_import.csv │ ├── combinations_import.csv │ ├── customers_import.csv │ ├── index.php │ ├── manufacturers_import.csv │ ├── products_import.csv │ ├── store_contacts.csv │ ├── suppliers_import.csv │ ├── supply_orders_details_import.csv │ └── supply_orders_import.csv ├── docker │ ├── .gitignore │ ├── README.md │ ├── nginx_fpm │ │ ├── docker-compose.yml │ │ ├── prestashop-fpm │ │ │ ├── Dockerfile │ │ │ └── prestashop-php.ini │ │ └── prestashop-nginx │ │ │ └── prestashop-nginx.conf │ ├── nginx_fpm_supervisord │ │ ├── docker-compose.yml │ │ └── prestashop-nginx-fpm │ │ │ ├── Dockerfile │ │ │ ├── prestashop-nginx.conf │ │ │ └── prestashop-php.ini │ └── prestashopCli.sh ├── index.php ├── licenses │ ├── LICENSE.txt │ ├── cropper.txt │ ├── fileuploader.txt │ ├── fonts │ │ ├── open-sans.txt │ │ └── ubuntu-condensed.txt │ ├── index.php │ ├── open-source-bibliography.md │ ├── php-sql-parser.txt │ └── tinymce-smarty-swift.txt └── server_config │ └── nginx.conf.dist ├── download ├── .htaccess └── index.php ├── error500.html ├── images.inc.php ├── img ├── .htaccess ├── 404.gif ├── admin │ ├── ___info-ca.gif │ ├── add.gif │ ├── add_stock.png │ ├── ajax-loader.gif │ ├── arrow2.gif │ ├── arrow_down.png │ ├── arrow_up.png │ ├── asterisk.gif │ ├── blank.gif │ ├── carrier-default.jpg │ ├── cart.gif │ ├── close.png │ ├── color.png │ ├── color_swatch.png │ ├── colorpicker.png │ ├── contact.gif │ ├── coupon.gif │ ├── date.png │ ├── delete.gif │ ├── details.gif │ ├── disabled.gif │ ├── duplicate.gif │ ├── duplicate.png │ ├── edit.gif │ ├── edit_2.gif │ ├── enabled.gif │ ├── error.png │ ├── error2.png │ ├── external_link.png │ ├── folder.gif │ ├── graybar.jpg │ ├── grid.gif │ ├── help.png │ ├── index.php │ ├── info.png │ ├── information.png │ ├── invoice.gif │ ├── less.png │ ├── list-next.gif │ ├── list-next2.gif │ ├── list-prev.gif │ ├── list-prev2.gif │ ├── lv1.gif │ ├── lv2_b.gif │ ├── meta100.png │ ├── more.png │ ├── next.gif │ ├── page_white_add.png │ ├── play.png │ ├── remove_stock.png │ ├── search.gif │ ├── separator_breadcrumb.png │ ├── tab-invoice.gif │ ├── unknown.gif │ ├── warn2.png │ └── warning.gif ├── bg_500.png ├── bg_loader.png ├── c │ └── index.php ├── cms │ ├── cms-img.jpg │ └── index.php ├── co │ └── index.php ├── favicon.ico ├── flags │ ├── ad.jpg │ ├── ae.jpg │ ├── af.jpg │ ├── ag.jpg │ ├── ai.jpg │ ├── al.jpg │ ├── am.jpg │ ├── an.jpg │ ├── ao.jpg │ ├── ar.jpg │ ├── as.jpg │ ├── at.jpg │ ├── au.jpg │ ├── aw.jpg │ ├── ax.jpg │ ├── az.jpg │ ├── ba.jpg │ ├── bb.jpg │ ├── bd.jpg │ ├── be.jpg │ ├── bf.jpg │ ├── bg.jpg │ ├── bh.jpg │ ├── bi.jpg │ ├── bj.jpg │ ├── bm.jpg │ ├── bn.jpg │ ├── bo.jpg │ ├── br.jpg │ ├── bs.jpg │ ├── bt.jpg │ ├── bv.jpg │ ├── bw.jpg │ ├── by.jpg │ ├── bz.jpg │ ├── ca.jpg │ ├── catalonia.jpg │ ├── cc.jpg │ ├── cd.jpg │ ├── cf.jpg │ ├── cg.jpg │ ├── ch.jpg │ ├── ci.jpg │ ├── ck.jpg │ ├── cl.jpg │ ├── cm.jpg │ ├── cn.jpg │ ├── co.jpg │ ├── cr.jpg │ ├── cs.jpg │ ├── cu.jpg │ ├── cv.jpg │ ├── cx.jpg │ ├── cy.jpg │ ├── cz.jpg │ ├── de.jpg │ ├── dj.jpg │ ├── dk.jpg │ ├── dm.jpg │ ├── do.jpg │ ├── dz.jpg │ ├── ec.jpg │ ├── ee.jpg │ ├── eg.jpg │ ├── eh.jpg │ ├── england.jpg │ ├── er.jpg │ ├── es.jpg │ ├── et.jpg │ ├── europeanunion.jpg │ ├── fam.jpg │ ├── fi.jpg │ ├── fj.jpg │ ├── fk.jpg │ ├── fm.jpg │ ├── fo.jpg │ ├── fr.jpg │ ├── ga.jpg │ ├── gb.jpg │ ├── gd.jpg │ ├── ge.jpg │ ├── gf.jpg │ ├── gh.jpg │ ├── gi.jpg │ ├── gl.jpg │ ├── gm.jpg │ ├── gn.jpg │ ├── gp.jpg │ ├── gq.jpg │ ├── gr.jpg │ ├── gs.jpg │ ├── gt.jpg │ ├── gu.jpg │ ├── gw.jpg │ ├── gy.jpg │ ├── hk.jpg │ ├── hm.jpg │ ├── hn.jpg │ ├── hr.jpg │ ├── ht.jpg │ ├── hu.jpg │ ├── id.jpg │ ├── ie.jpg │ ├── il.jpg │ ├── in.jpg │ ├── io.jpg │ ├── iq.jpg │ ├── ir.jpg │ ├── is.jpg │ ├── it.jpg │ ├── jm.jpg │ ├── jo.jpg │ ├── jp.jpg │ ├── ke.jpg │ ├── kg.jpg │ ├── kh.jpg │ ├── ki.jpg │ ├── km.jpg │ ├── kn.jpg │ ├── kp.jpg │ ├── kr.jpg │ ├── kw.jpg │ ├── ky.jpg │ ├── kz.jpg │ ├── la.jpg │ ├── lb.jpg │ ├── lc.jpg │ ├── li.jpg │ ├── lk.jpg │ ├── lr.jpg │ ├── ls.jpg │ ├── lt.jpg │ ├── lu.jpg │ ├── lv.jpg │ ├── ly.jpg │ ├── ma.jpg │ ├── mc.jpg │ ├── md.jpg │ ├── me.jpg │ ├── mg.jpg │ ├── mh.jpg │ ├── mk.jpg │ ├── ml.jpg │ ├── mm.jpg │ ├── mn.jpg │ ├── mo.jpg │ ├── mp.jpg │ ├── mq.jpg │ ├── mr.jpg │ ├── ms.jpg │ ├── mt.jpg │ ├── mu.jpg │ ├── mv.jpg │ ├── mw.jpg │ ├── mx.jpg │ ├── my.jpg │ ├── mz.jpg │ ├── na.jpg │ ├── nc.jpg │ ├── ne.jpg │ ├── nf.jpg │ ├── ng.jpg │ ├── ni.jpg │ ├── nl.jpg │ ├── no.jpg │ ├── np.jpg │ ├── nr.jpg │ ├── nu.jpg │ ├── nz.jpg │ ├── om.jpg │ ├── pa.jpg │ ├── pe.jpg │ ├── pf.jpg │ ├── pg.jpg │ ├── ph.jpg │ ├── pk.jpg │ ├── pl.jpg │ ├── pm.jpg │ ├── pn.jpg │ ├── pr.jpg │ ├── ps.jpg │ ├── pt.jpg │ ├── pw.jpg │ ├── py.jpg │ ├── qa.jpg │ ├── re.jpg │ ├── ro.jpg │ ├── rs.jpg │ ├── ru.jpg │ ├── rw.jpg │ ├── sa.jpg │ ├── sb.jpg │ ├── sc.jpg │ ├── scotland.jpg │ ├── sd.jpg │ ├── se.jpg │ ├── sg.jpg │ ├── sh.jpg │ ├── si.jpg │ ├── sj.jpg │ ├── sk.jpg │ ├── sl.jpg │ ├── sm.jpg │ ├── sn.jpg │ ├── so.jpg │ ├── sr.jpg │ ├── st.jpg │ ├── sv.jpg │ ├── sy.jpg │ ├── sz.jpg │ ├── tc.jpg │ ├── td.jpg │ ├── tf.jpg │ ├── tg.jpg │ ├── th.jpg │ ├── tj.jpg │ ├── tk.jpg │ ├── tl.jpg │ ├── tm.jpg │ ├── tn.jpg │ ├── to.jpg │ ├── tr.jpg │ ├── tt.jpg │ ├── tv.jpg │ ├── tw.jpg │ ├── tz.jpg │ ├── ua.jpg │ ├── ug.jpg │ ├── um.jpg │ ├── us.jpg │ ├── uy.jpg │ ├── uz.jpg │ ├── va.jpg │ ├── vc.jpg │ ├── ve.jpg │ ├── vg.jpg │ ├── vi.jpg │ ├── vn.jpg │ ├── vu.jpg │ ├── wales.jpg │ ├── wf.jpg │ ├── ws.jpg │ ├── ye.jpg │ ├── yt.jpg │ ├── za.jpg │ ├── zm.jpg │ └── zw.jpg ├── genders │ ├── Unknown.jpg │ └── index.php ├── index.php ├── jquery-ui │ ├── index.php │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png ├── l │ ├── index.php │ └── none.jpg ├── loader.gif ├── loadingAnimation.gif ├── logo.jpg ├── logo.png ├── logo_invoice.jpg ├── logo_stores.png ├── m │ └── index.php ├── macFFBgHack.png ├── os │ └── index.php ├── p │ └── index.php ├── prestashop-avatar.png ├── prestashop@2x.png ├── preston-login-wink@2x.png ├── preston-login@2x.png ├── questionmark.png ├── s │ ├── 2.jpg │ └── index.php ├── scenes │ ├── index.php │ └── thumbs │ │ └── index.php ├── st │ └── index.php ├── su │ └── index.php ├── t │ ├── 0.gif │ ├── AdminMobile.gif │ ├── AdminRequestSql.gif │ └── index.php └── tmp │ └── index.php ├── index.php ├── init.php ├── install-dev ├── autoload.php ├── classes │ ├── HttpConfigureInterface.php │ ├── Step.php │ ├── StepList.php │ ├── controllerConsole.php │ ├── controllerHttp.php │ ├── datas.php │ ├── exception.php │ ├── index.php │ └── session.php ├── controllers │ ├── console │ │ ├── index.php │ │ └── process.php │ ├── http │ │ ├── configure.php │ │ ├── database.php │ │ ├── index.php │ │ ├── license.php │ │ ├── process.php │ │ ├── smarty_compile.php │ │ ├── system.php │ │ └── welcome.php │ └── index.php ├── data │ ├── db_structure.sql │ ├── img │ │ ├── genders │ │ │ ├── Mr.jpg │ │ │ ├── Mrs.jpg │ │ │ ├── Unknown.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── os │ │ │ ├── Awaiting_PayPal_payment.gif │ │ │ ├── Awaiting_bank_wire_payment.gif │ │ │ ├── Awaiting_cheque_payment.gif │ │ │ ├── Awaiting_cod_validation.gif │ │ │ ├── Canceled.gif │ │ │ ├── Delivered.gif │ │ │ ├── On_backorder_paid.gif │ │ │ ├── On_backorder_unpaid.gif │ │ │ ├── Payment_accepted.gif │ │ │ ├── Payment_error.gif │ │ │ ├── Payment_remotely_accepted.gif │ │ │ ├── Preparation_in_progress.gif │ │ │ ├── Refund.gif │ │ │ ├── Shipped.gif │ │ │ ├── index.php │ │ │ ├── order_state_1.gif │ │ │ ├── order_state_10.gif │ │ │ ├── order_state_11.gif │ │ │ ├── order_state_12.gif │ │ │ ├── order_state_2.gif │ │ │ ├── order_state_3.gif │ │ │ ├── order_state_4.gif │ │ │ ├── order_state_5.gif │ │ │ ├── order_state_6.gif │ │ │ ├── order_state_7.gif │ │ │ ├── order_state_8.gif │ │ │ └── order_state_9.gif │ ├── index.php │ ├── iso_to_timezone.xml │ └── xml │ │ ├── access.xml │ │ ├── address_format.xml │ │ ├── authorization_role.xml │ │ ├── carrier.xml │ │ ├── carrier_group.xml │ │ ├── carrier_tax_rules_group_shop.xml │ │ ├── carrier_zone.xml │ │ ├── category.xml │ │ ├── category_group.xml │ │ ├── cms.xml │ │ ├── cms_category.xml │ │ ├── cms_role.xml │ │ ├── configuration.xml │ │ ├── contact.xml │ │ ├── country.xml │ │ ├── gender.xml │ │ ├── group.xml │ │ ├── hook.xml │ │ ├── hook_alias.xml │ │ ├── index.php │ │ ├── meta.xml │ │ ├── operating_system.xml │ │ ├── order_return_state.xml │ │ ├── order_state.xml │ │ ├── profile.xml │ │ ├── quick_access.xml │ │ ├── risk.xml │ │ ├── search_engine.xml │ │ ├── state.xml │ │ ├── stock_mvt_reason.xml │ │ ├── supply_order_state.xml │ │ ├── tab.xml │ │ ├── timezone.xml │ │ ├── warehouse.xml │ │ ├── web_browser.xml │ │ └── zone.xml ├── fixtures │ ├── fashion │ │ ├── data │ │ │ ├── access.xml │ │ │ ├── address.xml │ │ │ ├── alias.xml │ │ │ ├── attribute.xml │ │ │ ├── attribute_group.xml │ │ │ ├── carrier.xml │ │ │ ├── carrier_group.xml │ │ │ ├── carrier_tax_rules_group_shop.xml │ │ │ ├── carrier_zone.xml │ │ │ ├── cart.xml │ │ │ ├── cart_product.xml │ │ │ ├── category.xml │ │ │ ├── category_group.xml │ │ │ ├── category_product.xml │ │ │ ├── connections.xml │ │ │ ├── customer.xml │ │ │ ├── customization_field.xml │ │ │ ├── delivery.xml │ │ │ ├── feature.xml │ │ │ ├── feature_product.xml │ │ │ ├── feature_value.xml │ │ │ ├── guest.xml │ │ │ ├── image.xml │ │ │ ├── index.php │ │ │ ├── manufacturer.xml │ │ │ ├── order_carrier.xml │ │ │ ├── order_detail.xml │ │ │ ├── order_history.xml │ │ │ ├── order_message.xml │ │ │ ├── orders.xml │ │ │ ├── pack.xml │ │ │ ├── product.xml │ │ │ ├── product_attribute.xml │ │ │ ├── product_attribute_combination.xml │ │ │ ├── product_attribute_image.xml │ │ │ ├── product_supplier.xml │ │ │ ├── profile.xml │ │ │ ├── range_price.xml │ │ │ ├── range_weight.xml │ │ │ ├── specific_price.xml │ │ │ ├── stock_available.xml │ │ │ ├── store.xml │ │ │ └── tag.xml │ │ ├── img │ │ │ ├── c │ │ │ │ ├── Accessories-category_default.jpg │ │ │ │ ├── Accessories-medium_default.jpg │ │ │ │ ├── Accessories.jpg │ │ │ │ ├── Art-category_default.jpg │ │ │ │ ├── Art-medium_default.jpg │ │ │ │ ├── Art.jpg │ │ │ │ ├── Clothes-category_default.jpg │ │ │ │ ├── Clothes-medium_default.jpg │ │ │ │ ├── Clothes.jpg │ │ │ │ ├── Home_Accessories-category_default.jpg │ │ │ │ ├── Home_Accessories-medium_default.jpg │ │ │ │ ├── Home_Accessories.jpg │ │ │ │ ├── Men-category_default.jpg │ │ │ │ ├── Men-medium_default.jpg │ │ │ │ ├── Men.jpg │ │ │ │ ├── Stationery-category_default.jpg │ │ │ │ ├── Stationery-medium_default.jpg │ │ │ │ ├── Stationery.jpg │ │ │ │ ├── Women-category_default.jpg │ │ │ │ ├── Women-medium_default.jpg │ │ │ │ ├── Women.jpg │ │ │ │ ├── index.php │ │ │ │ └── resize.php │ │ │ ├── index.php │ │ │ ├── m │ │ │ │ ├── Graphic_Corner-large_default.jpg │ │ │ │ ├── Graphic_Corner-medium_default.jpg │ │ │ │ ├── Graphic_Corner-small_default.jpg │ │ │ │ ├── Graphic_Corner.jpg │ │ │ │ ├── Studio_Design-large_default.jpg │ │ │ │ ├── Studio_Design-medium_default.jpg │ │ │ │ ├── Studio_Design-small_default.jpg │ │ │ │ ├── Studio_Design.jpg │ │ │ │ └── index.php │ │ │ ├── p │ │ │ │ ├── Brown_bear_-_Vector_graphics-cart_default.jpg │ │ │ │ ├── Brown_bear_-_Vector_graphics-home_default.jpg │ │ │ │ ├── Brown_bear_-_Vector_graphics-large_default.jpg │ │ │ │ ├── Brown_bear_-_Vector_graphics-medium_default.jpg │ │ │ │ ├── Brown_bear_-_Vector_graphics-small_default.jpg │ │ │ │ ├── Brown_bear_-_Vector_graphics-thickbox_default.jpg │ │ │ │ ├── Brown_bear_-_Vector_graphics.jpg │ │ │ │ ├── Brown_bear_cushion-cart_default.jpg │ │ │ │ ├── Brown_bear_cushion-home_default.jpg │ │ │ │ ├── Brown_bear_cushion-large_default.jpg │ │ │ │ ├── Brown_bear_cushion-medium_default.jpg │ │ │ │ ├── Brown_bear_cushion-small_default.jpg │ │ │ │ ├── Brown_bear_cushion-thickbox_default.jpg │ │ │ │ ├── Brown_bear_cushion.jpg │ │ │ │ ├── Brown_bear_cushion_1-cart_default.jpg │ │ │ │ ├── Brown_bear_cushion_1-home_default.jpg │ │ │ │ ├── Brown_bear_cushion_1-large_default.jpg │ │ │ │ ├── Brown_bear_cushion_1-medium_default.jpg │ │ │ │ ├── Brown_bear_cushion_1-small_default.jpg │ │ │ │ ├── Brown_bear_cushion_1-thickbox_default.jpg │ │ │ │ ├── Brown_bear_cushion_1.jpg │ │ │ │ ├── Brown_bear_printed_sweater-cart_default.jpg │ │ │ │ ├── Brown_bear_printed_sweater-home_default.jpg │ │ │ │ ├── Brown_bear_printed_sweater-large_default.jpg │ │ │ │ ├── Brown_bear_printed_sweater-medium_default.jpg │ │ │ │ ├── Brown_bear_printed_sweater-small_default.jpg │ │ │ │ ├── Brown_bear_printed_sweater-thickbox_default.jpg │ │ │ │ ├── Brown_bear_printed_sweater.jpg │ │ │ │ ├── Customizable_mug-cart_default.jpg │ │ │ │ ├── Customizable_mug-home_default.jpg │ │ │ │ ├── Customizable_mug-large_default.jpg │ │ │ │ ├── Customizable_mug-medium_default.jpg │ │ │ │ ├── Customizable_mug-small_default.jpg │ │ │ │ ├── Customizable_mug-thickbox_default.jpg │ │ │ │ ├── Customizable_mug.jpg │ │ │ │ ├── Hummingbird_-_Vector_graphics-cart_default.jpg │ │ │ │ ├── Hummingbird_-_Vector_graphics-home_default.jpg │ │ │ │ ├── Hummingbird_-_Vector_graphics-large_default.jpg │ │ │ │ ├── Hummingbird_-_Vector_graphics-medium_default.jpg │ │ │ │ ├── Hummingbird_-_Vector_graphics-small_default.jpg │ │ │ │ ├── Hummingbird_-_Vector_graphics-thickbox_default.jpg │ │ │ │ ├── Hummingbird_-_Vector_graphics.jpg │ │ │ │ ├── Hummingbird_cushion-cart_default.jpg │ │ │ │ ├── Hummingbird_cushion-home_default.jpg │ │ │ │ ├── Hummingbird_cushion-large_default.jpg │ │ │ │ ├── Hummingbird_cushion-medium_default.jpg │ │ │ │ ├── Hummingbird_cushion-small_default.jpg │ │ │ │ ├── Hummingbird_cushion-thickbox_default.jpg │ │ │ │ ├── Hummingbird_cushion.jpg │ │ │ │ ├── Hummingbird_cushion_1-cart_default.jpg │ │ │ │ ├── Hummingbird_cushion_1-home_default.jpg │ │ │ │ ├── Hummingbird_cushion_1-large_default.jpg │ │ │ │ ├── Hummingbird_cushion_1-medium_default.jpg │ │ │ │ ├── Hummingbird_cushion_1-small_default.jpg │ │ │ │ ├── Hummingbird_cushion_1-thickbox_default.jpg │ │ │ │ ├── Hummingbird_cushion_1.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt-cart_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt-home_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt-large_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt-medium_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt-small_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt-thickbox_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt_1-cart_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt_1-home_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt_1-large_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt_1-medium_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt_1-small_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt_1-thickbox_default.jpg │ │ │ │ ├── Hummingbird_printed_t-shirt_1.jpg │ │ │ │ ├── Mountain_fox_-_Vector_graphics-cart_default.jpg │ │ │ │ ├── Mountain_fox_-_Vector_graphics-home_default.jpg │ │ │ │ ├── Mountain_fox_-_Vector_graphics-large_default.jpg │ │ │ │ ├── Mountain_fox_-_Vector_graphics-medium_default.jpg │ │ │ │ ├── Mountain_fox_-_Vector_graphics-small_default.jpg │ │ │ │ ├── Mountain_fox_-_Vector_graphics-thickbox_default.jpg │ │ │ │ ├── Mountain_fox_-_Vector_graphics.jpg │ │ │ │ ├── Mountain_fox_cushion-cart_default.jpg │ │ │ │ ├── Mountain_fox_cushion-home_default.jpg │ │ │ │ ├── Mountain_fox_cushion-large_default.jpg │ │ │ │ ├── Mountain_fox_cushion-medium_default.jpg │ │ │ │ ├── Mountain_fox_cushion-small_default.jpg │ │ │ │ ├── Mountain_fox_cushion-thickbox_default.jpg │ │ │ │ ├── Mountain_fox_cushion.jpg │ │ │ │ ├── Mountain_fox_cushion_1-cart_default.jpg │ │ │ │ ├── Mountain_fox_cushion_1-home_default.jpg │ │ │ │ ├── Mountain_fox_cushion_1-large_default.jpg │ │ │ │ ├── Mountain_fox_cushion_1-medium_default.jpg │ │ │ │ ├── Mountain_fox_cushion_1-small_default.jpg │ │ │ │ ├── Mountain_fox_cushion_1-thickbox_default.jpg │ │ │ │ ├── Mountain_fox_cushion_1.jpg │ │ │ │ ├── Mountain_fox_notebook-cart_default.jpg │ │ │ │ ├── Mountain_fox_notebook-home_default.jpg │ │ │ │ ├── Mountain_fox_notebook-large_default.jpg │ │ │ │ ├── Mountain_fox_notebook-medium_default.jpg │ │ │ │ ├── Mountain_fox_notebook-small_default.jpg │ │ │ │ ├── Mountain_fox_notebook-thickbox_default.jpg │ │ │ │ ├── Mountain_fox_notebook.jpg │ │ │ │ ├── Mountain_fox_notebook_1-cart_default.jpg │ │ │ │ ├── Mountain_fox_notebook_1-home_default.jpg │ │ │ │ ├── Mountain_fox_notebook_1-large_default.jpg │ │ │ │ ├── Mountain_fox_notebook_1-medium_default.jpg │ │ │ │ ├── Mountain_fox_notebook_1-small_default.jpg │ │ │ │ ├── Mountain_fox_notebook_1-thickbox_default.jpg │ │ │ │ ├── Mountain_fox_notebook_1.jpg │ │ │ │ ├── Mountain_fox_notebook_2-cart_default.jpg │ │ │ │ ├── Mountain_fox_notebook_2-home_default.jpg │ │ │ │ ├── Mountain_fox_notebook_2-large_default.jpg │ │ │ │ ├── Mountain_fox_notebook_2-medium_default.jpg │ │ │ │ ├── Mountain_fox_notebook_2-small_default.jpg │ │ │ │ ├── Mountain_fox_notebook_2-thickbox_default.jpg │ │ │ │ ├── Mountain_fox_notebook_2.jpg │ │ │ │ ├── Mug_The_adventure_begins-cart_default.jpg │ │ │ │ ├── Mug_The_adventure_begins-home_default.jpg │ │ │ │ ├── Mug_The_adventure_begins-large_default.jpg │ │ │ │ ├── Mug_The_adventure_begins-medium_default.jpg │ │ │ │ ├── Mug_The_adventure_begins-small_default.jpg │ │ │ │ ├── Mug_The_adventure_begins-thickbox_default.jpg │ │ │ │ ├── Mug_The_adventure_begins.jpg │ │ │ │ ├── Mug_The_best_is_yet_to_come-cart_default.jpg │ │ │ │ ├── Mug_The_best_is_yet_to_come-home_default.jpg │ │ │ │ ├── Mug_The_best_is_yet_to_come-large_default.jpg │ │ │ │ ├── Mug_The_best_is_yet_to_come-medium_default.jpg │ │ │ │ ├── Mug_The_best_is_yet_to_come-small_default.jpg │ │ │ │ ├── Mug_The_best_is_yet_to_come-thickbox_default.jpg │ │ │ │ ├── Mug_The_best_is_yet_to_come.jpg │ │ │ │ ├── Mug_Today_is_a_good_day-cart_default.jpg │ │ │ │ ├── Mug_Today_is_a_good_day-home_default.jpg │ │ │ │ ├── Mug_Today_is_a_good_day-large_default.jpg │ │ │ │ ├── Mug_Today_is_a_good_day-medium_default.jpg │ │ │ │ ├── Mug_Today_is_a_good_day-small_default.jpg │ │ │ │ ├── Mug_Today_is_a_good_day-thickbox_default.jpg │ │ │ │ ├── Mug_Today_is_a_good_day.jpg │ │ │ │ ├── Pack_Mug_Framed_poster-cart_default.jpg │ │ │ │ ├── Pack_Mug_Framed_poster-home_default.jpg │ │ │ │ ├── Pack_Mug_Framed_poster-large_default.jpg │ │ │ │ ├── Pack_Mug_Framed_poster-medium_default.jpg │ │ │ │ ├── Pack_Mug_Framed_poster-small_default.jpg │ │ │ │ ├── Pack_Mug_Framed_poster-thickbox_default.jpg │ │ │ │ ├── Pack_Mug_Framed_poster.jpg │ │ │ │ ├── The_adventure_begins_Framed_poster-cart_default.jpg │ │ │ │ ├── The_adventure_begins_Framed_poster-home_default.jpg │ │ │ │ ├── The_adventure_begins_Framed_poster-large_default.jpg │ │ │ │ ├── The_adventure_begins_Framed_poster-medium_default.jpg │ │ │ │ ├── The_adventure_begins_Framed_poster-small_default.jpg │ │ │ │ ├── The_adventure_begins_Framed_poster-thickbox_default.jpg │ │ │ │ ├── The_adventure_begins_Framed_poster.jpg │ │ │ │ ├── The_best_is_yet_to_come_Framed_poster-cart_default.jpg │ │ │ │ ├── The_best_is_yet_to_come_Framed_poster-home_default.jpg │ │ │ │ ├── The_best_is_yet_to_come_Framed_poster-large_default.jpg │ │ │ │ ├── The_best_is_yet_to_come_Framed_poster-medium_default.jpg │ │ │ │ ├── The_best_is_yet_to_come_Framed_poster-small_default.jpg │ │ │ │ ├── The_best_is_yet_to_come_Framed_poster-thickbox_default.jpg │ │ │ │ ├── The_best_is_yet_to_come_Framed_poster.jpg │ │ │ │ ├── Today_is_a_good_day_Framed_poster-cart_default.jpg │ │ │ │ ├── Today_is_a_good_day_Framed_poster-home_default.jpg │ │ │ │ ├── Today_is_a_good_day_Framed_poster-large_default.jpg │ │ │ │ ├── Today_is_a_good_day_Framed_poster-medium_default.jpg │ │ │ │ ├── Today_is_a_good_day_Framed_poster-small_default.jpg │ │ │ │ ├── Today_is_a_good_day_Framed_poster-thickbox_default.jpg │ │ │ │ ├── Today_is_a_good_day_Framed_poster.jpg │ │ │ │ ├── index.php │ │ │ │ └── resize.php │ │ │ ├── scenes │ │ │ │ ├── index.php │ │ │ │ └── thumbs │ │ │ │ │ └── index.php │ │ │ ├── st │ │ │ │ ├── Coconut_Grove-medium_default.jpg │ │ │ │ ├── Coconut_Grove.jpg │ │ │ │ ├── Dade_County-medium_default.jpg │ │ │ │ ├── Dade_County.jpg │ │ │ │ ├── E_Fort_Lauderdale-medium_default.jpg │ │ │ │ ├── E_Fort_Lauderdale.jpg │ │ │ │ ├── N_Miami_Biscayne-medium_default.jpg │ │ │ │ ├── N_Miami_Biscayne.jpg │ │ │ │ ├── Pembroke_Pines-medium_default.jpg │ │ │ │ ├── Pembroke_Pines.jpg │ │ │ │ └── index.php │ │ │ └── su │ │ │ │ └── index.php │ │ ├── index.php │ │ ├── install.php │ │ └── langs │ │ │ ├── bn │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── br │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── de │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── en │ │ │ ├── data │ │ │ │ ├── attribute.xml │ │ │ │ ├── attribute_group.xml │ │ │ │ ├── attributegroup.xml │ │ │ │ ├── carrier.xml │ │ │ │ ├── category.xml │ │ │ │ ├── customization_field.xml │ │ │ │ ├── feature.xml │ │ │ │ ├── feature_value.xml │ │ │ │ ├── featurevalue.xml │ │ │ │ ├── image.xml │ │ │ │ ├── index.php │ │ │ │ ├── manufacturer.xml │ │ │ │ ├── order_message.xml │ │ │ │ ├── ordermessage.xml │ │ │ │ ├── product.xml │ │ │ │ ├── profile.xml │ │ │ │ ├── scene.xml │ │ │ │ ├── store.xml │ │ │ │ ├── supplier.xml │ │ │ │ └── tag.xml │ │ │ └── index.php │ │ │ ├── es │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── fa │ │ │ ├── data │ │ │ │ ├── attribute.xml │ │ │ │ ├── attribute_group.xml │ │ │ │ ├── attributegroup.xml │ │ │ │ ├── carrier.xml │ │ │ │ ├── category.xml │ │ │ │ ├── customization_field.xml │ │ │ │ ├── feature.xml │ │ │ │ ├── feature_value.xml │ │ │ │ ├── featurevalue.xml │ │ │ │ ├── image.xml │ │ │ │ ├── index.php │ │ │ │ ├── manufacturer.xml │ │ │ │ ├── order_message.xml │ │ │ │ ├── ordermessage.xml │ │ │ │ ├── product.xml │ │ │ │ ├── profile.xml │ │ │ │ ├── scene.xml │ │ │ │ ├── store.xml │ │ │ │ ├── supplier.xml │ │ │ │ └── tag.xml │ │ │ └── index.php │ │ │ ├── fr │ │ │ ├── data │ │ │ │ ├── attribute.xml │ │ │ │ ├── attribute_group.xml │ │ │ │ ├── attributegroup.xml │ │ │ │ ├── carrier.xml │ │ │ │ ├── category.xml │ │ │ │ ├── customization_field.xml │ │ │ │ ├── feature.xml │ │ │ │ ├── feature_value.xml │ │ │ │ ├── featurevalue.xml │ │ │ │ ├── image.xml │ │ │ │ ├── index.php │ │ │ │ ├── manufacturer.xml │ │ │ │ ├── order_message.xml │ │ │ │ ├── ordermessage.xml │ │ │ │ ├── product.xml │ │ │ │ ├── profile.xml │ │ │ │ ├── scene.xml │ │ │ │ ├── supplier.xml │ │ │ │ └── tag.xml │ │ │ └── index.php │ │ │ ├── id │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── index.php │ │ │ ├── it │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── nl │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── pl │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── qc │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── ro │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── ru │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── tw │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ ├── vn │ │ │ ├── data │ │ │ │ ├── index.php │ │ │ │ └── product.xml │ │ │ └── index.php │ │ │ └── zh │ │ │ ├── data │ │ │ ├── index.php │ │ │ └── product.xml │ │ │ └── index.php │ └── index.php ├── index.php ├── index_cli.php ├── init.php ├── install_version.php ├── langs │ ├── ar │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── ar-default-category.jpg │ │ │ ├── ar-default-home.jpg │ │ │ ├── ar-default-large.jpg │ │ │ ├── ar-default-large_scene.jpg │ │ │ ├── ar-default-medium.jpg │ │ │ ├── ar-default-small.jpg │ │ │ ├── ar-default-thickbox.jpg │ │ │ ├── ar-default-thumb_scene.jpg │ │ │ ├── ar.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── bg │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── bg-default-category.jpg │ │ │ ├── bg-default-home.jpg │ │ │ ├── bg-default-large.jpg │ │ │ ├── bg-default-large_scene.jpg │ │ │ ├── bg-default-medium.jpg │ │ │ ├── bg-default-small.jpg │ │ │ ├── bg-default-thickbox.jpg │ │ │ ├── bg-default-thumb_scene.jpg │ │ │ ├── bg.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── bn │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── bn-default-category.jpg │ │ │ ├── bn-default-home.jpg │ │ │ ├── bn-default-large.jpg │ │ │ ├── bn-default-large_scene.jpg │ │ │ ├── bn-default-medium.jpg │ │ │ ├── bn-default-small.jpg │ │ │ ├── bn-default-thickbox.jpg │ │ │ ├── bn-default-thumb_scene.jpg │ │ │ ├── bn.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── br │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── br-default-category.jpg │ │ │ ├── br-default-home.jpg │ │ │ ├── br-default-large.jpg │ │ │ ├── br-default-large_scene.jpg │ │ │ ├── br-default-medium.jpg │ │ │ ├── br-default-small.jpg │ │ │ ├── br-default-thickbox.jpg │ │ │ ├── br-default-thumb_scene.jpg │ │ │ ├── br.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── bs │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── bs-default-category.jpg │ │ │ ├── bs-default-home.jpg │ │ │ ├── bs-default-large.jpg │ │ │ ├── bs-default-large_scene.jpg │ │ │ ├── bs-default-medium.jpg │ │ │ ├── bs-default-small.jpg │ │ │ ├── bs-default-thickbox.jpg │ │ │ ├── bs-default-thumb_scene.jpg │ │ │ ├── bs.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── ca │ │ ├── flag.jpg │ │ ├── index.php │ │ └── language.xml │ ├── cs │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── cs-default-category.jpg │ │ │ ├── cs-default-home.jpg │ │ │ ├── cs-default-large.jpg │ │ │ ├── cs-default-large_scene.jpg │ │ │ ├── cs-default-medium.jpg │ │ │ ├── cs-default-small.jpg │ │ │ ├── cs-default-thickbox.jpg │ │ │ ├── cs-default-thumb_scene.jpg │ │ │ ├── cs.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── da │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── da-default-category.jpg │ │ │ ├── da-default-home.jpg │ │ │ ├── da-default-large.jpg │ │ │ ├── da-default-large_scene.jpg │ │ │ ├── da-default-medium.jpg │ │ │ ├── da-default-small.jpg │ │ │ ├── da-default-thickbox.jpg │ │ │ ├── da-default-thumb_scene.jpg │ │ │ ├── da.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── de │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── de-default-category.jpg │ │ │ ├── de-default-home.jpg │ │ │ ├── de-default-large.jpg │ │ │ ├── de-default-large_scene.jpg │ │ │ ├── de-default-medium.jpg │ │ │ ├── de-default-small.jpg │ │ │ ├── de-default-thickbox.jpg │ │ │ ├── de-default-thumb_scene.jpg │ │ │ ├── de.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── el │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── el-default-category.jpg │ │ │ ├── el-default-home.jpg │ │ │ ├── el-default-large.jpg │ │ │ ├── el-default-large_scene.jpg │ │ │ ├── el-default-medium.jpg │ │ │ ├── el-default-small.jpg │ │ │ ├── el-default-thickbox.jpg │ │ │ ├── el-default-thumb_scene.jpg │ │ │ ├── el.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── en │ │ ├── data │ │ │ ├── carrier.xml │ │ │ ├── category.xml │ │ │ ├── cms.xml │ │ │ ├── cms_category.xml │ │ │ ├── configuration.xml │ │ │ ├── contact.xml │ │ │ ├── country.xml │ │ │ ├── gender.xml │ │ │ ├── group.xml │ │ │ ├── index.php │ │ │ ├── meta.xml │ │ │ ├── order_return_state.xml │ │ │ ├── order_state.xml │ │ │ ├── profile.xml │ │ │ ├── quick_access.xml │ │ │ ├── risk.xml │ │ │ ├── stock_mvt_reason.xml │ │ │ ├── supplier_order_state.xml │ │ │ ├── supply_order_state.xml │ │ │ └── tab.xml │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── en-default-category.jpg │ │ │ ├── en-default-home.jpg │ │ │ ├── en-default-large.jpg │ │ │ ├── en-default-large_scene.jpg │ │ │ ├── en-default-medium.jpg │ │ │ ├── en-default-small.jpg │ │ │ ├── en-default-thickbox.jpg │ │ │ ├── en-default-thumb_scene.jpg │ │ │ ├── en.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── es │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── es-default-category.jpg │ │ │ ├── es-default-home.jpg │ │ │ ├── es-default-large.jpg │ │ │ ├── es-default-large_scene.jpg │ │ │ ├── es-default-medium.jpg │ │ │ ├── es-default-small.jpg │ │ │ ├── es-default-thickbox.jpg │ │ │ ├── es-default-thumb_scene.jpg │ │ │ ├── es.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── et │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── et-default-category.jpg │ │ │ ├── et-default-home.jpg │ │ │ ├── et-default-large.jpg │ │ │ ├── et-default-large_scene.jpg │ │ │ ├── et-default-medium.jpg │ │ │ ├── et-default-small.jpg │ │ │ ├── et-default-thickbox.jpg │ │ │ ├── et-default-thumb_scene.jpg │ │ │ ├── et.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── fa │ │ ├── Flag_of_Iran.svg │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── fa-default-category.jpg │ │ │ ├── fa-default-home.jpg │ │ │ ├── fa-default-large.jpg │ │ │ ├── fa-default-large_scene.jpg │ │ │ ├── fa-default-medium.jpg │ │ │ ├── fa-default-small.jpg │ │ │ ├── fa-default-thickbox.jpg │ │ │ ├── fa-default-thumb_scene.jpg │ │ │ ├── fa.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── fi │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── fi-default-category.jpg │ │ │ ├── fi-default-home.jpg │ │ │ ├── fi-default-large.jpg │ │ │ ├── fi-default-large_scene.jpg │ │ │ ├── fi-default-medium.jpg │ │ │ ├── fi-default-small.jpg │ │ │ ├── fi-default-thickbox.jpg │ │ │ ├── fi-default-thumb_scene.jpg │ │ │ ├── fi.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── fr │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── fr-default-category.jpg │ │ │ ├── fr-default-home.jpg │ │ │ ├── fr-default-large.jpg │ │ │ ├── fr-default-large_scene.jpg │ │ │ ├── fr-default-medium.jpg │ │ │ ├── fr-default-small.jpg │ │ │ ├── fr-default-thickbox.jpg │ │ │ ├── fr-default-thumb_scene.jpg │ │ │ ├── fr.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── gl │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── gl-default-category.jpg │ │ │ ├── gl-default-home.jpg │ │ │ ├── gl-default-large.jpg │ │ │ ├── gl-default-large_scene.jpg │ │ │ ├── gl-default-medium.jpg │ │ │ ├── gl-default-small.jpg │ │ │ ├── gl-default-thickbox.jpg │ │ │ ├── gl-default-thumb_scene.jpg │ │ │ ├── gl.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── he │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── he-default-category.jpg │ │ │ ├── he-default-home.jpg │ │ │ ├── he-default-large.jpg │ │ │ ├── he-default-large_scene.jpg │ │ │ ├── he-default-medium.jpg │ │ │ ├── he-default-small.jpg │ │ │ ├── he-default-thickbox.jpg │ │ │ ├── he-default-thumb_scene.jpg │ │ │ ├── he.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── hi │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── hi-default-category.jpg │ │ │ ├── hi-default-home.jpg │ │ │ ├── hi-default-large.jpg │ │ │ ├── hi-default-large_scene.jpg │ │ │ ├── hi-default-medium.jpg │ │ │ ├── hi-default-small.jpg │ │ │ ├── hi-default-thickbox.jpg │ │ │ ├── hi-default-thumb_scene.jpg │ │ │ ├── hi.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── hr │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── hr-default-category.jpg │ │ │ ├── hr-default-home.jpg │ │ │ ├── hr-default-large.jpg │ │ │ ├── hr-default-large_scene.jpg │ │ │ ├── hr-default-medium.jpg │ │ │ ├── hr-default-small.jpg │ │ │ ├── hr-default-thickbox.jpg │ │ │ ├── hr-default-thumb_scene.jpg │ │ │ ├── hr.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── hu │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── hu-default-category.jpg │ │ │ ├── hu-default-home.jpg │ │ │ ├── hu-default-large.jpg │ │ │ ├── hu-default-large_scene.jpg │ │ │ ├── hu-default-medium.jpg │ │ │ ├── hu-default-small.jpg │ │ │ ├── hu-default-thickbox.jpg │ │ │ ├── hu-default-thumb_scene.jpg │ │ │ ├── hu.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── id │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── id-default-category.jpg │ │ │ ├── id-default-home.jpg │ │ │ ├── id-default-large.jpg │ │ │ ├── id-default-large_scene.jpg │ │ │ ├── id-default-medium.jpg │ │ │ ├── id-default-small.jpg │ │ │ ├── id-default-thickbox.jpg │ │ │ ├── id-default-thumb_scene.jpg │ │ │ ├── id.jpg │ │ │ └── index.php │ │ ├── index.php │ │ └── language.xml │ ├── index.php │ ├── it │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── it-default-category.jpg │ │ │ ├── it-default-home.jpg │ │ │ ├── it-default-large.jpg │ │ │ ├── it-default-large_scene.jpg │ │ │ ├── it-default-medium.jpg │ │ │ ├── it-default-small.jpg │ │ │ ├── it-default-thickbox.jpg │ │ │ ├── it-default-thumb_scene.jpg │ │ │ └── it.jpg │ │ ├── index.php │ │ └── language.xml │ ├── ja │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── ja-default-category.jpg │ │ │ ├── ja-default-home.jpg │ │ │ ├── ja-default-large.jpg │ │ │ ├── ja-default-large_scene.jpg │ │ │ ├── ja-default-medium.jpg │ │ │ ├── ja-default-small.jpg │ │ │ ├── ja-default-thickbox.jpg │ │ │ ├── ja-default-thumb_scene.jpg │ │ │ └── ja.jpg │ │ ├── index.php │ │ └── language.xml │ ├── ko │ │ ├── data │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── ko-default-category.jpg │ │ │ ├── ko-default-home.jpg │ │ │ ├── ko-default-large.jpg │ │ │ ├── ko-default-large_scene.jpg │ │ │ ├── ko-default-medium.jpg │ │ │ ├── ko-default-small.jpg │ │ │ ├── ko-default-thickbox.jpg │ │ │ ├── ko-default-thumb_scene.jpg │ │ │ └── ko.jpg │ │ ├── index.php │ │ └── language.xml │ ├── lt │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── lt-default-category.jpg │ │ │ ├── lt-default-home.jpg │ │ │ ├── lt-default-large.jpg │ │ │ ├── lt-default-large_scene.jpg │ │ │ ├── lt-default-medium.jpg │ │ │ ├── lt-default-small.jpg │ │ │ ├── lt-default-thickbox.jpg │ │ │ ├── lt-default-thumb_scene.jpg │ │ │ └── lt.jpg │ │ ├── index.php │ │ └── language.xml │ ├── lv │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── lv-default-category.jpg │ │ │ ├── lv-default-home.jpg │ │ │ ├── lv-default-large.jpg │ │ │ ├── lv-default-large_scene.jpg │ │ │ ├── lv-default-medium.jpg │ │ │ ├── lv-default-small.jpg │ │ │ ├── lv-default-thickbox.jpg │ │ │ ├── lv-default-thumb_scene.jpg │ │ │ └── lv.jpg │ │ ├── index.php │ │ └── language.xml │ ├── mk │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── mk-default-category.jpg │ │ │ ├── mk-default-home.jpg │ │ │ ├── mk-default-large.jpg │ │ │ ├── mk-default-large_scene.jpg │ │ │ ├── mk-default-medium.jpg │ │ │ ├── mk-default-small.jpg │ │ │ ├── mk-default-thickbox.jpg │ │ │ ├── mk-default-thumb_scene.jpg │ │ │ └── mk.jpg │ │ ├── index.php │ │ └── language.xml │ ├── mx │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── mx-default-category.jpg │ │ │ ├── mx-default-home.jpg │ │ │ ├── mx-default-large.jpg │ │ │ ├── mx-default-large_scene.jpg │ │ │ ├── mx-default-medium.jpg │ │ │ ├── mx-default-small.jpg │ │ │ ├── mx-default-thickbox.jpg │ │ │ ├── mx-default-thumb_scene.jpg │ │ │ └── mx.jpg │ │ ├── index.php │ │ └── language.xml │ ├── nl │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── nl-default-category.jpg │ │ │ ├── nl-default-home.jpg │ │ │ ├── nl-default-large.jpg │ │ │ ├── nl-default-large_scene.jpg │ │ │ ├── nl-default-medium.jpg │ │ │ ├── nl-default-small.jpg │ │ │ ├── nl-default-thickbox.jpg │ │ │ ├── nl-default-thumb_scene.jpg │ │ │ └── nl.jpg │ │ ├── index.php │ │ └── language.xml │ ├── no │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── no-default-category.jpg │ │ │ ├── no-default-home.jpg │ │ │ ├── no-default-large.jpg │ │ │ ├── no-default-large_scene.jpg │ │ │ ├── no-default-medium.jpg │ │ │ ├── no-default-small.jpg │ │ │ ├── no-default-thickbox.jpg │ │ │ ├── no-default-thumb_scene.jpg │ │ │ └── no.jpg │ │ ├── index.php │ │ └── language.xml │ ├── pl │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── flag.jpg │ │ │ ├── index.php │ │ │ ├── pl-default-category.jpg │ │ │ ├── pl-default-home.jpg │ │ │ ├── pl-default-large.jpg │ │ │ ├── pl-default-large_scene.jpg │ │ │ ├── pl-default-medium.jpg │ │ │ ├── pl-default-small.jpg │ │ │ ├── pl-default-thickbox.jpg │ │ │ ├── pl-default-thumb_scene.jpg │ │ │ └── pl.jpg │ │ ├── index.php │ │ └── language.xml │ ├── pt │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── pt-default-category.jpg │ │ │ ├── pt-default-home.jpg │ │ │ ├── pt-default-large.jpg │ │ │ ├── pt-default-large_scene.jpg │ │ │ ├── pt-default-medium.jpg │ │ │ ├── pt-default-small.jpg │ │ │ ├── pt-default-thickbox.jpg │ │ │ ├── pt-default-thumb_scene.jpg │ │ │ └── pt.jpg │ │ ├── index.php │ │ └── language.xml │ ├── qc │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── qc-default-category.jpg │ │ │ ├── qc-default-home.jpg │ │ │ ├── qc-default-large.jpg │ │ │ ├── qc-default-large_scene.jpg │ │ │ ├── qc-default-medium.jpg │ │ │ ├── qc-default-small.jpg │ │ │ ├── qc-default-thickbox.jpg │ │ │ ├── qc-default-thumb_scene.jpg │ │ │ └── qc.jpg │ │ ├── index.php │ │ └── language.xml │ ├── ro │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── ro-default-category.jpg │ │ │ ├── ro-default-home.jpg │ │ │ ├── ro-default-large.jpg │ │ │ ├── ro-default-large_scene.jpg │ │ │ ├── ro-default-medium.jpg │ │ │ ├── ro-default-small.jpg │ │ │ ├── ro-default-thickbox.jpg │ │ │ ├── ro-default-thumb_scene.jpg │ │ │ └── ro.jpg │ │ ├── index.php │ │ └── language.xml │ ├── ru │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── flag.jpg │ │ │ ├── index.php │ │ │ ├── ru-default-category.jpg │ │ │ ├── ru-default-home.jpg │ │ │ ├── ru-default-large.jpg │ │ │ ├── ru-default-large_scene.jpg │ │ │ ├── ru-default-medium.jpg │ │ │ ├── ru-default-small.jpg │ │ │ ├── ru-default-thickbox.jpg │ │ │ ├── ru-default-thumb_scene.jpg │ │ │ └── ru.jpg │ │ ├── index.php │ │ └── language.xml │ ├── si │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── si-default-category.jpg │ │ │ ├── si-default-home.jpg │ │ │ ├── si-default-large.jpg │ │ │ ├── si-default-large_scene.jpg │ │ │ ├── si-default-medium.jpg │ │ │ ├── si-default-small.jpg │ │ │ ├── si-default-thickbox.jpg │ │ │ ├── si-default-thumb_scene.jpg │ │ │ └── si.jpg │ │ ├── index.php │ │ └── language.xml │ ├── sk │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── sk-default-category.jpg │ │ │ ├── sk-default-home.jpg │ │ │ ├── sk-default-large.jpg │ │ │ ├── sk-default-large_scene.jpg │ │ │ ├── sk-default-medium.jpg │ │ │ ├── sk-default-small.jpg │ │ │ ├── sk-default-thickbox.jpg │ │ │ ├── sk-default-thumb_scene.jpg │ │ │ └── sk.jpg │ │ ├── index.php │ │ └── language.xml │ ├── sq │ │ ├── data │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── sq-default-category.jpg │ │ │ ├── sq-default-home.jpg │ │ │ ├── sq-default-large.jpg │ │ │ ├── sq-default-large_scene.jpg │ │ │ ├── sq-default-medium.jpg │ │ │ ├── sq-default-small.jpg │ │ │ ├── sq-default-thickbox.jpg │ │ │ ├── sq-default-thumb_scene.jpg │ │ │ └── sq.jpg │ │ ├── index.php │ │ └── language.xml │ ├── sr │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── sr-default-category.jpg │ │ │ ├── sr-default-home.jpg │ │ │ ├── sr-default-large.jpg │ │ │ ├── sr-default-large_scene.jpg │ │ │ ├── sr-default-medium.jpg │ │ │ ├── sr-default-small.jpg │ │ │ ├── sr-default-thickbox.jpg │ │ │ ├── sr-default-thumb_scene.jpg │ │ │ └── sr.jpg │ │ ├── index.php │ │ └── language.xml │ ├── sv │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── sv-default-category.jpg │ │ │ ├── sv-default-home.jpg │ │ │ ├── sv-default-large.jpg │ │ │ ├── sv-default-large_scene.jpg │ │ │ ├── sv-default-medium.jpg │ │ │ ├── sv-default-small.jpg │ │ │ ├── sv-default-thickbox.jpg │ │ │ ├── sv-default-thumb_scene.jpg │ │ │ └── sv.jpg │ │ ├── index.php │ │ └── language.xml │ ├── tr │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── tr-default-category.jpg │ │ │ ├── tr-default-home.jpg │ │ │ ├── tr-default-large.jpg │ │ │ ├── tr-default-large_scene.jpg │ │ │ ├── tr-default-medium.jpg │ │ │ ├── tr-default-small.jpg │ │ │ ├── tr-default-thickbox.jpg │ │ │ ├── tr-default-thumb_scene.jpg │ │ │ └── tr.jpg │ │ ├── index.php │ │ └── language.xml │ ├── tw │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── tw-default-category.jpg │ │ │ ├── tw-default-home.jpg │ │ │ ├── tw-default-large.jpg │ │ │ ├── tw-default-large_scene.jpg │ │ │ ├── tw-default-medium.jpg │ │ │ ├── tw-default-small.jpg │ │ │ ├── tw-default-thickbox.jpg │ │ │ ├── tw-default-thumb_scene.jpg │ │ │ └── tw.jpg │ │ ├── index.php │ │ └── language.xml │ ├── uk │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── uk-default-category.jpg │ │ │ ├── uk-default-home.jpg │ │ │ ├── uk-default-large.jpg │ │ │ ├── uk-default-large_scene.jpg │ │ │ ├── uk-default-medium.jpg │ │ │ ├── uk-default-small.jpg │ │ │ ├── uk-default-thickbox.jpg │ │ │ ├── uk-default-thumb_scene.jpg │ │ │ └── uk.jpg │ │ ├── index.php │ │ └── language.xml │ ├── vn │ │ ├── data │ │ │ ├── cms.xml │ │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ │ ├── index.php │ │ │ ├── vn-default-category.jpg │ │ │ ├── vn-default-home.jpg │ │ │ ├── vn-default-large.jpg │ │ │ ├── vn-default-large_scene.jpg │ │ │ ├── vn-default-medium.jpg │ │ │ ├── vn-default-small.jpg │ │ │ ├── vn-default-thickbox.jpg │ │ │ ├── vn-default-thumb_scene.jpg │ │ │ └── vn.jpg │ │ ├── index.php │ │ └── language.xml │ └── zh │ │ ├── data │ │ ├── cms.xml │ │ └── index.php │ │ ├── flag.jpg │ │ ├── img │ │ ├── index.php │ │ ├── zh-default-category.jpg │ │ ├── zh-default-home.jpg │ │ ├── zh-default-large.jpg │ │ ├── zh-default-large_scene.jpg │ │ ├── zh-default-medium.jpg │ │ ├── zh-default-small.jpg │ │ ├── zh-default-thickbox.jpg │ │ ├── zh-default-thumb_scene.jpg │ │ └── zh.jpg │ │ ├── index.php │ │ └── language.xml ├── missing_requirement.php ├── sandbox │ ├── .htaccess │ ├── index.php │ └── test.php ├── theme │ ├── img │ │ ├── 01-gd100.png │ │ ├── 01-pt100.png │ │ ├── 01-pt70.png │ │ ├── 02-gd100.png │ │ ├── 02-pt100.png │ │ ├── 02-pt70.png │ │ ├── 03-gd100.png │ │ ├── 03-pt100.png │ │ ├── 03-pt70.png │ │ ├── 04-gd100.png │ │ ├── 04-pt100.png │ │ ├── 04-pt70.png │ │ ├── 05-gd100.png │ │ ├── 05-pt100.png │ │ ├── 05-pt70.png │ │ ├── ajax-loader-small.gif │ │ ├── ajax-loader.gif │ │ ├── bad.gif │ │ ├── bg-body.png │ │ ├── bg-contentTitle.png │ │ ├── bg-ctnr.png │ │ ├── bg-input-text.png │ │ ├── bg-li-headerLinks.png │ │ ├── bg-li-tabs-finished.png │ │ ├── bg-li-tabs-rtl.png │ │ ├── bg-li-tabs.png │ │ ├── bg-phone_block.png │ │ ├── bg-tab.png │ │ ├── bg_blockInfoEnd.png │ │ ├── bg_bt_blockInfoEnd.png │ │ ├── bg_field.png │ │ ├── bg_help.png │ │ ├── bg_input_button.png │ │ ├── bg_li_stepList.png │ │ ├── bg_li_title.png │ │ ├── bg_loaderSpace.png │ │ ├── bg_moduleTable_th.png │ │ ├── boutonpt-disabled.png │ │ ├── boutonpt-on.png │ │ ├── boutonpt-over.png │ │ ├── bt - Copie.png │ │ ├── bt-dsbl - Copie.png │ │ ├── bt-dsbl.png │ │ ├── bt-hover.png │ │ ├── bt.png │ │ ├── bt_off.png │ │ ├── bt_off_hover.png │ │ ├── btn-installeur.png │ │ ├── bullet.png │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── favicon.ico │ │ ├── help.png │ │ ├── ico_help.gif │ │ ├── index.php │ │ ├── logo.png │ │ ├── noflag.jpg │ │ ├── ok.gif │ │ ├── ombrage-bas.png │ │ ├── ombrage-droit.png │ │ ├── phone.png │ │ ├── pict_error.png │ │ ├── pict_h3_infos.png │ │ ├── pict_info.png │ │ ├── pict_warning.gif │ │ ├── print.png │ │ ├── puce.gif │ │ ├── shadow-left.png │ │ ├── visu_boBlock.png │ │ └── visu_foBlock.png │ ├── index.php │ ├── js │ │ ├── configure.js │ │ ├── database.js │ │ ├── index.php │ │ ├── install.js │ │ ├── license.js │ │ ├── process.js │ │ └── welcome.js │ ├── rtl.css │ ├── view.css │ └── views │ │ ├── configure.php │ │ ├── database.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── index.php │ │ ├── license.php │ │ ├── license_content.php │ │ ├── process.php │ │ ├── system.php │ │ └── welcome.php └── upgrade │ ├── classes │ ├── ToolsInstall.php │ └── index.php │ ├── index.php │ ├── php │ ├── add_accounting_tab.php │ ├── add_attribute_position.php │ ├── add_carrier_position.php │ ├── add_column_order_state_deleted_if_not_exists.php │ ├── add_column_orders_reference_if_not_exists.php │ ├── add_default_restrictions_modules_groups.php │ ├── add_feature_position.php │ ├── add_group_attribute_position.php │ ├── add_id_shop_to_shipper_lang_index.php │ ├── add_missing_columns_customer.php │ ├── add_missing_image_key.php │ ├── add_missing_rewrite_value.php │ ├── add_missing_shop_column_pagenotfound.php │ ├── add_module_to_hook.php │ ├── add_new_groups.php │ ├── add_new_status_stock.php │ ├── add_new_tab.php │ ├── add_order_reference_in_order_payment.php │ ├── add_order_state.php │ ├── add_quick_access_tab.php │ ├── add_required_customization_field_flag.php │ ├── add_stock_tab.php │ ├── add_supplier_manufacturer_routes.php │ ├── add_unknown_gender.php │ ├── alter_blocklink.php │ ├── alter_cms_block.php │ ├── alter_ignore_drop_key.php │ ├── alter_productcomments_guest_index.php │ ├── attribute_group_clean_combinations.php │ ├── block_category_1521.php │ ├── blocknewsletter.php │ ├── blocknewsletter1530.php │ ├── category_product_index_unique.php │ ├── check_webservice_account_table.php │ ├── clean_category_product.php │ ├── clean_tabs_15.php │ ├── cms_block.php │ ├── cms_multishop.php │ ├── configuration_double_cleaner.php │ ├── convert_product_price.php │ ├── copy_tab_rights.php │ ├── country_to_timezone.php │ ├── create_multistore.php │ ├── customization_field_multishop_lang.php │ ├── deactivate_custom_modules.php │ ├── delete_hook.php │ ├── delivery_number_set.php │ ├── drop_column_from_product_lang_if_exists.php │ ├── drop_image_type_non_unique_index.php │ ├── drop_module_non_unique_index.php │ ├── ecotax_tax_application_fix.php │ ├── editorial_update.php │ ├── editorial_update_multishop.php │ ├── fix_cms_shop_1520.php │ ├── fix_download_product_feature_active.php │ ├── fix_unique_specific_price.php │ ├── generate_ntree.php │ ├── generate_root_category_for_multishop.php │ ├── generate_tax_rules.php │ ├── generic_add_missing_column.php │ ├── gridextjs_deprecated.php │ ├── group_reduction_column_fix.php │ ├── hook_blocksearch_on_header.php │ ├── id_currency_country_fix.php │ ├── image_shop1510.php │ ├── index.php │ ├── invoice_number_set.php │ ├── latin1_database_to_utf8.php │ ├── migrate_block_info_to_cms_block.php │ ├── migrate_orders.php │ ├── migrate_tabs_15.php │ ├── migrate_tabs_17.php │ ├── migrate_tabs_multi_shop.php │ ├── module_blockwishlist_multishop.php │ ├── module_reinstall_blockmyaccount.php │ ├── module_reinstall_blocksearch.php │ ├── move_crossselling.php │ ├── move_translations_module_file.php │ ├── outstanding_allow_amount1530.php │ ├── p15010_drop_column_id_address_if_exists.php │ ├── p15012_add_missing_columns.php │ ├── p15013_add_missing_columns.php │ ├── p15014_add_missing_columns.php │ ├── p15014_copy_missing_images_tab_from_installer.php │ ├── p15014_upgrade_sekeywords.php │ ├── p15015_blockadvertising_extension.php │ ├── p15016_add_missing_columns.php │ ├── p15017_add_id_shop_to_primary_key.php │ ├── p15018_change_image_types.php │ ├── p1531_redirect_type.php │ ├── p1540_add_missing_columns.php │ ├── p16011_media_server.php │ ├── p16012_pack_rework.php │ ├── p1603_add_attachment_size.php │ ├── p1606module_exceptions.php │ ├── p1607_drop_primary_key_if_exists.php │ ├── ps1600_add_missing_index.php │ ├── ps16012_update_alias.php │ ├── ps1604_update_employee_date.php │ ├── ps1605_change_index.php │ ├── ps1607_language_code_update.php │ ├── ps1700_stores.php │ ├── ps_1700_add_locale.php │ ├── ps_1700_add_payment_preferences_tab.php │ ├── ps_1700_reset_theme.php │ ├── ps_1700_right_management.php │ ├── ps_1730_add_quick_access_evaluation_catalog.php │ ├── ps_1730_migrate_data_from_store_to_store_lang_and_clean_store.php │ ├── ps_1730_move_some_aeuc_configuration_to_core.php │ ├── ps_1740_update_module_tabs.php │ ├── ps_1750_update_module_tabs.php │ ├── ps_1751_update_module_sf_tab.php │ ├── ps_1760_copy_data_from_currency_to_currency_lang.php │ ├── ps_1760_update_configuration.php │ ├── ps_1760_update_tabs.php │ ├── ps_1761_update_currencies.php │ ├── ps_1763_update_tabs.php │ ├── ps_1770_preset_tab_enabled.php │ ├── ps_1770_update_charset.php │ ├── ps_1770_update_order_status_colors.php │ ├── ps_1771_update_customer_note.php │ ├── ps_update_tabs.php │ ├── regenerate_level_depth.php │ ├── remove_duplicate_category_groups.php │ ├── remove_module_from_hook.php │ ├── remove_tab.php │ ├── reorderpositions.php │ ├── select_current_payment_modules.php │ ├── set_discount_category.php │ ├── set_payment_module.php │ ├── set_payment_module_group.php │ ├── set_product_suppliers.php │ ├── set_stock_available.php │ ├── setallgroupsonhomecategory.php │ ├── shop_url.php │ ├── sql_indexes.php │ ├── update_carrier_url.php │ ├── update_customer_default_group.php │ ├── update_feature_detachable_cache.php │ ├── update_for_13version.php │ ├── update_genders_images.php │ ├── update_image_size_in_db.php │ ├── update_mailalerts_add_column_idshop.php │ ├── update_module_blocklayered.php │ ├── update_module_followup.php │ ├── update_module_loyalty.php │ ├── update_module_pagesnotfound.php │ ├── update_module_product_comments.php │ ├── update_modules_multishop.php │ ├── update_modules_sql.php │ ├── update_order_canada.php │ ├── update_order_detail_taxes.php │ ├── update_order_details.php │ ├── update_order_messages.php │ ├── update_products_ecotax_v133.php │ ├── update_stock_mvt_reason.php │ ├── updateproductcomments.php │ ├── updatetabicon_from_11version.php │ ├── upgrade_cms_15.php │ └── upgrade_cms_15_rename.php │ ├── sql │ ├── 0.9.1.2.sql │ ├── 0.9.1.sql │ ├── 0.9.5.1.sql │ ├── 0.9.5.2.sql │ ├── 0.9.6.1.sql │ ├── 0.9.6.2.sql │ ├── 0.9.7.1.sql │ ├── 0.9.7.2.sql │ ├── 0.9.sql │ ├── 1.0.0.1.sql │ ├── 1.0.0.2.sql │ ├── 1.0.0.3.sql │ ├── 1.0.0.4.sql │ ├── 1.0.0.5.sql │ ├── 1.0.0.6.sql │ ├── 1.0.0.7.sql │ ├── 1.0.0.8.sql │ ├── 1.1.0.1.sql │ ├── 1.1.0.2.sql │ ├── 1.1.0.3.sql │ ├── 1.1.0.4.sql │ ├── 1.1.0.5.sql │ ├── 1.2.0.1.sql │ ├── 1.2.0.2.sql │ ├── 1.2.0.3.sql │ ├── 1.2.0.4.sql │ ├── 1.2.0.5.sql │ ├── 1.2.0.6.sql │ ├── 1.2.0.7.sql │ ├── 1.2.0.8.sql │ ├── 1.2.1.0.sql │ ├── 1.2.2.0.sql │ ├── 1.2.3.0.sql │ ├── 1.2.4.0.sql │ ├── 1.2.5.0.sql │ ├── 1.3.0.1.sql │ ├── 1.3.0.10.sql │ ├── 1.3.0.2.sql │ ├── 1.3.0.3.sql │ ├── 1.3.0.4.sql │ ├── 1.3.0.5.sql │ ├── 1.3.0.6.sql │ ├── 1.3.0.7.sql │ ├── 1.3.0.8.sql │ ├── 1.3.0.9.sql │ ├── 1.3.1.1.sql │ ├── 1.3.2.1.sql │ ├── 1.3.2.2.sql │ ├── 1.3.2.3.sql │ ├── 1.3.3.0.sql │ ├── 1.3.4.0.sql │ ├── 1.3.5.0.sql │ ├── 1.3.6.0.sql │ ├── 1.3.7.0.sql │ ├── 1.4.0.1.sql │ ├── 1.4.0.10.sql │ ├── 1.4.0.11.sql │ ├── 1.4.0.12.sql │ ├── 1.4.0.13.sql │ ├── 1.4.0.14.sql │ ├── 1.4.0.15.sql │ ├── 1.4.0.16.sql │ ├── 1.4.0.17.sql │ ├── 1.4.0.2.sql │ ├── 1.4.0.3.sql │ ├── 1.4.0.4.sql │ ├── 1.4.0.5.sql │ ├── 1.4.0.6.sql │ ├── 1.4.0.7.sql │ ├── 1.4.0.8.sql │ ├── 1.4.0.9.sql │ ├── 1.4.1.0.sql │ ├── 1.4.2.0.sql │ ├── 1.4.2.1.sql │ ├── 1.4.2.2.sql │ ├── 1.4.2.3.sql │ ├── 1.4.2.4.sql │ ├── 1.4.2.5.sql │ ├── 1.4.3.0.sql │ ├── 1.4.4.0.sql │ ├── 1.4.4.1.sql │ ├── 1.4.5.0.sql │ ├── 1.4.5.1.sql │ ├── 1.4.6.0.sql │ ├── 1.4.6.1.sql │ ├── 1.4.6.2.sql │ ├── 1.4.7.0.sql │ ├── 1.4.7.1.sql │ ├── 1.4.7.2.sql │ ├── 1.4.8.0.sql │ ├── 1.4.9.0.sql │ ├── 1.5.0.0.sql │ ├── 1.5.0.1.sql │ ├── 1.5.0.10.sql │ ├── 1.5.0.11.sql │ ├── 1.5.0.12.sql │ ├── 1.5.0.13.sql │ ├── 1.5.0.14.sql │ ├── 1.5.0.15.sql │ ├── 1.5.0.16.sql │ ├── 1.5.0.17.sql │ ├── 1.5.0.2.sql │ ├── 1.5.0.3.sql │ ├── 1.5.0.4.sql │ ├── 1.5.0.5.sql │ ├── 1.5.0.6.sql │ ├── 1.5.0.7.sql │ ├── 1.5.0.8.sql │ ├── 1.5.0.9.sql │ ├── 1.5.1.0.sql │ ├── 1.5.2.0.sql │ ├── 1.5.3.0.sql │ ├── 1.5.3.1.sql │ ├── 1.5.4.0.sql │ ├── 1.5.4.1.sql │ ├── 1.5.5.0.sql │ ├── 1.5.6.0.sql │ ├── 1.5.6.1.sql │ ├── 1.5.6.2.sql │ ├── 1.6.0.1.sql │ ├── 1.6.0.10.sql │ ├── 1.6.0.11.sql │ ├── 1.6.0.12.sql │ ├── 1.6.0.2.sql │ ├── 1.6.0.3.sql │ ├── 1.6.0.4.sql │ ├── 1.6.0.5.sql │ ├── 1.6.0.6.sql │ ├── 1.6.0.7.sql │ ├── 1.6.0.8.sql │ ├── 1.6.0.9.sql │ ├── 1.6.1.0.sql │ ├── 1.6.1.1.sql │ ├── 1.6.1.14.sql │ ├── 1.6.1.2.sql │ ├── 1.6.1.5.sql │ ├── 1.6.1.6.sql │ ├── 1.6.1.7.sql │ ├── 1.7.0.0.sql │ ├── 1.7.0.5.sql │ ├── 1.7.1.0.sql │ ├── 1.7.1.1.sql │ ├── 1.7.2.0.sql │ ├── 1.7.2.1.sql │ ├── 1.7.3.0.sql │ ├── 1.7.4.0.sql │ ├── 1.7.4.1.sql │ ├── 1.7.4.2.sql │ ├── 1.7.5.0.sql │ ├── 1.7.5.1.sql │ ├── 1.7.6.0.sql │ ├── 1.7.6.1.sql │ ├── 1.7.6.2.sql │ ├── 1.7.6.3.sql │ ├── 1.7.6.6.sql │ ├── 1.7.7.0.sql │ ├── 1.7.7.1.sql │ ├── 1.7.7.2.sql │ ├── 1.7.7.6.sql │ └── index.php │ └── upgrade.php ├── js ├── .eslintrc.js ├── .htaccess ├── admin-categories-tree.js ├── admin.js ├── admin │ ├── addons.js │ ├── attachments.js │ ├── carrier_wizard.js │ ├── dashboard.js │ ├── dnd.js │ ├── email.js │ ├── import.js │ ├── index.php │ ├── login.js │ ├── modules-position.js │ ├── notifications.js │ ├── price.js │ ├── products.js │ ├── themes.js │ ├── tinymce.inc.js │ └── tinymce_loader.js ├── cropper │ ├── builder.LICENSE │ ├── builder.js │ ├── cropper.LICENSE │ ├── cropper.css │ ├── cropper.js │ ├── dragdrop.LICENSE │ ├── dragdrop.js │ ├── index.php │ ├── loader.js │ ├── prototype.LICENSE │ ├── prototype.js │ ├── scriptaculous.LICENSE │ └── scriptaculous.js ├── date.LICENSE ├── date.js ├── fileuploader.LICENSE ├── fileuploader.js ├── index.php ├── jquery │ ├── LICENSE │ ├── bo-migrate-mute.js │ ├── bo-migrate-mute.min.js │ ├── index.php │ ├── jquery-1.11.0.min.js │ ├── jquery-1.11.0.min.map │ ├── jquery-3.4.1.min.js │ ├── jquery-migrate-1.2.1.min.js │ ├── jquery-migrate-3.1.0.min.js │ ├── jquery.browser-0.1.0.min.js │ ├── jquery.live-polyfill-1.1.2.min.js │ ├── jquery.noConflict.php │ ├── plugins │ │ ├── ajaxfileupload │ │ │ ├── index.php │ │ │ ├── jquery.ajaxfileupload.css │ │ │ └── jquery.ajaxfileupload.js │ │ ├── alerts │ │ │ ├── images │ │ │ │ ├── help.gif │ │ │ │ ├── important.gif │ │ │ │ ├── index.php │ │ │ │ ├── info.gif │ │ │ │ └── title.gif │ │ │ ├── index.php │ │ │ ├── jquery.alerts.css │ │ │ └── jquery.alerts.js │ │ ├── autocomplete │ │ │ ├── index.php │ │ │ ├── jquery.autocomplete.css │ │ │ └── jquery.autocomplete.js │ │ ├── bxslider │ │ │ ├── images │ │ │ │ ├── bx_loader.gif │ │ │ │ └── controls.png │ │ │ ├── index.php │ │ │ ├── jquery.bxslider.css │ │ │ └── jquery.bxslider.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── index.php │ │ │ ├── jquery.chosen.css │ │ │ └── jquery.chosen.js │ │ ├── cluetip │ │ │ ├── index.php │ │ │ ├── jquery.cluetip.css │ │ │ └── jquery.cluetip.js │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_loading@2x.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ ├── fancybox_sprite@2x.png │ │ │ ├── index.php │ │ │ ├── jquery.fancybox.css │ │ │ └── jquery.fancybox.js │ │ ├── footable-sort │ │ │ ├── index.php │ │ │ └── jquery.footable-sort.js │ │ ├── footable │ │ │ ├── index.php │ │ │ ├── jquery.footable.css │ │ │ └── jquery.footable.js │ │ ├── growl │ │ │ ├── index.php │ │ │ ├── jquery.growl.css │ │ │ └── jquery.growl.js │ │ ├── imgareaselect │ │ │ ├── border-anim-h.gif │ │ │ ├── border-anim-v.gif │ │ │ ├── border-h.gif │ │ │ ├── border-v.gif │ │ │ ├── imgareaselect-animated.css │ │ │ ├── imgareaselect-deprecated.css │ │ │ ├── index.php │ │ │ ├── jquery.imgareaselect.css │ │ │ └── jquery.imgareaselect.js │ │ ├── index.php │ │ ├── jgrowl │ │ │ ├── index.php │ │ │ ├── jquery.jgrowl.css │ │ │ └── jquery.jgrowl.js │ │ ├── jquery.autosize.js │ │ ├── jquery.chosen.js │ │ ├── jquery.colorpicker.js │ │ ├── jquery.cooki-plugin.js │ │ ├── jquery.dimensions.js │ │ ├── jquery.dragtable.js │ │ ├── jquery.easing.js │ │ ├── jquery.excanvas.js │ │ ├── jquery.fieldselection.js │ │ ├── jquery.flip.js │ │ ├── jquery.flot.js │ │ ├── jquery.highlight.js │ │ ├── jquery.hoverIntent.js │ │ ├── jquery.idTabs.js │ │ ├── jquery.ifxtransfer.js │ │ ├── jquery.jqminmax.js │ │ ├── jquery.jscroll.js │ │ ├── jquery.pngFix.js │ │ ├── jquery.scrollTo.js │ │ ├── jquery.serialScroll.js │ │ ├── jquery.sortable.js │ │ ├── jquery.tablednd.js │ │ ├── jquery.tablefilter.js │ │ ├── jquery.tagify.js │ │ ├── jquery.typewatch.js │ │ ├── jquery.validate-creditcard.js │ │ ├── jquery.validate.js │ │ ├── jqzoom │ │ │ ├── index.php │ │ │ ├── jquery.jqzoom.css │ │ │ ├── jquery.jqzoom.js │ │ │ └── zoomloader.gif │ │ ├── jstree │ │ │ ├── index.php │ │ │ ├── jquery.jstree.js │ │ │ └── themes │ │ │ │ ├── apple │ │ │ │ ├── bg.jpg │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── index.php │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ ├── classic │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── index.php │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ ├── default-rtl │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dots.gif │ │ │ │ ├── index.php │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ ├── default │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── index.php │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ └── index.php │ │ ├── select2 │ │ │ ├── index.php │ │ │ ├── jquery.select2.js │ │ │ ├── select2.jquery.json │ │ │ ├── select2_locale_ar.js │ │ │ ├── select2_locale_bg.js │ │ │ ├── select2_locale_ca.js │ │ │ ├── select2_locale_cs.js │ │ │ ├── select2_locale_da.js │ │ │ ├── select2_locale_de.js │ │ │ ├── select2_locale_el.js │ │ │ ├── select2_locale_en.js.template │ │ │ ├── select2_locale_es.js │ │ │ ├── select2_locale_et.js │ │ │ ├── select2_locale_eu.js │ │ │ ├── select2_locale_fa.js │ │ │ ├── select2_locale_fi.js │ │ │ ├── select2_locale_fr.js │ │ │ ├── select2_locale_gl.js │ │ │ ├── select2_locale_he.js │ │ │ ├── select2_locale_hr.js │ │ │ ├── select2_locale_hu.js │ │ │ ├── select2_locale_id.js │ │ │ ├── select2_locale_is.js │ │ │ ├── select2_locale_it.js │ │ │ ├── select2_locale_ja.js │ │ │ ├── select2_locale_ka.js │ │ │ ├── select2_locale_ko.js │ │ │ ├── select2_locale_lt.js │ │ │ ├── select2_locale_lv.js │ │ │ ├── select2_locale_mk.js │ │ │ ├── select2_locale_ms.js │ │ │ ├── select2_locale_nl.js │ │ │ ├── select2_locale_no.js │ │ │ ├── select2_locale_pl.js │ │ │ ├── select2_locale_pt-BR.js │ │ │ ├── select2_locale_pt-PT.js │ │ │ ├── select2_locale_ro.js │ │ │ ├── select2_locale_rs.js │ │ │ ├── select2_locale_ru.js │ │ │ ├── select2_locale_sk.js │ │ │ ├── select2_locale_sv.js │ │ │ ├── select2_locale_th.js │ │ │ ├── select2_locale_tr.js │ │ │ ├── select2_locale_uk.js │ │ │ ├── select2_locale_vi.js │ │ │ ├── select2_locale_zh-CN.js │ │ │ └── select2_locale_zh-TW.js │ │ ├── smartWizard │ │ │ ├── index.php │ │ │ ├── jquery.smartWizard.js │ │ │ └── loader.gif │ │ ├── tabpane │ │ │ ├── index.php │ │ │ ├── jquery.tabpane.css │ │ │ └── jquery.tabpane.js │ │ ├── thickbox │ │ │ ├── index.php │ │ │ ├── jquery.thickbox.css │ │ │ └── jquery.thickbox.js │ │ ├── timepicker │ │ │ ├── index.php │ │ │ ├── jquery-ui-timepicker-addon.css │ │ │ └── jquery-ui-timepicker-addon.js │ │ ├── treeview-categories │ │ │ ├── images │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── file.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── index.php │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── treeview-black-line.gif │ │ │ │ ├── treeview-black.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── treeview-famfamfam-line.gif │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ ├── treeview-gray.gif │ │ │ │ ├── treeview-red-line.gif │ │ │ │ └── treeview-red.gif │ │ │ ├── index.php │ │ │ ├── jquery.treeview-categories.async.js │ │ │ ├── jquery.treeview-categories.css │ │ │ ├── jquery.treeview-categories.edit.js │ │ │ ├── jquery.treeview-categories.js │ │ │ └── jquery.treeview-categories.sortable.js │ │ └── validate │ │ │ ├── index.php │ │ │ └── localization │ │ │ ├── index.php │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ └── ui │ │ ├── i18n │ │ ├── index.php │ │ ├── jquery-ui-i18n.js │ │ ├── jquery.ui.datepicker-af.js │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ ├── jquery.ui.datepicker-ar.js │ │ ├── jquery.ui.datepicker-az.js │ │ ├── jquery.ui.datepicker-be.js │ │ ├── jquery.ui.datepicker-bg.js │ │ ├── jquery.ui.datepicker-bs.js │ │ ├── jquery.ui.datepicker-ca.js │ │ ├── jquery.ui.datepicker-cs.js │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ ├── jquery.ui.datepicker-da.js │ │ ├── jquery.ui.datepicker-de.js │ │ ├── jquery.ui.datepicker-el.js │ │ ├── jquery.ui.datepicker-en-AU.js │ │ ├── jquery.ui.datepicker-en-GB.js │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ ├── jquery.ui.datepicker-en.js │ │ ├── jquery.ui.datepicker-eo.js │ │ ├── jquery.ui.datepicker-es.js │ │ ├── jquery.ui.datepicker-et.js │ │ ├── jquery.ui.datepicker-eu.js │ │ ├── jquery.ui.datepicker-fa.js │ │ ├── jquery.ui.datepicker-fi.js │ │ ├── jquery.ui.datepicker-fo.js │ │ ├── jquery.ui.datepicker-fr-CA.js │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ ├── jquery.ui.datepicker-fr.js │ │ ├── jquery.ui.datepicker-gl.js │ │ ├── jquery.ui.datepicker-he.js │ │ ├── jquery.ui.datepicker-hi.js │ │ ├── jquery.ui.datepicker-hr.js │ │ ├── jquery.ui.datepicker-hu.js │ │ ├── jquery.ui.datepicker-hy.js │ │ ├── jquery.ui.datepicker-id.js │ │ ├── jquery.ui.datepicker-is.js │ │ ├── jquery.ui.datepicker-it.js │ │ ├── jquery.ui.datepicker-ja.js │ │ ├── jquery.ui.datepicker-ka.js │ │ ├── jquery.ui.datepicker-kk.js │ │ ├── jquery.ui.datepicker-km.js │ │ ├── jquery.ui.datepicker-ko.js │ │ ├── jquery.ui.datepicker-ky.js │ │ ├── jquery.ui.datepicker-kz.js │ │ ├── jquery.ui.datepicker-lb.js │ │ ├── jquery.ui.datepicker-lt.js │ │ ├── jquery.ui.datepicker-lv.js │ │ ├── jquery.ui.datepicker-mk.js │ │ ├── jquery.ui.datepicker-ml.js │ │ ├── jquery.ui.datepicker-ms.js │ │ ├── jquery.ui.datepicker-nb.js │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ ├── jquery.ui.datepicker-nl.js │ │ ├── jquery.ui.datepicker-nn.js │ │ ├── jquery.ui.datepicker-no.js │ │ ├── jquery.ui.datepicker-pl.js │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ ├── jquery.ui.datepicker-pt.js │ │ ├── jquery.ui.datepicker-rm.js │ │ ├── jquery.ui.datepicker-ro.js │ │ ├── jquery.ui.datepicker-ru.js │ │ ├── jquery.ui.datepicker-sk.js │ │ ├── jquery.ui.datepicker-sl.js │ │ ├── jquery.ui.datepicker-sq.js │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ ├── jquery.ui.datepicker-sr.js │ │ ├── jquery.ui.datepicker-sv.js │ │ ├── jquery.ui.datepicker-ta.js │ │ ├── jquery.ui.datepicker-th.js │ │ ├── jquery.ui.datepicker-tj.js │ │ ├── jquery.ui.datepicker-tr.js │ │ ├── jquery.ui.datepicker-uk.js │ │ ├── jquery.ui.datepicker-vi.js │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ └── jquery.ui.datepicker-zh-TW.js │ │ ├── index.php │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.effects.blind.min.js │ │ ├── jquery.effects.bounce.min.js │ │ ├── jquery.effects.clip.min.js │ │ ├── jquery.effects.core.min.js │ │ ├── jquery.effects.drop.min.js │ │ ├── jquery.effects.explode.min.js │ │ ├── jquery.effects.fade.min.js │ │ ├── jquery.effects.fold.min.js │ │ ├── jquery.effects.highlight.min.js │ │ ├── jquery.effects.pulsate.min.js │ │ ├── jquery.effects.scale.min.js │ │ ├── jquery.effects.shake.min.js │ │ ├── jquery.effects.slide.min.js │ │ ├── jquery.effects.transfer.min.js │ │ ├── jquery.ui.accordion.min.js │ │ ├── jquery.ui.autocomplete.min.js │ │ ├── jquery.ui.button.min.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.datepicker.min.js │ │ ├── jquery.ui.dialog.min.js │ │ ├── jquery.ui.draggable.min.js │ │ ├── jquery.ui.droppable.min.js │ │ ├── jquery.ui.effect-blind.min.js │ │ ├── jquery.ui.effect-bounce.min.js │ │ ├── jquery.ui.effect-clip.min.js │ │ ├── jquery.ui.effect-drop.min.js │ │ ├── jquery.ui.effect-explode.min.js │ │ ├── jquery.ui.effect-fade.min.js │ │ ├── jquery.ui.effect-fold.min.js │ │ ├── jquery.ui.effect-highlight.min.js │ │ ├── jquery.ui.effect-pulsate.min.js │ │ ├── jquery.ui.effect-scale.min.js │ │ ├── jquery.ui.effect-shake.min.js │ │ ├── jquery.ui.effect-slide.min.js │ │ ├── jquery.ui.effect-transfer.min.js │ │ ├── jquery.ui.effect.min.js │ │ ├── jquery.ui.menu.min.js │ │ ├── jquery.ui.mouse.min.js │ │ ├── jquery.ui.position.min.js │ │ ├── jquery.ui.progressbar.min.js │ │ ├── jquery.ui.resizable.min.js │ │ ├── jquery.ui.selectable.min.js │ │ ├── jquery.ui.slider.min.js │ │ ├── jquery.ui.sortable.min.js │ │ ├── jquery.ui.spinner.min.js │ │ ├── jquery.ui.tabs.min.js │ │ ├── jquery.ui.tooltip.min.js │ │ ├── jquery.ui.widget.min.js │ │ └── themes │ │ ├── base │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── index.php │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.menu.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.spinner.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ ├── jquery.ui.tooltip.css │ │ └── minified │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── index.php │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── index.php │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.menu.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.spinner.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ ├── jquery.ui.theme.min.css │ │ │ └── jquery.ui.tooltip.min.css │ │ ├── index.php │ │ └── ui-lightness │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── index.php │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.php │ │ ├── jquery-ui-1.8.16.custom.css │ │ ├── jquery-ui.css │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.menu.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.spinner.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ ├── jquery.ui.tooltip.css │ │ └── minified │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── index.php │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.min.css │ │ ├── jquery.ui.accordion.min.css │ │ ├── jquery.ui.autocomplete.min.css │ │ ├── jquery.ui.button.min.css │ │ ├── jquery.ui.core.min.css │ │ ├── jquery.ui.datepicker.min.css │ │ ├── jquery.ui.dialog.min.css │ │ ├── jquery.ui.menu.min.css │ │ ├── jquery.ui.progressbar.min.css │ │ ├── jquery.ui.resizable.min.css │ │ ├── jquery.ui.selectable.min.css │ │ ├── jquery.ui.slider.min.css │ │ ├── jquery.ui.spinner.min.css │ │ ├── jquery.ui.tabs.min.css │ │ ├── jquery.ui.theme.min.css │ │ └── jquery.ui.tooltip.min.css ├── retro-compat.js.php ├── rtl.LICENSE ├── rtl.js ├── tiny_mce │ ├── index.php │ ├── langs │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr.js │ │ ├── gd.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── id.js │ │ ├── index.php │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lb.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── ml.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── ta.js │ │ ├── tg.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ └── zh.js │ ├── license.txt │ ├── plugins │ │ ├── advlist │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── align │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── color.png │ │ │ ├── colorpic.min.js │ │ │ ├── include.min.js │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── plugin.min.js │ │ │ └── style.min.css │ │ ├── contextmenu │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── index.php │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── example │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── index.php │ │ ├── insertdatetime │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── layer │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── index.php │ │ │ ├── moxieplayer.swf │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── placeholder │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ ├── index.php │ │ │ │ └── visualblocks.css │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── index.php │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── index.php │ │ │ └── plugin.min.js │ ├── skins │ │ ├── index.php │ │ └── prestashop │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── index.php │ │ │ └── skin.min.css │ ├── themes │ │ ├── index.php │ │ └── modern │ │ │ ├── index.php │ │ │ └── theme.min.js │ ├── tiny_mce.js │ └── tinymce.min.js ├── tools.js ├── unicode_hack.LICENSE ├── validate.js └── vendor │ ├── bower.json │ ├── d3.v3.min.js │ ├── index.php │ ├── ladda.LICENSE │ ├── ladda.js │ ├── spin.LICENSE │ └── spin.js ├── localization ├── .htaccess ├── CLDR │ ├── core │ │ ├── ICU-LICENSE │ │ ├── apache-license.txt │ │ ├── common │ │ │ ├── main │ │ │ │ ├── af.xml │ │ │ │ ├── af_NA.xml │ │ │ │ ├── af_ZA.xml │ │ │ │ ├── agq.xml │ │ │ │ ├── agq_CM.xml │ │ │ │ ├── ak.xml │ │ │ │ ├── ak_GH.xml │ │ │ │ ├── am.xml │ │ │ │ ├── am_ET.xml │ │ │ │ ├── ar.xml │ │ │ │ ├── ar_001.xml │ │ │ │ ├── ar_AE.xml │ │ │ │ ├── ar_BH.xml │ │ │ │ ├── ar_DJ.xml │ │ │ │ ├── ar_DZ.xml │ │ │ │ ├── ar_EG.xml │ │ │ │ ├── ar_EH.xml │ │ │ │ ├── ar_ER.xml │ │ │ │ ├── ar_IL.xml │ │ │ │ ├── ar_IQ.xml │ │ │ │ ├── ar_JO.xml │ │ │ │ ├── ar_KM.xml │ │ │ │ ├── ar_KW.xml │ │ │ │ ├── ar_LB.xml │ │ │ │ ├── ar_LY.xml │ │ │ │ ├── ar_MA.xml │ │ │ │ ├── ar_MR.xml │ │ │ │ ├── ar_OM.xml │ │ │ │ ├── ar_PS.xml │ │ │ │ ├── ar_QA.xml │ │ │ │ ├── ar_SA.xml │ │ │ │ ├── ar_SD.xml │ │ │ │ ├── ar_SO.xml │ │ │ │ ├── ar_SS.xml │ │ │ │ ├── ar_SY.xml │ │ │ │ ├── ar_TD.xml │ │ │ │ ├── ar_TN.xml │ │ │ │ ├── ar_YE.xml │ │ │ │ ├── as.xml │ │ │ │ ├── as_IN.xml │ │ │ │ ├── asa.xml │ │ │ │ ├── asa_TZ.xml │ │ │ │ ├── ast.xml │ │ │ │ ├── ast_ES.xml │ │ │ │ ├── az.xml │ │ │ │ ├── az_Cyrl.xml │ │ │ │ ├── az_Cyrl_AZ.xml │ │ │ │ ├── az_Latn.xml │ │ │ │ ├── az_Latn_AZ.xml │ │ │ │ ├── bas.xml │ │ │ │ ├── bas_CM.xml │ │ │ │ ├── be.xml │ │ │ │ ├── be_BY.xml │ │ │ │ ├── bem.xml │ │ │ │ ├── bem_ZM.xml │ │ │ │ ├── bez.xml │ │ │ │ ├── bez_TZ.xml │ │ │ │ ├── bg.xml │ │ │ │ ├── bg_BG.xml │ │ │ │ ├── bm.xml │ │ │ │ ├── bm_ML.xml │ │ │ │ ├── bn.xml │ │ │ │ ├── bn_BD.xml │ │ │ │ ├── bn_IN.xml │ │ │ │ ├── bo.xml │ │ │ │ ├── bo_CN.xml │ │ │ │ ├── bo_IN.xml │ │ │ │ ├── br.xml │ │ │ │ ├── br_FR.xml │ │ │ │ ├── brx.xml │ │ │ │ ├── brx_IN.xml │ │ │ │ ├── bs.xml │ │ │ │ ├── bs_Cyrl.xml │ │ │ │ ├── bs_Cyrl_BA.xml │ │ │ │ ├── bs_Latn.xml │ │ │ │ ├── bs_Latn_BA.xml │ │ │ │ ├── ca.xml │ │ │ │ ├── ca_AD.xml │ │ │ │ ├── ca_ES.xml │ │ │ │ ├── ca_ES_VALENCIA.xml │ │ │ │ ├── ca_FR.xml │ │ │ │ ├── ca_IT.xml │ │ │ │ ├── ccp.xml │ │ │ │ ├── ccp_BD.xml │ │ │ │ ├── ccp_IN.xml │ │ │ │ ├── ce.xml │ │ │ │ ├── ce_RU.xml │ │ │ │ ├── ceb.xml │ │ │ │ ├── ceb_PH.xml │ │ │ │ ├── cgg.xml │ │ │ │ ├── cgg_UG.xml │ │ │ │ ├── chr.xml │ │ │ │ ├── chr_US.xml │ │ │ │ ├── ckb.xml │ │ │ │ ├── ckb_IQ.xml │ │ │ │ ├── ckb_IR.xml │ │ │ │ ├── cs.xml │ │ │ │ ├── cs_CZ.xml │ │ │ │ ├── cu.xml │ │ │ │ ├── cu_RU.xml │ │ │ │ ├── cy.xml │ │ │ │ ├── cy_GB.xml │ │ │ │ ├── da.xml │ │ │ │ ├── da_DK.xml │ │ │ │ ├── da_GL.xml │ │ │ │ ├── dav.xml │ │ │ │ ├── dav_KE.xml │ │ │ │ ├── de.xml │ │ │ │ ├── de_AT.xml │ │ │ │ ├── de_BE.xml │ │ │ │ ├── de_CH.xml │ │ │ │ ├── de_DE.xml │ │ │ │ ├── de_IT.xml │ │ │ │ ├── de_LI.xml │ │ │ │ ├── de_LU.xml │ │ │ │ ├── dje.xml │ │ │ │ ├── dje_NE.xml │ │ │ │ ├── dsb.xml │ │ │ │ ├── dsb_DE.xml │ │ │ │ ├── dua.xml │ │ │ │ ├── dua_CM.xml │ │ │ │ ├── dyo.xml │ │ │ │ ├── dyo_SN.xml │ │ │ │ ├── dz.xml │ │ │ │ ├── dz_BT.xml │ │ │ │ ├── ebu.xml │ │ │ │ ├── ebu_KE.xml │ │ │ │ ├── ee.xml │ │ │ │ ├── ee_GH.xml │ │ │ │ ├── ee_TG.xml │ │ │ │ ├── el.xml │ │ │ │ ├── el_CY.xml │ │ │ │ ├── el_GR.xml │ │ │ │ ├── en.xml │ │ │ │ ├── en_001.xml │ │ │ │ ├── en_150.xml │ │ │ │ ├── en_AE.xml │ │ │ │ ├── en_AG.xml │ │ │ │ ├── en_AI.xml │ │ │ │ ├── en_AS.xml │ │ │ │ ├── en_AT.xml │ │ │ │ ├── en_AU.xml │ │ │ │ ├── en_BB.xml │ │ │ │ ├── en_BE.xml │ │ │ │ ├── en_BI.xml │ │ │ │ ├── en_BM.xml │ │ │ │ ├── en_BS.xml │ │ │ │ ├── en_BW.xml │ │ │ │ ├── en_BZ.xml │ │ │ │ ├── en_CA.xml │ │ │ │ ├── en_CC.xml │ │ │ │ ├── en_CH.xml │ │ │ │ ├── en_CK.xml │ │ │ │ ├── en_CM.xml │ │ │ │ ├── en_CX.xml │ │ │ │ ├── en_CY.xml │ │ │ │ ├── en_DE.xml │ │ │ │ ├── en_DG.xml │ │ │ │ ├── en_DK.xml │ │ │ │ ├── en_DM.xml │ │ │ │ ├── en_ER.xml │ │ │ │ ├── en_FI.xml │ │ │ │ ├── en_FJ.xml │ │ │ │ ├── en_FK.xml │ │ │ │ ├── en_FM.xml │ │ │ │ ├── en_GB.xml │ │ │ │ ├── en_GD.xml │ │ │ │ ├── en_GG.xml │ │ │ │ ├── en_GH.xml │ │ │ │ ├── en_GI.xml │ │ │ │ ├── en_GM.xml │ │ │ │ ├── en_GU.xml │ │ │ │ ├── en_GY.xml │ │ │ │ ├── en_HK.xml │ │ │ │ ├── en_IE.xml │ │ │ │ ├── en_IL.xml │ │ │ │ ├── en_IM.xml │ │ │ │ ├── en_IN.xml │ │ │ │ ├── en_IO.xml │ │ │ │ ├── en_JE.xml │ │ │ │ ├── en_JM.xml │ │ │ │ ├── en_KE.xml │ │ │ │ ├── en_KI.xml │ │ │ │ ├── en_KN.xml │ │ │ │ ├── en_KY.xml │ │ │ │ ├── en_LC.xml │ │ │ │ ├── en_LR.xml │ │ │ │ ├── en_LS.xml │ │ │ │ ├── en_MG.xml │ │ │ │ ├── en_MH.xml │ │ │ │ ├── en_MO.xml │ │ │ │ ├── en_MP.xml │ │ │ │ ├── en_MS.xml │ │ │ │ ├── en_MT.xml │ │ │ │ ├── en_MU.xml │ │ │ │ ├── en_MW.xml │ │ │ │ ├── en_MY.xml │ │ │ │ ├── en_NA.xml │ │ │ │ ├── en_NF.xml │ │ │ │ ├── en_NG.xml │ │ │ │ ├── en_NL.xml │ │ │ │ ├── en_NR.xml │ │ │ │ ├── en_NU.xml │ │ │ │ ├── en_NZ.xml │ │ │ │ ├── en_PG.xml │ │ │ │ ├── en_PH.xml │ │ │ │ ├── en_PK.xml │ │ │ │ ├── en_PN.xml │ │ │ │ ├── en_PR.xml │ │ │ │ ├── en_PW.xml │ │ │ │ ├── en_RW.xml │ │ │ │ ├── en_SB.xml │ │ │ │ ├── en_SC.xml │ │ │ │ ├── en_SD.xml │ │ │ │ ├── en_SE.xml │ │ │ │ ├── en_SG.xml │ │ │ │ ├── en_SH.xml │ │ │ │ ├── en_SI.xml │ │ │ │ ├── en_SL.xml │ │ │ │ ├── en_SS.xml │ │ │ │ ├── en_SX.xml │ │ │ │ ├── en_SZ.xml │ │ │ │ ├── en_TC.xml │ │ │ │ ├── en_TK.xml │ │ │ │ ├── en_TO.xml │ │ │ │ ├── en_TT.xml │ │ │ │ ├── en_TV.xml │ │ │ │ ├── en_TZ.xml │ │ │ │ ├── en_UG.xml │ │ │ │ ├── en_UM.xml │ │ │ │ ├── en_US.xml │ │ │ │ ├── en_US_POSIX.xml │ │ │ │ ├── en_VC.xml │ │ │ │ ├── en_VG.xml │ │ │ │ ├── en_VI.xml │ │ │ │ ├── en_VU.xml │ │ │ │ ├── en_WS.xml │ │ │ │ ├── en_ZA.xml │ │ │ │ ├── en_ZM.xml │ │ │ │ ├── en_ZW.xml │ │ │ │ ├── eo.xml │ │ │ │ ├── eo_001.xml │ │ │ │ ├── es.xml │ │ │ │ ├── es_419.xml │ │ │ │ ├── es_AR.xml │ │ │ │ ├── es_BO.xml │ │ │ │ ├── es_BR.xml │ │ │ │ ├── es_BZ.xml │ │ │ │ ├── es_CL.xml │ │ │ │ ├── es_CO.xml │ │ │ │ ├── es_CR.xml │ │ │ │ ├── es_CU.xml │ │ │ │ ├── es_DO.xml │ │ │ │ ├── es_EA.xml │ │ │ │ ├── es_EC.xml │ │ │ │ ├── es_ES.xml │ │ │ │ ├── es_GQ.xml │ │ │ │ ├── es_GT.xml │ │ │ │ ├── es_HN.xml │ │ │ │ ├── es_IC.xml │ │ │ │ ├── es_MX.xml │ │ │ │ ├── es_NI.xml │ │ │ │ ├── es_PA.xml │ │ │ │ ├── es_PE.xml │ │ │ │ ├── es_PH.xml │ │ │ │ ├── es_PR.xml │ │ │ │ ├── es_PY.xml │ │ │ │ ├── es_SV.xml │ │ │ │ ├── es_US.xml │ │ │ │ ├── es_UY.xml │ │ │ │ ├── es_VE.xml │ │ │ │ ├── et.xml │ │ │ │ ├── et_EE.xml │ │ │ │ ├── eu.xml │ │ │ │ ├── eu_ES.xml │ │ │ │ ├── ewo.xml │ │ │ │ ├── ewo_CM.xml │ │ │ │ ├── fa.xml │ │ │ │ ├── fa_AF.xml │ │ │ │ ├── fa_IR.xml │ │ │ │ ├── ff.xml │ │ │ │ ├── ff_Latn.xml │ │ │ │ ├── ff_Latn_BF.xml │ │ │ │ ├── ff_Latn_CM.xml │ │ │ │ ├── ff_Latn_GH.xml │ │ │ │ ├── ff_Latn_GM.xml │ │ │ │ ├── ff_Latn_GN.xml │ │ │ │ ├── ff_Latn_GW.xml │ │ │ │ ├── ff_Latn_LR.xml │ │ │ │ ├── ff_Latn_MR.xml │ │ │ │ ├── ff_Latn_NE.xml │ │ │ │ ├── ff_Latn_NG.xml │ │ │ │ ├── ff_Latn_SL.xml │ │ │ │ ├── ff_Latn_SN.xml │ │ │ │ ├── fi.xml │ │ │ │ ├── fi_FI.xml │ │ │ │ ├── fil.xml │ │ │ │ ├── fil_PH.xml │ │ │ │ ├── fo.xml │ │ │ │ ├── fo_DK.xml │ │ │ │ ├── fo_FO.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── fr_BE.xml │ │ │ │ ├── fr_BF.xml │ │ │ │ ├── fr_BI.xml │ │ │ │ ├── fr_BJ.xml │ │ │ │ ├── fr_BL.xml │ │ │ │ ├── fr_CA.xml │ │ │ │ ├── fr_CD.xml │ │ │ │ ├── fr_CF.xml │ │ │ │ ├── fr_CG.xml │ │ │ │ ├── fr_CH.xml │ │ │ │ ├── fr_CI.xml │ │ │ │ ├── fr_CM.xml │ │ │ │ ├── fr_DJ.xml │ │ │ │ ├── fr_DZ.xml │ │ │ │ ├── fr_FR.xml │ │ │ │ ├── fr_GA.xml │ │ │ │ ├── fr_GF.xml │ │ │ │ ├── fr_GN.xml │ │ │ │ ├── fr_GP.xml │ │ │ │ ├── fr_GQ.xml │ │ │ │ ├── fr_HT.xml │ │ │ │ ├── fr_KM.xml │ │ │ │ ├── fr_LU.xml │ │ │ │ ├── fr_MA.xml │ │ │ │ ├── fr_MC.xml │ │ │ │ ├── fr_MF.xml │ │ │ │ ├── fr_MG.xml │ │ │ │ ├── fr_ML.xml │ │ │ │ ├── fr_MQ.xml │ │ │ │ ├── fr_MR.xml │ │ │ │ ├── fr_MU.xml │ │ │ │ ├── fr_NC.xml │ │ │ │ ├── fr_NE.xml │ │ │ │ ├── fr_PF.xml │ │ │ │ ├── fr_PM.xml │ │ │ │ ├── fr_RE.xml │ │ │ │ ├── fr_RW.xml │ │ │ │ ├── fr_SC.xml │ │ │ │ ├── fr_SN.xml │ │ │ │ ├── fr_SY.xml │ │ │ │ ├── fr_TD.xml │ │ │ │ ├── fr_TG.xml │ │ │ │ ├── fr_TN.xml │ │ │ │ ├── fr_VU.xml │ │ │ │ ├── fr_WF.xml │ │ │ │ ├── fr_YT.xml │ │ │ │ ├── fur.xml │ │ │ │ ├── fur_IT.xml │ │ │ │ ├── fy.xml │ │ │ │ ├── fy_NL.xml │ │ │ │ ├── ga.xml │ │ │ │ ├── ga_GB.xml │ │ │ │ ├── ga_IE.xml │ │ │ │ ├── gd.xml │ │ │ │ ├── gd_GB.xml │ │ │ │ ├── gl.xml │ │ │ │ ├── gl_ES.xml │ │ │ │ ├── gsw.xml │ │ │ │ ├── gsw_CH.xml │ │ │ │ ├── gsw_FR.xml │ │ │ │ ├── gsw_LI.xml │ │ │ │ ├── gu.xml │ │ │ │ ├── gu_IN.xml │ │ │ │ ├── guz.xml │ │ │ │ ├── guz_KE.xml │ │ │ │ ├── gv.xml │ │ │ │ ├── gv_IM.xml │ │ │ │ ├── ha.xml │ │ │ │ ├── ha_GH.xml │ │ │ │ ├── ha_NE.xml │ │ │ │ ├── ha_NG.xml │ │ │ │ ├── haw.xml │ │ │ │ ├── haw_US.xml │ │ │ │ ├── he.xml │ │ │ │ ├── he_IL.xml │ │ │ │ ├── hi.xml │ │ │ │ ├── hi_IN.xml │ │ │ │ ├── hr.xml │ │ │ │ ├── hr_BA.xml │ │ │ │ ├── hr_HR.xml │ │ │ │ ├── hsb.xml │ │ │ │ ├── hsb_DE.xml │ │ │ │ ├── hu.xml │ │ │ │ ├── hu_HU.xml │ │ │ │ ├── hy.xml │ │ │ │ ├── hy_AM.xml │ │ │ │ ├── ia.xml │ │ │ │ ├── ia_001.xml │ │ │ │ ├── id.xml │ │ │ │ ├── id_ID.xml │ │ │ │ ├── ig.xml │ │ │ │ ├── ig_NG.xml │ │ │ │ ├── ii.xml │ │ │ │ ├── ii_CN.xml │ │ │ │ ├── is.xml │ │ │ │ ├── is_IS.xml │ │ │ │ ├── it.xml │ │ │ │ ├── it_CH.xml │ │ │ │ ├── it_IT.xml │ │ │ │ ├── it_SM.xml │ │ │ │ ├── it_VA.xml │ │ │ │ ├── ja.xml │ │ │ │ ├── ja_JP.xml │ │ │ │ ├── jgo.xml │ │ │ │ ├── jgo_CM.xml │ │ │ │ ├── jmc.xml │ │ │ │ ├── jmc_TZ.xml │ │ │ │ ├── jv.xml │ │ │ │ ├── jv_ID.xml │ │ │ │ ├── ka.xml │ │ │ │ ├── ka_GE.xml │ │ │ │ ├── kab.xml │ │ │ │ ├── kab_DZ.xml │ │ │ │ ├── kam.xml │ │ │ │ ├── kam_KE.xml │ │ │ │ ├── kde.xml │ │ │ │ ├── kde_TZ.xml │ │ │ │ ├── kea.xml │ │ │ │ ├── kea_CV.xml │ │ │ │ ├── khq.xml │ │ │ │ ├── khq_ML.xml │ │ │ │ ├── ki.xml │ │ │ │ ├── ki_KE.xml │ │ │ │ ├── kk.xml │ │ │ │ ├── kk_KZ.xml │ │ │ │ ├── kkj.xml │ │ │ │ ├── kkj_CM.xml │ │ │ │ ├── kl.xml │ │ │ │ ├── kl_GL.xml │ │ │ │ ├── kln.xml │ │ │ │ ├── kln_KE.xml │ │ │ │ ├── km.xml │ │ │ │ ├── km_KH.xml │ │ │ │ ├── kn.xml │ │ │ │ ├── kn_IN.xml │ │ │ │ ├── ko.xml │ │ │ │ ├── ko_KP.xml │ │ │ │ ├── ko_KR.xml │ │ │ │ ├── kok.xml │ │ │ │ ├── kok_IN.xml │ │ │ │ ├── ks.xml │ │ │ │ ├── ks_IN.xml │ │ │ │ ├── ksb.xml │ │ │ │ ├── ksb_TZ.xml │ │ │ │ ├── ksf.xml │ │ │ │ ├── ksf_CM.xml │ │ │ │ ├── ksh.xml │ │ │ │ ├── ksh_DE.xml │ │ │ │ ├── ku.xml │ │ │ │ ├── ku_TR.xml │ │ │ │ ├── kw.xml │ │ │ │ ├── kw_GB.xml │ │ │ │ ├── ky.xml │ │ │ │ ├── ky_KG.xml │ │ │ │ ├── lag.xml │ │ │ │ ├── lag_TZ.xml │ │ │ │ ├── lb.xml │ │ │ │ ├── lb_LU.xml │ │ │ │ ├── lg.xml │ │ │ │ ├── lg_UG.xml │ │ │ │ ├── lkt.xml │ │ │ │ ├── lkt_US.xml │ │ │ │ ├── ln.xml │ │ │ │ ├── ln_AO.xml │ │ │ │ ├── ln_CD.xml │ │ │ │ ├── ln_CF.xml │ │ │ │ ├── ln_CG.xml │ │ │ │ ├── lo.xml │ │ │ │ ├── lo_LA.xml │ │ │ │ ├── lrc.xml │ │ │ │ ├── lrc_IQ.xml │ │ │ │ ├── lrc_IR.xml │ │ │ │ ├── lt.xml │ │ │ │ ├── lt_LT.xml │ │ │ │ ├── lu.xml │ │ │ │ ├── lu_CD.xml │ │ │ │ ├── luo.xml │ │ │ │ ├── luo_KE.xml │ │ │ │ ├── luy.xml │ │ │ │ ├── luy_KE.xml │ │ │ │ ├── lv.xml │ │ │ │ ├── lv_LV.xml │ │ │ │ ├── mas.xml │ │ │ │ ├── mas_KE.xml │ │ │ │ ├── mas_TZ.xml │ │ │ │ ├── mer.xml │ │ │ │ ├── mer_KE.xml │ │ │ │ ├── mfe.xml │ │ │ │ ├── mfe_MU.xml │ │ │ │ ├── mg.xml │ │ │ │ ├── mg_MG.xml │ │ │ │ ├── mgh.xml │ │ │ │ ├── mgh_MZ.xml │ │ │ │ ├── mgo.xml │ │ │ │ ├── mgo_CM.xml │ │ │ │ ├── mi.xml │ │ │ │ ├── mi_NZ.xml │ │ │ │ ├── mk.xml │ │ │ │ ├── mk_MK.xml │ │ │ │ ├── ml.xml │ │ │ │ ├── ml_IN.xml │ │ │ │ ├── mn.xml │ │ │ │ ├── mn_MN.xml │ │ │ │ ├── mr.xml │ │ │ │ ├── mr_IN.xml │ │ │ │ ├── ms.xml │ │ │ │ ├── ms_BN.xml │ │ │ │ ├── ms_MY.xml │ │ │ │ ├── ms_SG.xml │ │ │ │ ├── mt.xml │ │ │ │ ├── mt_MT.xml │ │ │ │ ├── mua.xml │ │ │ │ ├── mua_CM.xml │ │ │ │ ├── my.xml │ │ │ │ ├── my_MM.xml │ │ │ │ ├── mzn.xml │ │ │ │ ├── mzn_IR.xml │ │ │ │ ├── naq.xml │ │ │ │ ├── naq_NA.xml │ │ │ │ ├── nb.xml │ │ │ │ ├── nb_NO.xml │ │ │ │ ├── nb_SJ.xml │ │ │ │ ├── nd.xml │ │ │ │ ├── nd_ZW.xml │ │ │ │ ├── nds.xml │ │ │ │ ├── nds_DE.xml │ │ │ │ ├── nds_NL.xml │ │ │ │ ├── ne.xml │ │ │ │ ├── ne_IN.xml │ │ │ │ ├── ne_NP.xml │ │ │ │ ├── nl.xml │ │ │ │ ├── nl_AW.xml │ │ │ │ ├── nl_BE.xml │ │ │ │ ├── nl_BQ.xml │ │ │ │ ├── nl_CW.xml │ │ │ │ ├── nl_NL.xml │ │ │ │ ├── nl_SR.xml │ │ │ │ ├── nl_SX.xml │ │ │ │ ├── nmg.xml │ │ │ │ ├── nmg_CM.xml │ │ │ │ ├── nn.xml │ │ │ │ ├── nn_NO.xml │ │ │ │ ├── nnh.xml │ │ │ │ ├── nnh_CM.xml │ │ │ │ ├── nus.xml │ │ │ │ ├── nus_SS.xml │ │ │ │ ├── nyn.xml │ │ │ │ ├── nyn_UG.xml │ │ │ │ ├── om.xml │ │ │ │ ├── om_ET.xml │ │ │ │ ├── om_KE.xml │ │ │ │ ├── or.xml │ │ │ │ ├── or_IN.xml │ │ │ │ ├── os.xml │ │ │ │ ├── os_GE.xml │ │ │ │ ├── os_RU.xml │ │ │ │ ├── pa.xml │ │ │ │ ├── pa_Arab.xml │ │ │ │ ├── pa_Arab_PK.xml │ │ │ │ ├── pa_Guru.xml │ │ │ │ ├── pa_Guru_IN.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── pl_PL.xml │ │ │ │ ├── prg.xml │ │ │ │ ├── prg_001.xml │ │ │ │ ├── ps.xml │ │ │ │ ├── ps_AF.xml │ │ │ │ ├── ps_PK.xml │ │ │ │ ├── pt.xml │ │ │ │ ├── pt_AO.xml │ │ │ │ ├── pt_BR.xml │ │ │ │ ├── pt_CH.xml │ │ │ │ ├── pt_CV.xml │ │ │ │ ├── pt_GQ.xml │ │ │ │ ├── pt_GW.xml │ │ │ │ ├── pt_LU.xml │ │ │ │ ├── pt_MO.xml │ │ │ │ ├── pt_MZ.xml │ │ │ │ ├── pt_PT.xml │ │ │ │ ├── pt_ST.xml │ │ │ │ ├── pt_TL.xml │ │ │ │ ├── qu.xml │ │ │ │ ├── qu_BO.xml │ │ │ │ ├── qu_EC.xml │ │ │ │ ├── qu_PE.xml │ │ │ │ ├── rm.xml │ │ │ │ ├── rm_CH.xml │ │ │ │ ├── rn.xml │ │ │ │ ├── rn_BI.xml │ │ │ │ ├── ro.xml │ │ │ │ ├── ro_MD.xml │ │ │ │ ├── ro_RO.xml │ │ │ │ ├── rof.xml │ │ │ │ ├── rof_TZ.xml │ │ │ │ ├── root.xml │ │ │ │ ├── ru.xml │ │ │ │ ├── ru_BY.xml │ │ │ │ ├── ru_KG.xml │ │ │ │ ├── ru_KZ.xml │ │ │ │ ├── ru_MD.xml │ │ │ │ ├── ru_RU.xml │ │ │ │ ├── ru_UA.xml │ │ │ │ ├── rw.xml │ │ │ │ ├── rw_RW.xml │ │ │ │ ├── rwk.xml │ │ │ │ ├── rwk_TZ.xml │ │ │ │ ├── sah.xml │ │ │ │ ├── sah_RU.xml │ │ │ │ ├── saq.xml │ │ │ │ ├── saq_KE.xml │ │ │ │ ├── sbp.xml │ │ │ │ ├── sbp_TZ.xml │ │ │ │ ├── sd.xml │ │ │ │ ├── sd_PK.xml │ │ │ │ ├── se.xml │ │ │ │ ├── se_FI.xml │ │ │ │ ├── se_NO.xml │ │ │ │ ├── se_SE.xml │ │ │ │ ├── seh.xml │ │ │ │ ├── seh_MZ.xml │ │ │ │ ├── ses.xml │ │ │ │ ├── ses_ML.xml │ │ │ │ ├── sg.xml │ │ │ │ ├── sg_CF.xml │ │ │ │ ├── shi.xml │ │ │ │ ├── shi_Latn.xml │ │ │ │ ├── shi_Latn_MA.xml │ │ │ │ ├── shi_Tfng.xml │ │ │ │ ├── shi_Tfng_MA.xml │ │ │ │ ├── si.xml │ │ │ │ ├── si_LK.xml │ │ │ │ ├── sk.xml │ │ │ │ ├── sk_SK.xml │ │ │ │ ├── sl.xml │ │ │ │ ├── sl_SI.xml │ │ │ │ ├── smn.xml │ │ │ │ ├── smn_FI.xml │ │ │ │ ├── sn.xml │ │ │ │ ├── sn_ZW.xml │ │ │ │ ├── so.xml │ │ │ │ ├── so_DJ.xml │ │ │ │ ├── so_ET.xml │ │ │ │ ├── so_KE.xml │ │ │ │ ├── so_SO.xml │ │ │ │ ├── sq.xml │ │ │ │ ├── sq_AL.xml │ │ │ │ ├── sq_MK.xml │ │ │ │ ├── sq_XK.xml │ │ │ │ ├── sr.xml │ │ │ │ ├── sr_Cyrl.xml │ │ │ │ ├── sr_Cyrl_BA.xml │ │ │ │ ├── sr_Cyrl_ME.xml │ │ │ │ ├── sr_Cyrl_RS.xml │ │ │ │ ├── sr_Cyrl_XK.xml │ │ │ │ ├── sr_Latn.xml │ │ │ │ ├── sr_Latn_BA.xml │ │ │ │ ├── sr_Latn_ME.xml │ │ │ │ ├── sr_Latn_RS.xml │ │ │ │ ├── sr_Latn_XK.xml │ │ │ │ ├── sv.xml │ │ │ │ ├── sv_AX.xml │ │ │ │ ├── sv_FI.xml │ │ │ │ ├── sv_SE.xml │ │ │ │ ├── sw.xml │ │ │ │ ├── sw_CD.xml │ │ │ │ ├── sw_KE.xml │ │ │ │ ├── sw_TZ.xml │ │ │ │ ├── sw_UG.xml │ │ │ │ ├── ta.xml │ │ │ │ ├── ta_IN.xml │ │ │ │ ├── ta_LK.xml │ │ │ │ ├── ta_MY.xml │ │ │ │ ├── ta_SG.xml │ │ │ │ ├── te.xml │ │ │ │ ├── te_IN.xml │ │ │ │ ├── teo.xml │ │ │ │ ├── teo_KE.xml │ │ │ │ ├── teo_UG.xml │ │ │ │ ├── tg.xml │ │ │ │ ├── tg_TJ.xml │ │ │ │ ├── th.xml │ │ │ │ ├── th_TH.xml │ │ │ │ ├── ti.xml │ │ │ │ ├── ti_ER.xml │ │ │ │ ├── ti_ET.xml │ │ │ │ ├── tk.xml │ │ │ │ ├── tk_TM.xml │ │ │ │ ├── to.xml │ │ │ │ ├── to_TO.xml │ │ │ │ ├── tr.xml │ │ │ │ ├── tr_CY.xml │ │ │ │ ├── tr_TR.xml │ │ │ │ ├── tt.xml │ │ │ │ ├── tt_RU.xml │ │ │ │ ├── twq.xml │ │ │ │ ├── twq_NE.xml │ │ │ │ ├── tzm.xml │ │ │ │ ├── tzm_MA.xml │ │ │ │ ├── ug.xml │ │ │ │ ├── ug_CN.xml │ │ │ │ ├── uk.xml │ │ │ │ ├── uk_UA.xml │ │ │ │ ├── ur.xml │ │ │ │ ├── ur_IN.xml │ │ │ │ ├── ur_PK.xml │ │ │ │ ├── uz.xml │ │ │ │ ├── uz_Arab.xml │ │ │ │ ├── uz_Arab_AF.xml │ │ │ │ ├── uz_Cyrl.xml │ │ │ │ ├── uz_Cyrl_UZ.xml │ │ │ │ ├── uz_Latn.xml │ │ │ │ ├── uz_Latn_UZ.xml │ │ │ │ ├── vai.xml │ │ │ │ ├── vai_Latn.xml │ │ │ │ ├── vai_Latn_LR.xml │ │ │ │ ├── vai_Vaii.xml │ │ │ │ ├── vai_Vaii_LR.xml │ │ │ │ ├── vi.xml │ │ │ │ ├── vi_VN.xml │ │ │ │ ├── vo.xml │ │ │ │ ├── vo_001.xml │ │ │ │ ├── vun.xml │ │ │ │ ├── vun_TZ.xml │ │ │ │ ├── wae.xml │ │ │ │ ├── wae_CH.xml │ │ │ │ ├── wo.xml │ │ │ │ ├── wo_SN.xml │ │ │ │ ├── xh.xml │ │ │ │ ├── xh_ZA.xml │ │ │ │ ├── xog.xml │ │ │ │ ├── xog_UG.xml │ │ │ │ ├── yav.xml │ │ │ │ ├── yav_CM.xml │ │ │ │ ├── yi.xml │ │ │ │ ├── yi_001.xml │ │ │ │ ├── yo.xml │ │ │ │ ├── yo_BJ.xml │ │ │ │ ├── yo_NG.xml │ │ │ │ ├── yue.xml │ │ │ │ ├── yue_Hans.xml │ │ │ │ ├── yue_Hans_CN.xml │ │ │ │ ├── yue_Hant.xml │ │ │ │ ├── yue_Hant_HK.xml │ │ │ │ ├── zgh.xml │ │ │ │ ├── zgh_MA.xml │ │ │ │ ├── zh.xml │ │ │ │ ├── zh_Hans.xml │ │ │ │ ├── zh_Hans_CN.xml │ │ │ │ ├── zh_Hans_HK.xml │ │ │ │ ├── zh_Hans_MO.xml │ │ │ │ ├── zh_Hans_SG.xml │ │ │ │ ├── zh_Hant.xml │ │ │ │ ├── zh_Hant_HK.xml │ │ │ │ ├── zh_Hant_MO.xml │ │ │ │ ├── zh_Hant_TW.xml │ │ │ │ ├── zu.xml │ │ │ │ └── zu_ZA.xml │ │ │ └── supplemental │ │ │ │ ├── numberingSystems.xml │ │ │ │ └── supplementalData.xml │ │ └── unicode-license.txt │ └── readme.md ├── ae.xml ├── ar.xml ├── at.xml ├── au.xml ├── az.xml ├── ba.xml ├── bd.xml ├── be.xml ├── bg.xml ├── bo.xml ├── br.xml ├── by.xml ├── ca.xml ├── ch.xml ├── ci.xml ├── cl.xml ├── cm.xml ├── cn.xml ├── co.xml ├── cr.xml ├── cy.xml ├── cz.xml ├── de.xml ├── default.xml ├── dk.xml ├── do.xml ├── dz.xml ├── ec.xml ├── ee.xml ├── eg.xml ├── es.xml ├── fi.xml ├── fj.xml ├── fr.xml ├── gb.xml ├── ge.xml ├── gr.xml ├── gt.xml ├── gy.xml ├── hk.xml ├── hr.xml ├── hu.xml ├── id.xml ├── ie.xml ├── il.xml ├── in.xml ├── index.php ├── ir.xml ├── it.xml ├── je.xml ├── jp.xml ├── ke.xml ├── kr.xml ├── li.xml ├── lt.xml ├── lu.xml ├── lv.xml ├── ma.xml ├── md.xml ├── mg.xml ├── mt.xml ├── mx.xml ├── my.xml ├── ng.xml ├── nl.xml ├── no.xml ├── nz.xml ├── pa.xml ├── pe.xml ├── ph.xml ├── pk.xml ├── pl.xml ├── pt.xml ├── py.xml ├── ro.xml ├── rs.xml ├── ru.xml ├── sa.xml ├── se.xml ├── sg.xml ├── si.xml ├── sk.xml ├── sn.xml ├── sv.xml ├── th.xml ├── tn.xml ├── tr.xml ├── tw.xml ├── tz.xml ├── ua.xml ├── us.xml ├── uy.xml ├── ve.xml ├── vn.xml └── za.xml ├── mails ├── .htaccess ├── _partials │ ├── download_product_virtual_products.tpl │ ├── download_product_virtual_products.txt │ ├── order_conf_cart_rules.tpl │ ├── order_conf_cart_rules.txt │ ├── order_conf_product_list.tpl │ └── order_conf_product_list.txt ├── index.php └── themes │ ├── .htaccess │ ├── classic │ ├── Readme.md │ ├── assets │ │ ├── email.css │ │ └── rtl.css │ ├── components │ │ ├── footer.html.twig │ │ ├── header.html.twig │ │ ├── layout.html.twig │ │ └── order_layout.html.twig │ ├── core │ │ ├── account.html.twig │ │ ├── backoffice_order.html.twig │ │ ├── bankwire.html.twig │ │ ├── cheque.html.twig │ │ ├── contact.html.twig │ │ ├── contact_form.html.twig │ │ ├── credit_slip.html.twig │ │ ├── download_product.html.twig │ │ ├── employee_password.html.twig │ │ ├── forward_msg.html.twig │ │ ├── guest_to_customer.html.twig │ │ ├── import.html.twig │ │ ├── in_transit.html.twig │ │ ├── log_alert.html.twig │ │ ├── newsletter.html.twig │ │ ├── order_canceled.html.twig │ │ ├── order_changed.html.twig │ │ ├── order_conf.html.twig │ │ ├── order_customer_comment.html.twig │ │ ├── order_merchant_comment.html.twig │ │ ├── order_return_state.html.twig │ │ ├── outofstock.html.twig │ │ ├── password.html.twig │ │ ├── password_query.html.twig │ │ ├── payment.html.twig │ │ ├── payment_error.html.twig │ │ ├── preparation.html.twig │ │ ├── productoutofstock.html.twig │ │ ├── refund.html.twig │ │ ├── reply_msg.html.twig │ │ ├── shipped.html.twig │ │ ├── test.html.twig │ │ ├── voucher.html.twig │ │ └── voucher_new.html.twig │ └── modules │ │ ├── followup │ │ ├── followup_1.html.twig │ │ ├── followup_2.html.twig │ │ ├── followup_3.html.twig │ │ └── followup_4.html.twig │ │ ├── ps_emailalerts │ │ ├── customer_qty.html.twig │ │ ├── new_order.html.twig │ │ ├── order_changed.html.twig │ │ ├── productcoverage.html.twig │ │ ├── productoutofstock.html.twig │ │ └── return_slip.html.twig │ │ ├── ps_emailsubscription │ │ ├── newsletter_conf.html.twig │ │ ├── newsletter_verif.html.twig │ │ └── newsletter_voucher.html.twig │ │ └── referralprogram │ │ ├── referralprogram-congratulations.html.twig │ │ ├── referralprogram-invitation.html.twig │ │ └── referralprogram-voucher.html.twig │ ├── index.php │ └── modern │ ├── README.md │ ├── assets │ ├── baseline-credit_card-24px.png │ ├── baseline-local_shipping-24px.png │ └── baseline-location_on-24px.png │ ├── components │ ├── footer.html.twig │ ├── header.html.twig │ ├── layout.html.twig │ └── order_layout.html.twig │ ├── core │ ├── account.html.twig │ ├── backoffice_order.html.twig │ ├── bankwire.html.twig │ ├── cheque.html.twig │ ├── contact.html.twig │ ├── contact_form.html.twig │ ├── credit_slip.html.twig │ ├── download_product.html.twig │ ├── employee_password.html.twig │ ├── forward_msg.html.twig │ ├── guest_to_customer.html.twig │ ├── import.html.twig │ ├── in_transit.html.twig │ ├── log_alert.html.twig │ ├── newsletter.html.twig │ ├── order_canceled.html.twig │ ├── order_changed.html.twig │ ├── order_conf.html.twig │ ├── order_customer_comment.html.twig │ ├── order_merchant_comment.html.twig │ ├── order_return_state.html.twig │ ├── outofstock.html.twig │ ├── password.html.twig │ ├── password_query.html.twig │ ├── payment.html.twig │ ├── payment_error.html.twig │ ├── preparation.html.twig │ ├── productoutofstock.html.twig │ ├── refund.html.twig │ ├── reply_msg.html.twig │ ├── shipped.html.twig │ ├── test.html.twig │ ├── voucher.html.twig │ └── voucher_new.html.twig │ └── modules │ ├── followup │ ├── followup_1.html.twig │ ├── followup_2.html.twig │ ├── followup_3.html.twig │ └── followup_4.html.twig │ ├── ps_emailalerts │ ├── customer_qty.html.twig │ ├── new_order.html.twig │ ├── order_changed.html.twig │ ├── productcoverage.html.twig │ ├── productoutofstock.html.twig │ └── return_slip.html.twig │ ├── ps_emailsubscription │ ├── newsletter_conf.html.twig │ ├── newsletter_verif.html.twig │ └── newsletter_voucher.html.twig │ └── referralprogram │ ├── referralprogram-congratulations.html.twig │ ├── referralprogram-invitation.html.twig │ └── referralprogram-voucher.html.twig ├── modules ├── .htaccess └── index.php ├── override ├── .htaccess ├── classes │ ├── Smarty │ │ └── index.php │ ├── assets │ │ └── index.php │ ├── cache │ │ └── index.php │ ├── checkout │ │ └── index.php │ ├── container │ │ └── index.php │ ├── controller │ │ └── index.php │ ├── db │ │ └── index.php │ ├── exception │ │ └── index.php │ ├── form │ │ └── index.php │ ├── helper │ │ └── index.php │ ├── index.php │ ├── lang │ │ └── index.php │ ├── log │ │ └── index.php │ ├── module │ │ └── index.php │ ├── order │ │ └── index.php │ ├── pdf │ │ └── index.php │ ├── range │ │ └── index.php │ ├── shop │ │ └── index.php │ ├── stock │ │ └── index.php │ ├── tax │ │ └── index.php │ ├── tree │ │ └── index.php │ └── webservice │ │ └── index.php ├── controllers │ ├── admin │ │ ├── index.php │ │ └── templates │ │ │ └── index.php │ ├── front │ │ └── index.php │ └── index.php ├── index.php └── modules │ └── index.php ├── package.json ├── pdf ├── .htaccess ├── delivery-slip.addresses-tab.tpl ├── delivery-slip.payment-tab.tpl ├── delivery-slip.product-tab.tpl ├── delivery-slip.style-tab.tpl ├── delivery-slip.summary-tab.tpl ├── delivery-slip.tpl ├── footer.tpl ├── header.tpl ├── index.php ├── invoice-b2b.tpl ├── invoice.addresses-tab.tpl ├── invoice.note-tab.tpl ├── invoice.payment-tab.tpl ├── invoice.product-tab.tpl ├── invoice.shipping-tab.tpl ├── invoice.style-tab.tpl ├── invoice.summary-tab.tpl ├── invoice.tax-tab.tpl ├── invoice.total-tab.tpl ├── invoice.tpl ├── order-return.addresses-tab.tpl ├── order-return.conditions-tab.tpl ├── order-return.product-tab.tpl ├── order-return.summary-tab.tpl ├── order-return.tpl ├── order-slip.payment-tab.tpl ├── order-slip.product-tab.tpl ├── order-slip.summary-tab.tpl ├── order-slip.total-tab.tpl ├── order-slip.tpl ├── pagination.tpl ├── supply-order-footer.tpl ├── supply-order-header.tpl ├── supply-order.addresses-tab.tpl ├── supply-order.product-tab.tpl ├── supply-order.tax-tab.tpl ├── supply-order.total-tab.tpl └── supply-order.tpl ├── src ├── .htaccess ├── Adapter │ ├── Addons │ │ └── AddonsDataProvider.php │ ├── Address │ │ ├── AbstractAddressHandler.php │ │ ├── AbstractCustomerAddressHandler.php │ │ ├── AbstractManufacturerAddressHandler.php │ │ ├── AddressFormatter.php │ │ ├── CommandHandler │ │ │ ├── AddCustomerAddressHandler.php │ │ │ ├── AddManufacturerAddressHandler.php │ │ │ ├── BulkDeleteAddressHandler.php │ │ │ ├── DeleteAddressHandler.php │ │ │ ├── EditCartAddressHandler.php │ │ │ ├── EditCustomerAddressHandler.php │ │ │ ├── EditManufacturerAddressHandler.php │ │ │ ├── EditOrderAddressHandler.php │ │ │ └── SetRequiredFieldsForAddressHandler.php │ │ └── QueryHandler │ │ │ ├── GetCustomerAddressForEditingHandler.php │ │ │ ├── GetManufacturerAddressForEditingHandler.php │ │ │ └── GetRequiredFieldsForAddressHandler.php │ ├── AddressFactory.php │ ├── Admin │ │ ├── AbstractAdminQueryBuilder.php │ │ ├── LegacyBlockHelperSubscriber.php │ │ ├── NotificationsConfiguration.php │ │ ├── PagePreference.php │ │ └── UrlGenerator.php │ ├── Assets │ │ └── AssetUrlGeneratorTrait.php │ ├── Attachment │ │ ├── AbstractAttachmentHandler.php │ │ ├── CommandHandler │ │ │ ├── AddAttachmentHandler.php │ │ │ ├── BulkDeleteAttachmentsHandler.php │ │ │ ├── DeleteAttachmentHandler.php │ │ │ └── EditAttachmentHandler.php │ │ └── QueryHandler │ │ │ ├── GetAttachmentForEditingHandler.php │ │ │ └── GetAttachmentHandler.php │ ├── Attribute │ │ ├── AbstractAttributeHandler.php │ │ ├── AdminAttributeGeneratorControllerWrapper.php │ │ ├── AttributeDataProvider.php │ │ └── CommandHandler │ │ │ ├── BulkDeleteAttributeHandler.php │ │ │ └── DeleteAttributeHandler.php │ ├── AttributeGroup │ │ ├── AbstractAttributeGroupHandler.php │ │ ├── AttributeGroupViewDataProvider.php │ │ └── CommandHandler │ │ │ ├── BulkDeleteAttributeGroupHandler.php │ │ │ └── DeleteAttributeGroupHandler.php │ ├── Backup │ │ ├── Backup.php │ │ ├── BackupRemover.php │ │ ├── BackupRepository.php │ │ └── DatabaseBackupCreator.php │ ├── BestSales │ │ └── BestSalesProductSearchProvider.php │ ├── CMS │ │ ├── CMSDataProvider.php │ │ ├── Page │ │ │ ├── CommandHandler │ │ │ │ ├── AbstractCmsPageHandler.php │ │ │ │ ├── AddCmsPageHandler.php │ │ │ │ ├── BulkDeleteCmsPageHandler.php │ │ │ │ ├── BulkDisableCmsPageHandler.php │ │ │ │ ├── BulkEnableCmsPageHandler.php │ │ │ │ ├── DeleteCmsPageHandler.php │ │ │ │ ├── EditCmsPageHandler.php │ │ │ │ └── ToggleCmsPageStatusHandler.php │ │ │ └── QueryHandler │ │ │ │ ├── GetCmsCategoryIdForRedirectionHandler.php │ │ │ │ └── GetCmsPageForEditingHandler.php │ │ └── PageCategory │ │ │ ├── CategoriesProvider.php │ │ │ ├── CommandHandler │ │ │ ├── AbstractCmsPageCategoryHandler.php │ │ │ ├── AddCmsPageCategoryHandler.php │ │ │ ├── BulkDeleteCmsPageCategoryHandler.php │ │ │ ├── BulkDisableCmsPageCategoryHandler.php │ │ │ ├── BulkEnableCmsPageCategoryHandler.php │ │ │ ├── DeleteCmsPageCategoryHandler.php │ │ │ ├── EditCmsPageCategoryHandler.php │ │ │ └── ToggleCmsPageCategoryStatusHandler.php │ │ │ └── QueryHandler │ │ │ ├── GetCmsPageCategoriesForBreadcrumbHandler.php │ │ │ ├── GetCmsPageCategoryForEditingHandler.php │ │ │ ├── GetCmsPageCategoryNameForListingHandler.php │ │ │ └── GetCmsPageParentCategoryIdForRedirectionHandler.php │ ├── Cache │ │ ├── CacheAdapter.php │ │ ├── CacheClearer.php │ │ ├── CachingConfiguration.php │ │ ├── Clearer │ │ │ ├── ClassIndexCacheClearer.php │ │ │ ├── MediaCacheClearer.php │ │ │ ├── SmartyCacheClearer.php │ │ │ ├── SymfonyCacheClearer.php │ │ │ └── XmlCacheClearer.php │ │ ├── CombineCompressCacheConfiguration.php │ │ └── MemcacheServerManager.php │ ├── CacheManager.php │ ├── Carrier │ │ ├── CarrierDataProvider.php │ │ ├── CarrierOptionsConfiguration.php │ │ └── HandlingConfiguration.php │ ├── Cart │ │ ├── AbstractCartHandler.php │ │ ├── CartPresenter.php │ │ ├── CommandHandler │ │ │ ├── AddCartRuleToCartHandler.php │ │ │ ├── AddCustomizationHandler.php │ │ │ ├── AddProductToCartHandler.php │ │ │ ├── CreateEmptyCustomerCartHandler.php │ │ │ ├── RemoveCartRuleFromCartHandler.php │ │ │ ├── RemoveProductFromCartHandler.php │ │ │ ├── SendCartToCustomerHandler.php │ │ │ ├── UpdateCartAddressesHandler.php │ │ │ ├── UpdateCartCarrierHandler.php │ │ │ ├── UpdateCartCurrencyHandler.php │ │ │ ├── UpdateCartDeliverySettingsHandler.php │ │ │ ├── UpdateCartLanguageHandler.php │ │ │ ├── UpdateProductPriceInCartHandler.php │ │ │ └── UpdateProductQuantityInCartHandler.php │ │ ├── Comparator │ │ │ ├── CartProductUpdate.php │ │ │ └── CartProductsComparator.php │ │ └── QueryHandler │ │ │ ├── GetCartForOrderCreationHandler.php │ │ │ ├── GetCartForViewingHandler.php │ │ │ └── GetLastEmptyCustomerCartHandler.php │ ├── CartRule │ │ ├── CommandHandler │ │ │ └── AddCartRuleHandler.php │ │ ├── LegacyDiscountApplicationType.php │ │ └── QueryHandler │ │ │ └── SearchCartRulesHandler.php │ ├── CatalogPriceRule │ │ ├── AbstractCatalogPriceRuleHandler.php │ │ ├── CommandHandler │ │ │ ├── AddCatalogPriceRuleHandler.php │ │ │ ├── BulkDeleteCatalogPriceRuleHandler.php │ │ │ ├── DeleteCatalogPriceRuleHandler.php │ │ │ └── EditCatalogPriceRuleHandler.php │ │ └── QueryHandler │ │ │ └── GetCatalogPriceRuleForEditingHandler.php │ ├── Category │ │ ├── AdminCategoryControllerWrapper.php │ │ ├── CategoryDataProvider.php │ │ ├── CategoryProductSearchProvider.php │ │ ├── CategoryViewDataProvider.php │ │ ├── CommandHandler │ │ │ ├── AbstractDeleteCategoryHandler.php │ │ │ ├── AddCategoryHandler.php │ │ │ ├── AddRootCategoryHandler.php │ │ │ ├── BulkDeleteCategoriesHandler.php │ │ │ ├── BulkUpdateCategoriesStatusHandler.php │ │ │ ├── DeleteCategoryCoverImageHandler.php │ │ │ ├── DeleteCategoryHandler.php │ │ │ ├── DeleteCategoryMenuThumbnailImageHandler.php │ │ │ ├── EditCategoryHandler.php │ │ │ ├── EditRootCategoryHandler.php │ │ │ ├── SetCategoryIsEnabledHandler.php │ │ │ └── UpdateCategoryPositionHandler.php │ │ └── QueryHandler │ │ │ ├── GetCategoryForEditingHandler.php │ │ │ └── GetCategoryIsEnabledHandler.php │ ├── ClassLang.php │ ├── CombinationDataProvider.php │ ├── Configuration.php │ ├── Configuration │ │ ├── CommandHandler │ │ │ └── SwitchDebugModeHandler.php │ │ ├── KpiConfiguration.php │ │ ├── LogsConfiguration.php │ │ └── PhpParameters.php │ ├── Contact │ │ ├── CommandHandler │ │ │ ├── AddContactHandler.php │ │ │ └── EditContactHandler.php │ │ └── QueryHandler │ │ │ └── GetContactForEditingHandler.php │ ├── Container │ │ ├── ContainerBuilderExtensionInterface.php │ │ ├── ContainerParametersExtension.php │ │ ├── DoctrineBuilderExtension.php │ │ ├── LegacyContainer.php │ │ ├── LegacyContainerBuilder.php │ │ └── LegacyContainerInterface.php │ ├── ContainerBuilder.php │ ├── ContainerFinder.php │ ├── ContextStateManager.php │ ├── Converter │ │ └── ExcelToCsvFileConverter.php │ ├── CoreException.php │ ├── Country │ │ ├── CountryDataProvider.php │ │ ├── CountryRequiredFieldsProvider.php │ │ ├── CountryZipCodeRequirementsProvider.php │ │ └── QueryHandler │ │ │ └── GetCountryRequiredFieldsHandler.php │ ├── CreditSlip │ │ ├── CreditSlipTemplateTypeProvider.php │ │ └── QueryHandler │ │ │ └── GetCreditSlipIdsByDateRangeHandler.php │ ├── Currency │ │ ├── CommandHandler │ │ │ ├── AbstractCurrencyHandler.php │ │ │ ├── AddOfficialCurrencyHandler.php │ │ │ ├── AddUnofficialCurrencyHandler.php │ │ │ ├── CurrencyCommandValidator.php │ │ │ ├── DeleteCurrencyHandler.php │ │ │ ├── EditOfficialCurrencyHandler.php │ │ │ ├── EditUnofficialCurrencyHandler.php │ │ │ ├── RefreshExchangeRatesHandler.php │ │ │ ├── ToggleCurrencyStatusHandler.php │ │ │ └── ToggleExchangeRateAutomatizationHandler.php │ │ ├── CurrencyDataProvider.php │ │ ├── CurrencyManager.php │ │ └── QueryHandler │ │ │ ├── GetCurrencyExchangeRateHandler.php │ │ │ ├── GetCurrencyForEditingHandler.php │ │ │ └── GetReferenceCurrencyHandler.php │ ├── Customer │ │ ├── CommandHandler │ │ │ ├── AbstractCustomerHandler.php │ │ │ ├── AddCustomerHandler.php │ │ │ ├── BulkDeleteCustomerHandler.php │ │ │ ├── BulkDisableCustomerHandler.php │ │ │ ├── BulkEnableCustomerHandler.php │ │ │ ├── DeleteCustomerHandler.php │ │ │ ├── EditCustomerHandler.php │ │ │ ├── SetPrivateNoteAboutCustomerHandler.php │ │ │ ├── SetRequiredFieldsForCustomerHandler.php │ │ │ └── TransformGuestToCustomerHandler.php │ │ ├── CustomerConfiguration.php │ │ ├── CustomerDataProvider.php │ │ ├── CustomerDataSource.php │ │ └── QueryHandler │ │ │ ├── GetCustomerCartsHandler.php │ │ │ ├── GetCustomerForAddressCreationHandler.php │ │ │ ├── GetCustomerForEditingHandler.php │ │ │ ├── GetCustomerForViewingHandler.php │ │ │ ├── GetCustomerOrdersHandler.php │ │ │ ├── GetRequiredFieldsForCustomerHandler.php │ │ │ └── SearchCustomersHandler.php │ ├── CustomerService │ │ ├── CommandHandler │ │ │ ├── AddOrderCustomerMessageHandler.php │ │ │ ├── ForwardCustomerThreadHandler.php │ │ │ └── ReplyToCustomerThreadHandler.php │ │ └── QueryHandler │ │ │ └── GetCustomerThreadForViewingHandler.php │ ├── Database.php │ ├── Debug │ │ ├── DebugMode.php │ │ └── DebugModeConfiguration.php │ ├── Domain │ │ └── AbstractObjectModelHandler.php │ ├── Email │ │ ├── EmailConfigurationTester.php │ │ └── EmailLogEraser.php │ ├── Employee │ │ ├── AvatarProvider.php │ │ ├── ContextEmployeeProvider.php │ │ ├── EmployeeDataProvider.php │ │ ├── EmployeeFormAccessChecker.php │ │ ├── FormLanguageChanger.php │ │ └── NavigationMenuToggler.php │ ├── EntityMapper.php │ ├── EntityMetaDataRetriever.php │ ├── Environment.php │ ├── Feature │ │ ├── CombinationFeature.php │ │ ├── CommandHandler │ │ │ ├── AddFeatureHandler.php │ │ │ └── EditFeatureHandler.php │ │ ├── FeatureDataProvider.php │ │ ├── FeatureFeature.php │ │ ├── GroupFeature.php │ │ ├── MultistoreFeature.php │ │ └── QueryHandler │ │ │ └── GetFeatureForEditingHandler.php │ ├── File │ │ ├── HtaccessFileGenerator.php │ │ ├── RobotsTextFileGenerator.php │ │ └── Uploader │ │ │ └── AttachmentFileUploader.php │ ├── Form │ │ └── ChoiceProvider │ │ │ ├── CarrierForOrderChoiceProvider.php │ │ │ ├── CategoryTreeChoiceProvider.php │ │ │ ├── CountryStateByIdChoiceProvider.php │ │ │ ├── CurrencySymbolByIdChoiceProvider.php │ │ │ ├── EmployeeNameByIdChoiceProvider.php │ │ │ ├── GenderByIdChoiceProvider.php │ │ │ ├── GroupByIdChoiceProvider.php │ │ │ ├── InstalledPaymentModulesChoiceProvider.php │ │ │ ├── ManufacturerNameByIdChoiceProvider.php │ │ │ ├── OrderCountriesChoiceProvider.php │ │ │ ├── OrderInvoiceByIdChoiceProvider.php │ │ │ ├── ProfileByIdChoiceProvider.php │ │ │ ├── ResourcesChoiceProvider.php │ │ │ ├── RiskByIdChoiceProvider.php │ │ │ ├── ShopNameByIdChoiceProvider.php │ │ │ ├── ShopTreeChoiceProvider.php │ │ │ └── TaxRuleGroupChoiceProvider.php │ ├── GeneralConfiguration.php │ ├── Geolocation │ │ ├── GeolocationByIpAddressConfiguration.php │ │ ├── GeolocationIpAddressWhitelistConfiguration.php │ │ └── GeolocationOptionsConfiguration.php │ ├── Grid │ │ ├── Action │ │ │ └── Row │ │ │ │ └── AccessibilityChecker │ │ │ │ └── CategoryForViewAccessibilityChecker.php │ │ └── Search │ │ │ └── Factory │ │ │ └── SearchCriteriaWithCategoryParentIdFilterFactory.php │ ├── Group │ │ ├── GroupDataProvider.php │ │ └── Provider │ │ │ └── DefaultGroupsProvider.php │ ├── Hook │ │ ├── HookDispatcher.php │ │ └── HookInformationProvider.php │ ├── HookManager.php │ ├── Hosting │ │ └── HostingInformation.php │ ├── Image │ │ ├── ImageRetriever.php │ │ └── Uploader │ │ │ ├── AbstractImageUploader.php │ │ │ ├── CategoryCoverImageUploader.php │ │ │ ├── CategoryMenuThumbnailUploader.php │ │ │ ├── CategoryThumbnailImageUploader.php │ │ │ ├── ManufacturerImageUploader.php │ │ │ └── SupplierImageUploader.php │ ├── ImageManager.php │ ├── Import │ │ ├── CsvFileOpener.php │ │ ├── DataMatchSaver.php │ │ ├── Handler │ │ │ ├── AbstractImportHandler.php │ │ │ ├── CategoryImportHandler.php │ │ │ ├── ImportHandlerFinder.php │ │ │ └── ProductImportHandler.php │ │ ├── ImageCopier.php │ │ ├── ImportDataFormatter.php │ │ └── ImportEntityDeleter.php │ ├── Invoice │ │ ├── InvoiceOptionsConfiguration.php │ │ ├── InvoiceTemplateTypeProvider.php │ │ └── OrderInvoiceDataProvider.php │ ├── Kpi │ │ ├── AbandonedCartKpi.php │ │ ├── AverageCustomerAgeKpi.php │ │ ├── AverageOrderValueKpi.php │ │ ├── AverageProductsInCategoryKpi.php │ │ ├── ConversionRateKpi.php │ │ ├── DisabledCategoriesKpi.php │ │ ├── EmptyCategoriesKpi.php │ │ ├── EnabledLanguagesKpi.php │ │ ├── MainCountryKpi.php │ │ ├── MostCommonCustomersGenderKpi.php │ │ ├── NetProfitPerVisitKpi.php │ │ ├── NewsletterRegistrationsKpi.php │ │ ├── OrdersPerCustomerKpi.php │ │ ├── ShoppingCartTotalKpi.php │ │ ├── TopCategoryKpi.php │ │ └── TranslationsKpi.php │ ├── Language │ │ ├── CommandHandler │ │ │ ├── AbstractLanguageHandler.php │ │ │ ├── AddLanguageHandler.php │ │ │ ├── BulkDeleteLanguagesHandler.php │ │ │ ├── BulkToggleLanguagesStatusHandler.php │ │ │ ├── DeleteLanguageHandler.php │ │ │ ├── EditLanguageHandler.php │ │ │ └── ToggleLanguageStatusHandler.php │ │ ├── LanguageActivator.php │ │ ├── LanguageCopier.php │ │ ├── LanguageDataProvider.php │ │ ├── LanguageFlagThumbnailProvider.php │ │ ├── LanguageImageManager.php │ │ ├── LanguagePackInstaller.php │ │ ├── LanguageValidator.php │ │ ├── Pack │ │ │ └── LanguagePackImporter.php │ │ ├── QueryHandler │ │ │ └── GetLanguageForEditingHandler.php │ │ └── RTL │ │ │ └── InstalledLanguageChecker.php │ ├── LegacyContext.php │ ├── LegacyHookSubscriber.php │ ├── LegacyLogger.php │ ├── Localization │ │ ├── AdvancedConfiguration.php │ │ ├── LegacyTranslator.php │ │ ├── LocalUnitsConfiguration.php │ │ └── LocalizationConfiguration.php │ ├── Mail │ │ └── MailingInformation.php │ ├── MailTemplate │ │ ├── MailPartialTemplateRenderer.php │ │ ├── MailPreviewVariablesBuilder.php │ │ └── MailTemplateTwigRenderer.php │ ├── Manufacturer │ │ ├── AbstractManufacturerHandler.php │ │ ├── CommandHandler │ │ │ ├── AbstractManufacturerCommandHandler.php │ │ │ ├── AddManufacturerHandler.php │ │ │ ├── BulkDeleteManufacturerHandler.php │ │ │ ├── BulkToggleManufacturerStatusHandler.php │ │ │ ├── DeleteManufacturerHandler.php │ │ │ ├── EditManufacturerHandler.php │ │ │ └── ToggleManufacturerStatusHandler.php │ │ ├── ManufacturerDataProvider.php │ │ ├── ManufacturerLogoThumbnailProvider.php │ │ ├── ManufacturerProductSearchProvider.php │ │ └── QueryHandler │ │ │ ├── GetManufacturerForEditingHandler.php │ │ │ └── GetManufacturerForViewingHandler.php │ ├── Media │ │ └── MediaServerConfiguration.php │ ├── Meta │ │ ├── CommandHandler │ │ │ ├── AddMetaHandler.php │ │ │ └── EditMetaHandler.php │ │ ├── MetaDataProvider.php │ │ ├── MetaEraser.php │ │ ├── QueryHandler │ │ │ ├── GetMetaForEditingHandler.php │ │ │ └── GetPagesForLayoutCustomizationHandler.php │ │ ├── SEOOptionsDataConfiguration.php │ │ ├── SetUpUrlsDataConfiguration.php │ │ ├── ShopUrlDataConfiguration.php │ │ └── UrlSchemaDataConfiguration.php │ ├── Module │ │ ├── AdminModuleDataProvider.php │ │ ├── Configuration │ │ │ ├── ModuleComplexConfigurationInterface.php │ │ │ └── ModuleSelfConfigurator.php │ │ ├── Module.php │ │ ├── ModuleDataProvider.php │ │ ├── ModuleDataUpdater.php │ │ ├── ModulePresenter.php │ │ ├── ModuleZip.php │ │ ├── ModuleZipManager.php │ │ ├── PaymentModuleListProvider.php │ │ ├── Presenter │ │ │ └── PaymentModulesPresenter.php │ │ ├── PrestaTrust │ │ │ ├── ModuleEventSubscriber.php │ │ │ └── PrestaTrustChecker.php │ │ ├── Tab │ │ │ ├── ModuleTabManagementSubscriber.php │ │ │ ├── ModuleTabRegister.php │ │ │ └── ModuleTabUnregister.php │ │ └── TabModuleListProvider.php │ ├── NewProducts │ │ └── NewProductsProductSearchProvider.php │ ├── News │ │ └── NewsDataProvider.php │ ├── Notification │ │ ├── CommandHandler │ │ │ └── UpdateEmployeeNotificationLastElementHandler.php │ │ └── QueryHandler │ │ │ └── GetNotificationLastElementsHandler.php │ ├── Number │ │ └── RoundModeConverter.php │ ├── ObjectPresenter.php │ ├── OptionalFeatures │ │ └── OptionalFeaturesConfiguration.php │ ├── Order │ │ ├── AbstractOrderHandler.php │ │ ├── CommandHandler │ │ │ ├── AbstractOrderCommandHandler.php │ │ │ ├── AddCartRuleToOrderHandler.php │ │ │ ├── AddOrderFromBackOfficeHandler.php │ │ │ ├── AddPaymentHandler.php │ │ │ ├── AddProductToOrderHandler.php │ │ │ ├── BulkChangeOrderStatusHandler.php │ │ │ ├── CancelOrderProductHandler.php │ │ │ ├── ChangeOrderCurrencyHandler.php │ │ │ ├── ChangeOrderDeliveryAddressHandler.php │ │ │ ├── ChangeOrderInvoiceAddressHandler.php │ │ │ ├── DeleteCartRuleFromOrderHandler.php │ │ │ ├── DeleteProductFromOrderHandler.php │ │ │ ├── DuplicateOrderCartHandler.php │ │ │ ├── GenerateInvoiceHandler.php │ │ │ ├── IssuePartialRefundHandler.php │ │ │ ├── IssueReturnProductHandler.php │ │ │ ├── IssueStandardRefundHandler.php │ │ │ ├── ResendOrderEmailHandler.php │ │ │ ├── SendProcessOrderEmailHandler.php │ │ │ ├── UpdateInvoiceNoteHandler.php │ │ │ ├── UpdateOrderShippingDetailsHandler.php │ │ │ ├── UpdateOrderStatusHandler.php │ │ │ └── UpdateProductInOrderHandler.php │ │ ├── Delivery │ │ │ ├── SlipOptionsConfiguration.php │ │ │ └── SlipPdfConfiguration.php │ │ ├── GeneralConfiguration.php │ │ ├── GiftOptionsConfiguration.php │ │ ├── Invoice.php │ │ ├── OrderAmountUpdater.php │ │ ├── OrderDetailUpdater.php │ │ ├── OrderPresenter.php │ │ ├── OrderProductQuantityUpdater.php │ │ ├── OrderReturnPresenter.php │ │ ├── OrderSiblingProvider.php │ │ ├── QueryHandler │ │ │ ├── GetOrderForViewingHandler.php │ │ │ ├── GetOrderPreviewHandler.php │ │ │ └── GetOrderProductsForViewingHandler.php │ │ └── Refund │ │ │ ├── OrderProductRemover.php │ │ │ ├── OrderRefundCalculator.php │ │ │ ├── OrderRefundSummary.php │ │ │ ├── OrderRefundUpdater.php │ │ │ ├── OrderSlipCreator.php │ │ │ └── VoucherGenerator.php │ ├── OrderMessage │ │ ├── AbstractOrderMessageHandler.php │ │ ├── CommandHandler │ │ │ ├── AddOrderMessageHandler.php │ │ │ ├── BulkDeleteOrderMessageHandler.php │ │ │ ├── DeleteOrderMessageHandler.php │ │ │ └── EditOrderMessageHandler.php │ │ ├── OrderMessageProvider.php │ │ └── QueryHandler │ │ │ └── GetOrderMessageForEditingHandler.php │ ├── OrderState │ │ └── OrderStateDataProvider.php │ ├── PDF │ │ ├── CreditSlipPdfGenerator.php │ │ ├── DeliverySlipPdfGenerator.php │ │ ├── OrderInvoicePdfGenerator.php │ │ └── PDFGenerator.php │ ├── Pack │ │ └── PackDataProvider.php │ ├── Preferences │ │ └── PreferencesConfiguration.php │ ├── Presenter │ │ ├── AbstractLazyArray.php │ │ ├── Cart │ │ │ └── CartPresenter.php │ │ ├── Module │ │ │ └── ModulePresenter.php │ │ ├── Object │ │ │ └── ObjectPresenter.php │ │ ├── Order │ │ │ ├── OrderDetailLazyArray.php │ │ │ ├── OrderLazyArray.php │ │ │ ├── OrderPresenter.php │ │ │ ├── OrderReturnLazyArray.php │ │ │ ├── OrderReturnPresenter.php │ │ │ └── OrderSubtotalLazyArray.php │ │ ├── PresenterInterface.php │ │ └── Product │ │ │ ├── ProductLazyArray.php │ │ │ ├── ProductListingLazyArray.php │ │ │ ├── ProductListingPresenter.php │ │ │ └── ProductPresenter.php │ ├── PricesDrop │ │ └── PricesDropProductSearchProvider.php │ ├── Product │ │ ├── AdminProductDataProvider.php │ │ ├── AdminProductDataUpdater.php │ │ ├── AdminProductWrapper.php │ │ ├── AttachmentDataProvider.php │ │ ├── CommandHandler │ │ │ ├── AssignProductToCategoryHandler.php │ │ │ └── UpdateProductStatusCommandHandler.php │ │ ├── FilterCategoriesRequestPurifier.php │ │ ├── GeneralConfiguration.php │ │ ├── ListParametersUpdater.php │ │ ├── PackItemsManager.php │ │ ├── PageConfiguration.php │ │ ├── PaginationConfiguration.php │ │ ├── PriceCalculator.php │ │ ├── PriceFormatter.php │ │ ├── ProductColorsRetriever.php │ │ ├── ProductDataProvider.php │ │ ├── QueryHandler │ │ │ ├── GetProductIsEnabledHandler.php │ │ │ └── SearchProductsHandler.php │ │ └── StockConfiguration.php │ ├── Profile │ │ ├── CommandHandler │ │ │ ├── AbstractProfileHandler.php │ │ │ ├── AddProfileHandler.php │ │ │ ├── BulkDeleteProfileHandler.php │ │ │ ├── DeleteProfileHandler.php │ │ │ └── EditProfileHandler.php │ │ ├── Employee │ │ │ ├── AbstractEmployeeHandler.php │ │ │ ├── CommandHandler │ │ │ │ ├── AbstractEmployeeHandler.php │ │ │ │ ├── AddEmployeeHandler.php │ │ │ │ ├── BulkDeleteEmployeeHandler.php │ │ │ │ ├── BulkUpdateEmployeeStatusHandler.php │ │ │ │ ├── DeleteEmployeeHandler.php │ │ │ │ ├── EditEmployeeHandler.php │ │ │ │ └── ToggleEmployeeStatusHandler.php │ │ │ └── QueryHandler │ │ │ │ ├── GetEmployeeEmailByIdHandler.php │ │ │ │ └── GetEmployeeForEditingHandler.php │ │ ├── ProfileDataProvider.php │ │ └── QueryHandler │ │ │ └── GetProfileForEditingHandler.php │ ├── Requirement │ │ ├── CheckMissingOrUpdatedFiles.php │ │ └── CheckRequirements.php │ ├── RoundingMapper.php │ ├── Routes │ │ ├── DefaultRouteProvider.php │ │ └── RouteValidator.php │ ├── Routing │ │ ├── AdminLinkBuilder.php │ │ └── LegacyHelperLinkBuilder.php │ ├── Search │ │ └── SearchProductSearchProvider.php │ ├── Security │ │ ├── Admin.php │ │ └── SslMiddleware.php │ ├── ServiceLocator.php │ ├── Shop │ │ ├── CommandHandler │ │ │ └── UploadLogosHandler.php │ │ ├── Context.php │ │ ├── MaintenanceConfiguration.php │ │ ├── QueryHandler │ │ │ └── GetLogosPathsHandler.php │ │ ├── ShopInformation.php │ │ ├── ShopUrlDataProvider.php │ │ └── Url │ │ │ ├── BaseUrlProvider.php │ │ │ ├── CategoryProvider.php │ │ │ └── CmsProvider.php │ ├── Smarty │ │ └── SmartyCacheConfiguration.php │ ├── SpecificPrice │ │ ├── AbstractSpecificPriceHandler.php │ │ └── CommandHandler │ │ │ ├── AddSpecificPriceHandler.php │ │ │ └── DeleteSpecificPriceByCartProductHandler.php │ ├── SqlManager │ │ ├── CommandHandler │ │ │ ├── AbstractSqlRequestHandler.php │ │ │ ├── AddSqlRequestHandler.php │ │ │ ├── BulkDeleteSqlRequestHandler.php │ │ │ ├── DeleteSqlRequestHandler.php │ │ │ └── EditSqlRequestHandler.php │ │ ├── QueryHandler │ │ │ ├── GetDatabaseTableFieldsListHandler.php │ │ │ ├── GetDatabaseTablesListHandler.php │ │ │ ├── GetSqlRequestExecutionResultHandler.php │ │ │ └── GetSqlRequestForEditingHandler.php │ │ ├── SqlQueryValidator.php │ │ └── SqlRequestFormDataValidator.php │ ├── StockManager.php │ ├── Supplier │ │ ├── AbstractSupplierHandler.php │ │ ├── CommandHandler │ │ │ ├── AbstractDeleteSupplierHandler.php │ │ │ ├── AddSupplierHandler.php │ │ │ ├── BulkDeleteSupplierHandler.php │ │ │ ├── BulkDisableSupplierHandler.php │ │ │ ├── BulkEnableSupplierHandler.php │ │ │ ├── DeleteSupplierHandler.php │ │ │ ├── EditSupplierHandler.php │ │ │ └── ToggleSupplierStatusHandler.php │ │ ├── QueryHandler │ │ │ ├── GetSupplierForEditingHandler.php │ │ │ └── GetSupplierForViewingHandler.php │ │ ├── SupplierAddressProvider.php │ │ ├── SupplierDataProvider.php │ │ ├── SupplierLogoThumbnailProvider.php │ │ ├── SupplierOrderValidator.php │ │ └── SupplierProductSearchProvider.php │ ├── Support │ │ ├── ContactDeleter.php │ │ └── ContactRepository.php │ ├── SymfonyContainer.php │ ├── System │ │ └── SystemInformation.php │ ├── Tab │ │ └── TabDataProvider.php │ ├── Tax │ │ ├── AbstractTaxHandler.php │ │ ├── CommandHandler │ │ │ ├── AddTaxHandler.php │ │ │ ├── BulkDeleteTaxHandler.php │ │ │ ├── BulkToggleTaxStatusHandler.php │ │ │ ├── DeleteTaxHandler.php │ │ │ ├── EditTaxHandler.php │ │ │ └── ToggleTaxStatusHandler.php │ │ ├── Ecotax │ │ │ └── ProductEcotaxResetter.php │ │ ├── QueryHandler │ │ │ └── GetTaxForEditingHandler.php │ │ └── TaxRuleDataProvider.php │ ├── TaxRulesGroup │ │ ├── AbstractTaxRulesGroupHandler.php │ │ ├── CommandHandler │ │ │ ├── BulkDeleteTaxRulesGroupHandler.php │ │ │ ├── BulkSetTaxRulesGroupStatusHandler.php │ │ │ ├── DeleteTaxRulesGroupHandler.php │ │ │ └── SetTaxRulesGroupStatusHandler.php │ │ └── QueryHandler │ │ │ └── GetTaxRulesGroupForEditingHandler.php │ ├── Theme │ │ └── ThemeMultiStoreSettingsFormDataProvider.php │ ├── Tools.php │ ├── Translations │ │ └── TranslationRouteFinder.php │ ├── Twig │ │ └── LocaleExtension.php │ ├── Upload │ │ └── UploadQuotaConfiguration.php │ ├── Validate.php │ ├── Warehouse │ │ └── WarehouseDataProvider.php │ └── Webservice │ │ ├── CommandHandler │ │ ├── AbstractWebserviceKeyHandler.php │ │ ├── AddWebserviceKeyHandler.php │ │ └── EditWebserviceKeyHandler.php │ │ ├── QueryHandler │ │ └── GetWebserviceKeyForEditingHandler.php │ │ ├── WebserviceConfiguration.php │ │ ├── WebserviceKeyEraser.php │ │ └── WebserviceKeyStatusModifier.php ├── Core │ ├── Addon │ │ ├── AddonInterface.php │ │ ├── AddonListFilter.php │ │ ├── AddonListFilterOrigin.php │ │ ├── AddonListFilterStatus.php │ │ ├── AddonListFilterType.php │ │ ├── AddonListItem.php │ │ ├── AddonManagerInterface.php │ │ ├── AddonRepositoryInterface.php │ │ ├── AddonsCollection.php │ │ ├── Module │ │ │ ├── AddonListFilterDeviceStatus.php │ │ │ ├── Exception │ │ │ │ └── UnconfirmedModuleActionException.php │ │ │ ├── ModuleInterface.php │ │ │ ├── ModuleManager.php │ │ │ ├── ModuleManagerBuilder.php │ │ │ ├── ModuleRepository.php │ │ │ └── ModuleRepositoryInterface.php │ │ └── Theme │ │ │ ├── Exception │ │ │ ├── ThemeAlreadyExistsException.php │ │ │ └── ThemeUploadException.php │ │ │ ├── Theme.php │ │ │ ├── ThemeCollection.php │ │ │ ├── ThemeExporter.php │ │ │ ├── ThemeManager.php │ │ │ ├── ThemeManagerBuilder.php │ │ │ ├── ThemePageLayoutsCustomizer.php │ │ │ ├── ThemePageLayoutsCustomizerInterface.php │ │ │ ├── ThemeProvider.php │ │ │ ├── ThemeProviderInterface.php │ │ │ ├── ThemeRepository.php │ │ │ ├── ThemeUploaderInterface.php │ │ │ ├── ThemeValidator.php │ │ │ └── ThemeZipUploader.php │ ├── Address │ │ └── AddressFormatterInterface.php │ ├── AttributeGroup │ │ └── AttributeGroupViewDataProviderInterface.php │ ├── B2b │ │ └── B2bFeature.php │ ├── Backup │ │ ├── BackupCollection.php │ │ ├── BackupCollectionInterface.php │ │ ├── BackupInterface.php │ │ ├── Comparator │ │ │ ├── BackupByDateComparator.php │ │ │ └── BackupComparatorInterface.php │ │ ├── Configuration │ │ │ └── BackupOptionsConfiguration.php │ │ ├── Exception │ │ │ ├── BackupException.php │ │ │ └── DirectoryIsNotWritableException.php │ │ ├── Listing │ │ │ └── BackupGridDataFactory.php │ │ ├── Manager │ │ │ ├── BackupCreatorInterface.php │ │ │ └── BackupRemoverInterface.php │ │ └── Repository │ │ │ └── BackupRepositoryInterface.php │ ├── CMS │ │ ├── CMSRepository.php │ │ ├── CMSRoleRepository.php │ │ ├── CmsPageViewDataProvider.php │ │ └── CmsPageViewDataProviderInterface.php │ ├── Cache │ │ └── Clearer │ │ │ ├── CacheClearerChain.php │ │ │ └── CacheClearerInterface.php │ ├── Cart │ │ ├── AmountImmutable.php │ │ ├── Calculator.php │ │ ├── CartRow.php │ │ ├── CartRowCollection.php │ │ ├── CartRuleCalculator.php │ │ ├── CartRuleCollection.php │ │ ├── CartRuleData.php │ │ └── Fees.php │ ├── Checkout │ │ └── TermsAndConditions.php │ ├── CommandBus │ │ ├── CommandBusInterface.php │ │ ├── ExecutedCommandRegistry.php │ │ ├── Middleware │ │ │ └── CommandRegisterMiddleware.php │ │ ├── Parser │ │ │ ├── CommandDefinition.php │ │ │ ├── CommandDefinitionParser.php │ │ │ └── CommandTypeParser.php │ │ └── TacticianCommandBusAdapter.php │ ├── Configuration │ │ ├── DataConfigurationInterface.php │ │ ├── IniConfiguration.php │ │ ├── PhpExtensionChecker.php │ │ ├── PhpExtensionCheckerInterface.php │ │ ├── UploadSizeConfiguration.php │ │ └── UploadSizeConfigurationInterface.php │ ├── ConfigurationInterface.php │ ├── ConstraintValidator │ │ ├── AddressDniRequiredValidator.php │ │ ├── AddressStateRequiredValidator.php │ │ ├── AddressZipCodeValidator.php │ │ ├── CleanHtmlValidator.php │ │ ├── Constraints │ │ │ ├── AddressDniRequired.php │ │ │ ├── AddressStateRequired.php │ │ │ ├── AddressZipCode.php │ │ │ ├── CleanHtml.php │ │ │ ├── CustomerName.php │ │ │ ├── DateRange.php │ │ │ ├── DefaultLanguage.php │ │ │ ├── ExistingCustomerEmail.php │ │ │ ├── IsUrlRewrite.php │ │ │ ├── NotBlankWhenRequired.php │ │ │ ├── Reduction.php │ │ │ └── TypedRegex.php │ │ ├── CustomerNameValidator.php │ │ ├── DateRangeValidator.php │ │ ├── DefaultLanguageValidator.php │ │ ├── ExistingCustomerEmailValidator.php │ │ ├── Factory │ │ │ └── CustomerNameValidatorFactory.php │ │ ├── IsUrlRewriteValidator.php │ │ ├── NotBlankWhenRequiredValidator.php │ │ ├── ReductionValidator.php │ │ └── TypedRegexValidator.php │ ├── ContainerBuilder.php │ ├── Country │ │ ├── CountryRequiredFieldsProviderInterface.php │ │ ├── CountryZipCodeRequirements.php │ │ └── CountryZipCodeRequirementsProviderInterface.php │ ├── CreditSlip │ │ └── CreditSlipOptionsConfiguration.php │ ├── Crypto │ │ └── Hashing.php │ ├── Currency │ │ ├── CurrencyDataProviderInterface.php │ │ ├── CurrencyGridDataFactory.php │ │ ├── Exception │ │ │ └── CurrencyFeedException.php │ │ └── ExchangeRateProvider.php │ ├── Customer │ │ └── CustomerDataSourceInterface.php │ ├── Data │ │ ├── AbstractTypedCollection.php │ │ └── Layer │ │ │ ├── AbstractDataLayer.php │ │ │ └── DataLayerException.php │ ├── Domain │ │ ├── Address │ │ │ ├── AddressSettings.php │ │ │ ├── Command │ │ │ │ ├── AbstractEditAddressCommand.php │ │ │ │ ├── AddCustomerAddressCommand.php │ │ │ │ ├── AddManufacturerAddressCommand.php │ │ │ │ ├── BulkDeleteAddressCommand.php │ │ │ │ ├── DeleteAddressCommand.php │ │ │ │ ├── EditCartAddressCommand.php │ │ │ │ ├── EditCustomerAddressCommand.php │ │ │ │ ├── EditManufacturerAddressCommand.php │ │ │ │ ├── EditOrderAddressCommand.php │ │ │ │ └── SetRequiredFieldsForAddressCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCustomerAddressHandlerInterface.php │ │ │ │ ├── AddManufacturerAddressHandlerInterface.php │ │ │ │ ├── BulkDeleteAddressHandlerInterface.php │ │ │ │ ├── DeleteAddressHandlerInterface.php │ │ │ │ ├── EditCartAddressHandlerInterface.php │ │ │ │ ├── EditCustomerAddressHandlerInterface.php │ │ │ │ ├── EditManufacturerAddressHandlerInterface.php │ │ │ │ ├── EditOrderAddressHandlerInterface.php │ │ │ │ └── SetRequiredFieldsForAddressHandlerInterface.php │ │ │ ├── Configuration │ │ │ │ └── AddressConstraint.php │ │ │ ├── Exception │ │ │ │ ├── AddressConstraintException.php │ │ │ │ ├── AddressException.php │ │ │ │ ├── AddressNotFoundException.php │ │ │ │ ├── BulkDeleteAddressException.php │ │ │ │ ├── CannotAddAddressException.php │ │ │ │ ├── CannotSetRequiredFieldsForAddressException.php │ │ │ │ ├── CannotUpdateAddressException.php │ │ │ │ ├── CannotUpdateCartAddressException.php │ │ │ │ ├── CannotUpdateOrderAddressException.php │ │ │ │ ├── DeleteAddressException.php │ │ │ │ ├── InvalidAddressFieldException.php │ │ │ │ └── InvalidAddressRequiredFieldsException.php │ │ │ ├── Query │ │ │ │ ├── GetCustomerAddressForEditing.php │ │ │ │ ├── GetManufacturerAddressForEditing.php │ │ │ │ └── GetRequiredFieldsForAddress.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCustomerAddressForEditingHandlerInterface.php │ │ │ │ ├── GetManufacturerAddressForEditingHandlerInterface.php │ │ │ │ └── GetRequiredFieldsForAddressHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── EditableCustomerAddress.php │ │ │ │ └── EditableManufacturerAddress.php │ │ │ └── ValueObject │ │ │ │ ├── AddressId.php │ │ │ │ └── RequiredFields.php │ │ ├── Attachment │ │ │ ├── AttachmentFileUploaderInterface.php │ │ │ ├── Command │ │ │ │ ├── AddAttachmentCommand.php │ │ │ │ ├── BulkDeleteAttachmentsCommand.php │ │ │ │ ├── DeleteAttachmentCommand.php │ │ │ │ └── EditAttachmentCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddAttachmentHandlerInterface.php │ │ │ │ ├── BulkDeleteAttachmentsHandlerInterface.php │ │ │ │ ├── DeleteAttachmentHandlerInterface.php │ │ │ │ └── EditAttachmentHandlerInterface.php │ │ │ ├── Configuration │ │ │ │ └── AttachmentConstraint.php │ │ │ ├── Exception │ │ │ │ ├── AttachmentConstraintException.php │ │ │ │ ├── AttachmentException.php │ │ │ │ ├── AttachmentNotFoundException.php │ │ │ │ ├── AttachmentUploadFailedException.php │ │ │ │ ├── BulkDeleteAttachmentsException.php │ │ │ │ ├── CannotAddAttachmentException.php │ │ │ │ ├── CannotUnlinkAttachmentException.php │ │ │ │ ├── CannotUpdateAttachmentException.php │ │ │ │ ├── DeleteAttachmentException.php │ │ │ │ └── EmptyFileException.php │ │ │ ├── Query │ │ │ │ ├── GetAttachment.php │ │ │ │ └── GetAttachmentForEditing.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetAttachmentForEditingHandlerInterface.php │ │ │ │ └── GetAttachmentHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── Attachment.php │ │ │ │ └── EditableAttachment.php │ │ │ └── ValueObject │ │ │ │ └── AttachmentId.php │ │ ├── Cart │ │ │ ├── CartAddressType.php │ │ │ ├── Command │ │ │ │ ├── AddCartRuleToCartCommand.php │ │ │ │ ├── AddCustomizationCommand.php │ │ │ │ ├── AddProductToCartCommand.php │ │ │ │ ├── CreateEmptyCustomerCartCommand.php │ │ │ │ ├── RemoveCartRuleFromCartCommand.php │ │ │ │ ├── RemoveProductFromCartCommand.php │ │ │ │ ├── SendCartToCustomerCommand.php │ │ │ │ ├── UpdateCartAddressesCommand.php │ │ │ │ ├── UpdateCartCarrierCommand.php │ │ │ │ ├── UpdateCartCurrencyCommand.php │ │ │ │ ├── UpdateCartDeliverySettingsCommand.php │ │ │ │ ├── UpdateCartLanguageCommand.php │ │ │ │ ├── UpdateProductPriceInCartCommand.php │ │ │ │ └── UpdateProductQuantityInCartCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCartRuleToCartHandlerInterface.php │ │ │ │ ├── AddCustomizationHandlerInterface.php │ │ │ │ ├── AddProductToCartHandlerInterface.php │ │ │ │ ├── CreateEmptyCustomerCartHandlerInterface.php │ │ │ │ ├── RemoveCartRuleFromCartHandlerInterface.php │ │ │ │ ├── RemoveProductFromCartHandlerInterface.php │ │ │ │ ├── SendCartToCustomerHanlderInterface.php │ │ │ │ ├── UpdateCartAddressesHandlerInterface.php │ │ │ │ ├── UpdateCartCarrierHandlerInterface.php │ │ │ │ ├── UpdateCartCurrencyHandlerInterface.php │ │ │ │ ├── UpdateCartDeliverySettingsHandlerInterface.php │ │ │ │ ├── UpdateCartLanguageHandlerInterface.php │ │ │ │ ├── UpdateProductPriceInCartHandlerInterface.php │ │ │ │ └── UpdateProductQuantityInCartHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotUpdateCartException.php │ │ │ │ ├── CartConstraintException.php │ │ │ │ ├── CartException.php │ │ │ │ ├── CartNotFoundException.php │ │ │ │ ├── InvalidAddressTypeException.php │ │ │ │ ├── InvalidGiftMessageException.php │ │ │ │ └── MinimalQuantityException.php │ │ │ ├── Query │ │ │ │ ├── GetCartForOrderCreation.php │ │ │ │ ├── GetCartForViewing.php │ │ │ │ └── GetLastEmptyCustomerCart.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCartForOrderCreationHandlerInterface.php │ │ │ │ ├── GetCartForViewingHandlerInterface.php │ │ │ │ └── GetLastEmptyCustomerCartHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── CartForOrderCreation.php │ │ │ │ ├── CartForOrderCreation │ │ │ │ │ ├── CartAddress.php │ │ │ │ │ ├── CartDeliveryOption.php │ │ │ │ │ ├── CartProduct.php │ │ │ │ │ ├── CartRule.php │ │ │ │ │ ├── CartShipping.php │ │ │ │ │ ├── CartSummary.php │ │ │ │ │ ├── Customization.php │ │ │ │ │ └── CustomizationFieldData.php │ │ │ │ └── CartView.php │ │ │ └── ValueObject │ │ │ │ └── CartId.php │ │ ├── CartRule │ │ │ ├── Command │ │ │ │ └── AddCartRuleCommand.php │ │ │ ├── CommandHandler │ │ │ │ └── AddCartRuleHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotDeleteCartRuleException.php │ │ │ │ ├── CartRuleConstraintException.php │ │ │ │ ├── CartRuleException.php │ │ │ │ ├── CartRuleValidityException.php │ │ │ │ ├── InvalidCartRuleDiscountValueException.php │ │ │ │ └── InvalidCartRuleValueException.php │ │ │ ├── Query │ │ │ │ └── SearchCartRules.php │ │ │ ├── QueryHandler │ │ │ │ └── SearchCartRulesHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── FoundCartRule.php │ │ │ └── ValueObject │ │ │ │ ├── CartRuleAction │ │ │ │ ├── AmountDiscountAction.php │ │ │ │ ├── CartRuleActionBuilder.php │ │ │ │ ├── CartRuleActionBuilderInterface.php │ │ │ │ ├── CartRuleActionInterface.php │ │ │ │ ├── FreeShippingAction.php │ │ │ │ ├── GiftProductAction.php │ │ │ │ └── PercentageDiscountAction.php │ │ │ │ ├── CartRuleId.php │ │ │ │ ├── DiscountApplicationType.php │ │ │ │ ├── GiftProduct.php │ │ │ │ ├── MoneyAmountCondition.php │ │ │ │ └── PercentageDiscount.php │ │ ├── CatalogPriceRule │ │ │ ├── Command │ │ │ │ ├── AddCatalogPriceRuleCommand.php │ │ │ │ ├── BulkDeleteCatalogPriceRuleCommand.php │ │ │ │ ├── DeleteCatalogPriceRuleCommand.php │ │ │ │ └── EditCatalogPriceRuleCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCatalogPriceRuleHandlerInterface.php │ │ │ │ ├── BulkDeleteCatalogPriceRuleHandlerInterface.php │ │ │ │ ├── DeleteCatalogPriceRuleHandlerInterface.php │ │ │ │ └── EditCatalogPriceRuleHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotDeleteCatalogPriceRuleException.php │ │ │ │ ├── CannotUpdateCatalogPriceRuleException.php │ │ │ │ ├── CatalogPriceRuleConstraintException.php │ │ │ │ ├── CatalogPriceRuleException.php │ │ │ │ └── CatalogPriceRuleNotFoundException.php │ │ │ ├── Query │ │ │ │ └── GetCatalogPriceRuleForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetCatalogPriceRuleForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableCatalogPriceRule.php │ │ │ └── ValueObject │ │ │ │ └── CatalogPriceRuleId.php │ │ ├── Category │ │ │ ├── Command │ │ │ │ ├── AddCategoryCommand.php │ │ │ │ ├── AddRootCategoryCommand.php │ │ │ │ ├── BulkDeleteCategoriesCommand.php │ │ │ │ ├── BulkDisableCategoriesCommand.php │ │ │ │ ├── BulkEnableCategoriesCommand.php │ │ │ │ ├── BulkUpdateCategoriesStatusCommand.php │ │ │ │ ├── DeleteCategoryCommand.php │ │ │ │ ├── DeleteCategoryCoverImageCommand.php │ │ │ │ ├── DeleteCategoryMenuThumbnailImageCommand.php │ │ │ │ ├── EditCategoryCommand.php │ │ │ │ ├── EditRootCategoryCommand.php │ │ │ │ ├── SetCategoryIsEnabledCommand.php │ │ │ │ └── UpdateCategoryPositionCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCategoryHandlerInterface.php │ │ │ │ ├── AddRootCategoryHandlerInterface.php │ │ │ │ ├── BulkDeleteCategoriesHandlerInterface.php │ │ │ │ ├── BulkUpdateCategoriesStatusHandlerInterface.php │ │ │ │ ├── DeleteCategoryCoverImageHandlerInterface.php │ │ │ │ ├── DeleteCategoryHandlerInterface.php │ │ │ │ ├── DeleteCategoryMenuThumbnailImageHandlerInterface.php │ │ │ │ ├── EditCategoryHandlerInterface.php │ │ │ │ ├── EditRootCategoryHandlerInterface.php │ │ │ │ ├── SetCategoryIsEnabledHandlerInterface.php │ │ │ │ └── UpdateCategoryPositionHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotAddCategoryException.php │ │ │ │ ├── CannotDeleteImageException.php │ │ │ │ ├── CannotDeleteRootCategoryForShopException.php │ │ │ │ ├── CannotEditCategoryException.php │ │ │ │ ├── CannotUpdateCategoryStatusException.php │ │ │ │ ├── CategoryConstraintException.php │ │ │ │ ├── CategoryException.php │ │ │ │ ├── CategoryNotFoundException.php │ │ │ │ ├── FailedToDeleteCategoryException.php │ │ │ │ └── MenuThumbnailsLimitException.php │ │ │ ├── Query │ │ │ │ ├── GetCategoryForEditing.php │ │ │ │ └── GetCategoryIsEnabled.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCategoryForEditingHandlerInterface.php │ │ │ │ └── GetCategoryIsEnabledHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableCategory.php │ │ │ ├── SeoSettings.php │ │ │ └── ValueObject │ │ │ │ ├── CategoryDeleteMode.php │ │ │ │ ├── CategoryId.php │ │ │ │ └── MenuThumbnailId.php │ │ ├── CmsPage │ │ │ ├── Command │ │ │ │ ├── AddCmsPageCommand.php │ │ │ │ ├── BulkDeleteCmsPageCommand.php │ │ │ │ ├── BulkDisableCmsPageCommand.php │ │ │ │ ├── BulkEnableCmsPageCommand.php │ │ │ │ ├── DeleteCmsPageCommand.php │ │ │ │ ├── EditCmsPageCommand.php │ │ │ │ └── ToggleCmsPageStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCmsPageHandlerInterface.php │ │ │ │ ├── BulkDeleteCmsPageHandlerInterface.php │ │ │ │ ├── BulkDisableCmsPageHandlerInterface.php │ │ │ │ ├── BulkEnableCmsPageHandlerInterface.php │ │ │ │ ├── DeleteCmsPageHandlerInterface.php │ │ │ │ ├── EditCmsPageHandlerInterface.php │ │ │ │ └── ToggleCmsPageStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotAddCmsPageException.php │ │ │ │ ├── CannotDeleteCmsPageException.php │ │ │ │ ├── CannotDisableCmsPageException.php │ │ │ │ ├── CannotEditCmsPageException.php │ │ │ │ ├── CannotEnableCmsPageException.php │ │ │ │ ├── CannotToggleCmsPageException.php │ │ │ │ ├── CmsPageException.php │ │ │ │ └── CmsPageNotFoundException.php │ │ │ ├── Query │ │ │ │ ├── GetCmsCategoryIdForRedirection.php │ │ │ │ └── GetCmsPageForEditing.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCmsCategoryIdHandlerForRedirectionInterface.php │ │ │ │ └── GetCmsPageForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableCmsPage.php │ │ │ └── ValueObject │ │ │ │ └── CmsPageId.php │ │ ├── CmsPageCategory │ │ │ ├── Command │ │ │ │ ├── AbstractBulkCmsPageCategoryCommand.php │ │ │ │ ├── AbstractCmsPageCategoryCommand.php │ │ │ │ ├── AddCmsPageCategoryCommand.php │ │ │ │ ├── BulkDeleteCmsPageCategoryCommand.php │ │ │ │ ├── BulkDisableCmsPageCategoryCommand.php │ │ │ │ ├── BulkEnableCmsPageCategoryCommand.php │ │ │ │ ├── DeleteCmsPageCategoryCommand.php │ │ │ │ ├── EditCmsPageCategoryCommand.php │ │ │ │ └── ToggleCmsPageCategoryStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCmsPageCategoryHandlerInterface.php │ │ │ │ ├── BulkDeleteCmsPageCategoryHandlerInterface.php │ │ │ │ ├── BulkDisableCmsPageCategoryHandlerInterface.php │ │ │ │ ├── BulkEnableCmsPageCategoryHandlerInterface.php │ │ │ │ ├── DeleteCmsPageCategoryHandlerInterface.php │ │ │ │ ├── EditCmsPageCategoryHandlerInterface.php │ │ │ │ └── ToggleCmsPageCategoryStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotAddCmsPageCategoryException.php │ │ │ │ ├── CannotDeleteCmsPageCategoryException.php │ │ │ │ ├── CannotDisableCmsPageCategoryException.php │ │ │ │ ├── CannotEnableCmsPageCategoryException.php │ │ │ │ ├── CannotToggleCmsPageCategoryStatusException.php │ │ │ │ ├── CannotUpdateCmsPageCategoryException.php │ │ │ │ ├── CmsPageCategoryConstraintException.php │ │ │ │ ├── CmsPageCategoryException.php │ │ │ │ └── CmsPageCategoryNotFoundException.php │ │ │ ├── Query │ │ │ │ ├── GetCmsPageCategoriesForBreadcrumb.php │ │ │ │ ├── GetCmsPageCategoryForEditing.php │ │ │ │ ├── GetCmsPageCategoryNameForListing.php │ │ │ │ └── GetCmsPageParentCategoryIdForRedirection.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCmsPageCategoriesForBreadcrumbHandlerInterface.php │ │ │ │ ├── GetCmsPageCategoryForEditingHandlerInterface.php │ │ │ │ ├── GetCmsPageCategoryNameForListingHandlerInterface.php │ │ │ │ └── GetCmsPageParentCategoryIdForRedirectionHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── Breadcrumb.php │ │ │ │ ├── BreadcrumbItem.php │ │ │ │ └── EditableCmsPageCategory.php │ │ │ └── ValueObject │ │ │ │ └── CmsPageCategoryId.php │ │ ├── Configuration │ │ │ ├── Command │ │ │ │ └── SwitchDebugModeCommand.php │ │ │ ├── CommandHandler │ │ │ │ └── SwitchDebugModeHandlerInterface.php │ │ │ └── ShopConfigurationInterface.php │ │ ├── Contact │ │ │ ├── Command │ │ │ │ ├── AbstractContactCommand.php │ │ │ │ ├── AddContactCommand.php │ │ │ │ └── EditContactCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddContactHandlerInterface.php │ │ │ │ └── EditContactHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotAddContactException.php │ │ │ │ ├── CannotUpdateContactException.php │ │ │ │ ├── ContactConstraintException.php │ │ │ │ ├── ContactException.php │ │ │ │ └── ContactNotFoundException.php │ │ │ ├── Query │ │ │ │ └── GetContactForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetContactForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableContact.php │ │ │ └── ValueObject │ │ │ │ └── ContactId.php │ │ ├── Country │ │ │ ├── Exception │ │ │ │ ├── CountryConstraintException.php │ │ │ │ ├── CountryException.php │ │ │ │ └── CountryNotFoundException.php │ │ │ ├── Query │ │ │ │ └── GetCountryRequiredFields.php │ │ │ ├── QueryHandler │ │ │ │ └── GetCountryRequiredFieldsHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── CountryRequiredFields.php │ │ │ ├── ValueObject │ │ │ │ └── CountryId.php │ │ │ ├── ZipCodePatternResolver.php │ │ │ └── ZipCodePatternResolverInterface.php │ │ ├── CreditSlip │ │ │ ├── Exception │ │ │ │ ├── CreditSlipConstraintException.php │ │ │ │ ├── CreditSlipException.php │ │ │ │ └── CreditSlipNotFoundException.php │ │ │ ├── Query │ │ │ │ └── GetCreditSlipIdsByDateRange.php │ │ │ ├── QueryHandler │ │ │ │ └── GetCreditSlipIdsByDateRangeHandlerInterface.php │ │ │ └── ValueObject │ │ │ │ └── CreditSlipId.php │ │ ├── Currency │ │ │ ├── Command │ │ │ │ ├── AddCurrencyCommand.php │ │ │ │ ├── AddUnofficialCurrencyCommand.php │ │ │ │ ├── DeleteCurrencyCommand.php │ │ │ │ ├── EditCurrencyCommand.php │ │ │ │ ├── EditUnofficialCurrencyCommand.php │ │ │ │ ├── RefreshExchangeRatesCommand.php │ │ │ │ ├── ToggleCurrencyStatusCommand.php │ │ │ │ └── ToggleExchangeRateAutomatizationCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCurrencyHandlerInterface.php │ │ │ │ ├── AddUnofficialCurrencyHandlerInterface.php │ │ │ │ ├── DeleteCurrencyHandlerInterface.php │ │ │ │ ├── EditCurrencyHandlerInterface.php │ │ │ │ ├── EditUnofficialCurrencyHandlerInterface.php │ │ │ │ ├── RefreshExchangeRatesHandlerInterface.php │ │ │ │ ├── ToggleCurrencyStatusHandlerInterface.php │ │ │ │ └── ToggleExchangeRateAutomatizationHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── AutomateExchangeRatesUpdateException.php │ │ │ │ ├── CannotCreateCurrencyException.php │ │ │ │ ├── CannotDeleteCurrencyException.php │ │ │ │ ├── CannotDeleteDefaultCurrencyException.php │ │ │ │ ├── CannotDisableDefaultCurrencyException.php │ │ │ │ ├── CannotRefreshExchangeRatesException.php │ │ │ │ ├── CannotToggleCurrencyException.php │ │ │ │ ├── CannotUpdateCurrencyException.php │ │ │ │ ├── CurrencyConstraintException.php │ │ │ │ ├── CurrencyException.php │ │ │ │ ├── CurrencyNotFoundException.php │ │ │ │ ├── DefaultCurrencyInMultiShopException.php │ │ │ │ ├── ExchangeRateNotFoundException.php │ │ │ │ └── InvalidUnofficialCurrencyException.php │ │ │ ├── Query │ │ │ │ ├── GetCurrencyExchangeRate.php │ │ │ │ ├── GetCurrencyForEditing.php │ │ │ │ └── GetReferenceCurrency.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCurrencyExchangeRateHandlerInterface.php │ │ │ │ ├── GetCurrencyForEditingHandlerInterface.php │ │ │ │ └── GetReferenceCurrencyHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── EditableCurrency.php │ │ │ │ ├── ExchangeRate.php │ │ │ │ └── ReferenceCurrency.php │ │ │ └── ValueObject │ │ │ │ ├── AlphaIsoCode.php │ │ │ │ ├── CurrencyId.php │ │ │ │ ├── ExchangeRate.php │ │ │ │ ├── NumericIsoCode.php │ │ │ │ └── Precision.php │ │ ├── Customer │ │ │ ├── Command │ │ │ │ ├── AddCustomerCommand.php │ │ │ │ ├── BulkDeleteCustomerCommand.php │ │ │ │ ├── BulkDisableCustomerCommand.php │ │ │ │ ├── BulkEnableCustomerCommand.php │ │ │ │ ├── DeleteCustomerCommand.php │ │ │ │ ├── EditCustomerCommand.php │ │ │ │ ├── SetPrivateNoteAboutCustomerCommand.php │ │ │ │ ├── SetRequiredFieldsForCustomerCommand.php │ │ │ │ └── TransformGuestToCustomerCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCustomerHandlerInterface.php │ │ │ │ ├── BulkDeleteCustomerHandlerInterface.php │ │ │ │ ├── BulkDisableCustomerHandlerInterface.php │ │ │ │ ├── BulkEnableCustomerHandlerInterface.php │ │ │ │ ├── DeleteCustomerHandlerInterface.php │ │ │ │ ├── EditCustomerHandlerInterface.php │ │ │ │ ├── SetPrivateNoteAboutCustomerHandlerInterface.php │ │ │ │ ├── SetRequiredFieldsForCustomerHandlerInterface.php │ │ │ │ └── TransformGuestToCustomerHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotSetRequiredFieldsForCustomerException.php │ │ │ │ ├── CustomerByEmailNotFoundException.php │ │ │ │ ├── CustomerConstraintException.php │ │ │ │ ├── CustomerDefaultGroupAccessException.php │ │ │ │ ├── CustomerException.php │ │ │ │ ├── CustomerNotFoundException.php │ │ │ │ ├── CustomerTransformationException.php │ │ │ │ ├── DuplicateCustomerEmailException.php │ │ │ │ ├── InvalidCustomerIdException.php │ │ │ │ ├── InvalidCustomerRequiredFieldsException.php │ │ │ │ └── MissingCustomerRequiredFieldsException.php │ │ │ ├── Query │ │ │ │ ├── GetCustomerCarts.php │ │ │ │ ├── GetCustomerForAddressCreation.php │ │ │ │ ├── GetCustomerForEditing.php │ │ │ │ ├── GetCustomerForViewing.php │ │ │ │ ├── GetCustomerOrders.php │ │ │ │ ├── GetRequiredFieldsForCustomer.php │ │ │ │ └── SearchCustomers.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCustomerCartsHandlerInterface.php │ │ │ │ ├── GetCustomerForAddressCreationHandlerInterface.php │ │ │ │ ├── GetCustomerForEditingHandlerInterface.php │ │ │ │ ├── GetCustomerForViewingHandlerInterface.php │ │ │ │ ├── GetCustomerOrdersHandlerInterface.php │ │ │ │ ├── GetRequiredFieldsForCustomerHandlerInterface.php │ │ │ │ └── SearchCustomersHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── AddressCreationCustomerInformation.php │ │ │ │ ├── AddressInformation.php │ │ │ │ ├── BoughtProductInformation.php │ │ │ │ ├── CartInformation.php │ │ │ │ ├── CartSummary.php │ │ │ │ ├── DiscountInformation.php │ │ │ │ ├── EditableCustomer.php │ │ │ │ ├── GeneralInformation.php │ │ │ │ ├── GroupInformation.php │ │ │ │ ├── LastConnectionInformation.php │ │ │ │ ├── MessageInformation.php │ │ │ │ ├── OrderInformation.php │ │ │ │ ├── OrderSummary.php │ │ │ │ ├── OrdersInformation.php │ │ │ │ ├── PersonalInformation.php │ │ │ │ ├── ProductsInformation.php │ │ │ │ ├── ReferrerInformation.php │ │ │ │ ├── SentEmailInformation.php │ │ │ │ ├── Subscriptions.php │ │ │ │ ├── ViewableCustomer.php │ │ │ │ └── ViewedProductInformation.php │ │ │ └── ValueObject │ │ │ │ ├── ApeCode.php │ │ │ │ ├── Birthday.php │ │ │ │ ├── CustomerDeleteMethod.php │ │ │ │ ├── CustomerId.php │ │ │ │ ├── Email.php │ │ │ │ ├── FirstName.php │ │ │ │ ├── LastName.php │ │ │ │ ├── Password.php │ │ │ │ └── RequiredField.php │ │ ├── CustomerMessage │ │ │ ├── Command │ │ │ │ └── AddOrderCustomerMessageCommand.php │ │ │ ├── CommandHandler │ │ │ │ └── AddOrderCustomerMessageHandlerInterface.php │ │ │ └── Exception │ │ │ │ ├── CannotSendEmailException.php │ │ │ │ ├── CustomerMessageConstraintException.php │ │ │ │ └── CustomerMessageException.php │ │ ├── CustomerService │ │ │ ├── Command │ │ │ │ ├── ForwardCustomerThreadCommand.php │ │ │ │ ├── ReplyToCustomerThreadCommand.php │ │ │ │ └── UpdateCustomerThreadStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── ForwardCustomerThreadHandlerInterface.php │ │ │ │ ├── ReplyToCustomerThreadHandlerInterface.php │ │ │ │ ├── UpdateCustomerThreadStatusHandler.php │ │ │ │ └── UpdateCustomerThreadStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CustomerServiceException.php │ │ │ │ └── CustomerThreadNotFoundException.php │ │ │ ├── Query │ │ │ │ ├── GetCustomerServiceSignature.php │ │ │ │ └── GetCustomerThreadForViewing.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetCustomerServiceSignatureHandler.php │ │ │ │ ├── GetCustomerServiceSignatureHandlerInterface.php │ │ │ │ └── GetCustomerThreadForViewingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── CustomerInformation.php │ │ │ │ ├── CustomerThreadMessage.php │ │ │ │ ├── CustomerThreadTimeline.php │ │ │ │ ├── CustomerThreadTimelineItem.php │ │ │ │ └── CustomerThreadView.php │ │ │ └── ValueObject │ │ │ │ ├── CustomerThreadId.php │ │ │ │ ├── CustomerThreadMessageType.php │ │ │ │ └── CustomerThreadStatus.php │ │ ├── Employee │ │ │ ├── Command │ │ │ │ ├── AddEmployeeCommand.php │ │ │ │ ├── BulkDeleteEmployeeCommand.php │ │ │ │ ├── BulkUpdateEmployeeStatusCommand.php │ │ │ │ ├── DeleteEmployeeCommand.php │ │ │ │ ├── EditEmployeeCommand.php │ │ │ │ └── ToggleEmployeeStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddEmployeeHandlerInterface.php │ │ │ │ ├── BulkDeleteEmployeeHandlerInterface.php │ │ │ │ ├── BulkUpdateEmployeeStatusHandlerInterface.php │ │ │ │ ├── DeleteEmployeeHandlerInterface.php │ │ │ │ ├── EditEmployeeHandlerInterface.php │ │ │ │ └── ToggleEmployeeStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── AdminEmployeeException.php │ │ │ │ ├── CannotDeleteEmployeeException.php │ │ │ │ ├── CannotDeleteWarehouseManagerException.php │ │ │ │ ├── EmailAlreadyUsedException.php │ │ │ │ ├── EmployeeCannotChangeItselfException.php │ │ │ │ ├── EmployeeConstraintException.php │ │ │ │ ├── EmployeeException.php │ │ │ │ ├── EmployeeNotFoundException.php │ │ │ │ ├── InvalidEmployeeIdException.php │ │ │ │ ├── InvalidPasswordException.php │ │ │ │ ├── InvalidProfileException.php │ │ │ │ └── MissingShopAssociationException.php │ │ │ ├── Query │ │ │ │ ├── GetEmployeeEmailById.php │ │ │ │ └── GetEmployeeForEditing.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetEmployeeEmailByIdHandlerInterface.php │ │ │ │ └── GetEmployeeForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableEmployee.php │ │ │ └── ValueObject │ │ │ │ ├── EmployeeId.php │ │ │ │ ├── FirstName.php │ │ │ │ ├── LastName.php │ │ │ │ └── Password.php │ │ ├── Exception │ │ │ ├── DomainConstraintException.php │ │ │ ├── DomainException.php │ │ │ ├── FileUploadException.php │ │ │ └── InvalidSortingException.php │ │ ├── Feature │ │ │ ├── Command │ │ │ │ ├── AddFeatureCommand.php │ │ │ │ └── EditFeatureCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddFeatureHandlerInterface.php │ │ │ │ └── EditFeatureHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotAddFeatureException.php │ │ │ │ ├── CannotEditFeatureException.php │ │ │ │ ├── FeatureConstraintException.php │ │ │ │ ├── FeatureException.php │ │ │ │ ├── FeatureNotFoundException.php │ │ │ │ └── InvalidFeatureIdException.php │ │ │ ├── Query │ │ │ │ └── GetFeatureForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetFeatureForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableFeature.php │ │ │ └── ValueObject │ │ │ │ └── FeatureId.php │ │ ├── Language │ │ │ ├── Command │ │ │ │ ├── AddLanguageCommand.php │ │ │ │ ├── BulkDeleteLanguagesCommand.php │ │ │ │ ├── BulkToggleLanguagesStatusCommand.php │ │ │ │ ├── DeleteLanguageCommand.php │ │ │ │ ├── EditLanguageCommand.php │ │ │ │ └── ToggleLanguageStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddLanguageHandlerInterface.php │ │ │ │ ├── BulkDeleteLanguagesHandlerInterface.php │ │ │ │ ├── BulkToggleLanguagesStatusHandlerInterface.php │ │ │ │ ├── DeleteLanguageHandlerInterface.php │ │ │ │ ├── EditLanguageHandlerInterface.php │ │ │ │ └── ToggleLanguageStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotDisableDefaultLanguageException.php │ │ │ │ ├── CopyingNoPictureException.php │ │ │ │ ├── DefaultLanguageException.php │ │ │ │ ├── LanguageConstraintException.php │ │ │ │ ├── LanguageException.php │ │ │ │ ├── LanguageImageUploadingException.php │ │ │ │ └── LanguageNotFoundException.php │ │ │ ├── Query │ │ │ │ └── GetLanguageForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetLanguageForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableLanguage.php │ │ │ └── ValueObject │ │ │ │ ├── IsoCode.php │ │ │ │ ├── LanguageId.php │ │ │ │ └── TagIETF.php │ │ ├── MailTemplate │ │ │ ├── Command │ │ │ │ └── GenerateThemeMailTemplatesCommand.php │ │ │ └── CommandHandler │ │ │ │ ├── GenerateThemeMailTemplatesCommandHandler.php │ │ │ │ └── GenerateThemeMailTemplatesCommandHandlerInterface.php │ │ ├── Manufacturer │ │ │ ├── Command │ │ │ │ ├── AddManufacturerCommand.php │ │ │ │ ├── BulkDeleteManufacturerCommand.php │ │ │ │ ├── BulkToggleManufacturerStatusCommand.php │ │ │ │ ├── DeleteManufacturerCommand.php │ │ │ │ ├── EditManufacturerCommand.php │ │ │ │ └── ToggleManufacturerStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddManufacturerHandlerInterface.php │ │ │ │ ├── BulkDeleteManufacturerHandlerInterface.php │ │ │ │ ├── BulkToggleManufacturerStatusHandlerInterface.php │ │ │ │ ├── DeleteManufacturerHandlerInterface.php │ │ │ │ ├── EditManufacturerHandlerInterface.php │ │ │ │ └── ToggleManufacturerStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── DeleteManufacturerException.php │ │ │ │ ├── ManufacturerConstraintException.php │ │ │ │ ├── ManufacturerException.php │ │ │ │ ├── ManufacturerImageUploadingException.php │ │ │ │ ├── ManufacturerNotFoundException.php │ │ │ │ └── UpdateManufacturerException.php │ │ │ ├── Query │ │ │ │ ├── GetManufacturerForEditing.php │ │ │ │ └── GetManufacturerForViewing.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetManufacturerForEditingHandlerInterface.php │ │ │ │ └── GetManufacturerForViewingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── EditableManufacturer.php │ │ │ │ └── ViewableManufacturer.php │ │ │ └── ValueObject │ │ │ │ └── ManufacturerId.php │ │ ├── Meta │ │ │ ├── Command │ │ │ │ ├── AbstractMetaCommand.php │ │ │ │ ├── AddMetaCommand.php │ │ │ │ └── EditMetaCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddMetaHandlerInterface.php │ │ │ │ └── EditMetaHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotAddMetaException.php │ │ │ │ ├── CannotEditMetaException.php │ │ │ │ ├── MetaConstraintException.php │ │ │ │ ├── MetaException.php │ │ │ │ └── MetaNotFoundException.php │ │ │ ├── Query │ │ │ │ ├── GetMetaForEditing.php │ │ │ │ └── GetPagesForLayoutCustomization.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetMetaForEditingHandlerInterface.php │ │ │ │ └── GetPagesForLayoutCustomizationHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── EditableMeta.php │ │ │ │ └── LayoutCustomizationPage.php │ │ │ └── ValueObject │ │ │ │ ├── MetaId.php │ │ │ │ └── Name.php │ │ ├── Notification │ │ │ ├── Command │ │ │ │ └── UpdateEmployeeNotificationLastElementCommand.php │ │ │ ├── CommandHandler │ │ │ │ └── UpdateEmployeeNotificationLastElementCommandHandlerInterface.php │ │ │ ├── Exception │ │ │ │ └── NotificationException.php │ │ │ ├── Query │ │ │ │ └── GetNotificationLastElements.php │ │ │ ├── QueryHandler │ │ │ │ └── GetNotificationLastElementsHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── NotificationResult.php │ │ │ │ ├── NotificationsResult.php │ │ │ │ └── NotificationsResults.php │ │ │ └── ValueObject │ │ │ │ └── Type.php │ │ ├── Order │ │ │ ├── CancellationActionType.php │ │ │ ├── Command │ │ │ │ ├── AbstractRefundCommand.php │ │ │ │ ├── AddCartRuleToOrderCommand.php │ │ │ │ ├── AddOrderFromBackOfficeCommand.php │ │ │ │ ├── BulkChangeOrderStatusCommand.php │ │ │ │ ├── CancelOrderProductCommand.php │ │ │ │ ├── ChangeOrderCurrencyCommand.php │ │ │ │ ├── ChangeOrderDeliveryAddressCommand.php │ │ │ │ ├── ChangeOrderInvoiceAddressCommand.php │ │ │ │ ├── DeleteCartRuleFromOrderCommand.php │ │ │ │ ├── DuplicateOrderCartCommand.php │ │ │ │ ├── IssuePartialRefundCommand.php │ │ │ │ ├── IssueReturnProductCommand.php │ │ │ │ ├── IssueStandardRefundCommand.php │ │ │ │ ├── ResendOrderEmailCommand.php │ │ │ │ ├── SendProcessOrderEmailCommand.php │ │ │ │ ├── UpdateOrderShippingDetailsCommand.php │ │ │ │ └── UpdateOrderStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddCartRuleToOrderHandlerInterface.php │ │ │ │ ├── AddOrderFromBackOfficeHandlerInterface.php │ │ │ │ ├── BulkChangeOrderStatusHandlerInterface.php │ │ │ │ ├── CancelOrderProductHandlerInterface.php │ │ │ │ ├── ChangeOrderCurrencyHandlerInterface.php │ │ │ │ ├── ChangeOrderDeliveryAddressHandlerInterface.php │ │ │ │ ├── ChangeOrderInvoiceAddressHandlerInterface.php │ │ │ │ ├── DeleteCartRuleFromOrderHandlerInterface.php │ │ │ │ ├── DuplicateOrderCartHandlerInterface.php │ │ │ │ ├── IssuePartialRefundHandlerInterface.php │ │ │ │ ├── IssueReturnProductHandlerInterface.php │ │ │ │ ├── IssueStandardRefundHandlerInterface.php │ │ │ │ ├── ResendOrderEmailHandlerInterface.php │ │ │ │ ├── SendProcessOrderEmailHandlerInterface.php │ │ │ │ ├── UpdateOrderShippingDetailsHandlerInterface.php │ │ │ │ └── UpdateOrderStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CancelProductFromOrderException.php │ │ │ │ ├── CannotEditDeliveredOrderProductException.php │ │ │ │ ├── CannotFindProductInOrderException.php │ │ │ │ ├── CannotUpdateOrderException.php │ │ │ │ ├── ChangeOrderStatusException.php │ │ │ │ ├── DeleteCustomizedProductFromOrderException.php │ │ │ │ ├── DeleteProductFromOrderException.php │ │ │ │ ├── DuplicateOrderCartException.php │ │ │ │ ├── DuplicateProductInOrderException.php │ │ │ │ ├── DuplicateProductInOrderInvoiceException.php │ │ │ │ ├── InvalidAddressTypeException.php │ │ │ │ ├── InvalidAmountException.php │ │ │ │ ├── InvalidCancelProductException.php │ │ │ │ ├── InvalidOrderStateException.php │ │ │ │ ├── InvalidProductQuantityException.php │ │ │ │ ├── InvalidRefundException.php │ │ │ │ ├── NegativePaymentAmountException.php │ │ │ │ ├── OrderConstraintException.php │ │ │ │ ├── OrderEmailSendException.php │ │ │ │ ├── OrderException.php │ │ │ │ ├── OrderNotFoundException.php │ │ │ │ ├── ReturnProductDisabledException.php │ │ │ │ └── TransistEmailSendingException.php │ │ │ ├── Invoice │ │ │ │ ├── Command │ │ │ │ │ ├── GenerateInvoiceCommand.php │ │ │ │ │ └── UpdateInvoiceNoteCommand.php │ │ │ │ ├── CommandHandler │ │ │ │ │ ├── GenerateOrderInvoiceHandlerInterface.php │ │ │ │ │ └── UpdateInvoiceNoteHandlerInterface.php │ │ │ │ ├── Exception │ │ │ │ │ ├── InvoiceException.php │ │ │ │ │ └── InvoiceNotFoundException.php │ │ │ │ └── ValueObject │ │ │ │ │ └── OrderInvoiceId.php │ │ │ ├── OrderAddressType.php │ │ │ ├── OrderConstraints.php │ │ │ ├── OrderDiscountType.php │ │ │ ├── OrderDocumentType.php │ │ │ ├── Payment │ │ │ │ ├── Command │ │ │ │ │ └── AddPaymentCommand.php │ │ │ │ ├── CommandHandler │ │ │ │ │ └── AddPaymentHandlerInterface.php │ │ │ │ ├── Exception │ │ │ │ │ └── PaymentException.php │ │ │ │ └── ValueObject │ │ │ │ │ └── OrderPaymentId.php │ │ │ ├── Product │ │ │ │ ├── Command │ │ │ │ │ ├── AddProductToOrderCommand.php │ │ │ │ │ ├── DeleteProductFromOrderCommand.php │ │ │ │ │ └── UpdateProductInOrderCommand.php │ │ │ │ ├── CommandHandler │ │ │ │ │ ├── AddProductToOrderHandlerInterface.php │ │ │ │ │ ├── DeleteProductFromOrderHandlerInterface.php │ │ │ │ │ └── UpdateProductInOrderHandlerInterface.php │ │ │ │ └── Exception │ │ │ │ │ └── ProductException.php │ │ │ ├── Query │ │ │ │ ├── GetOrderForViewing.php │ │ │ │ ├── GetOrderPreview.php │ │ │ │ └── GetOrderProductsForViewing.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetOrderForViewingHandlerInterface.php │ │ │ │ ├── GetOrderPreviewHandlerInterface.php │ │ │ │ └── GetOrderProductsForViewingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── LinkedOrderForViewing.php │ │ │ │ ├── LinkedOrdersForViewing.php │ │ │ │ ├── OrderCarrierForViewing.php │ │ │ │ ├── OrderCustomerForViewing.php │ │ │ │ ├── OrderDiscountForViewing.php │ │ │ │ ├── OrderDiscountsForViewing.php │ │ │ │ ├── OrderDocumentForViewing.php │ │ │ │ ├── OrderDocumentsForViewing.php │ │ │ │ ├── OrderForViewing.php │ │ │ │ ├── OrderHistoryForViewing.php │ │ │ │ ├── OrderInvoiceAddressForViewing.php │ │ │ │ ├── OrderMessageDateForViewing.php │ │ │ │ ├── OrderMessageForViewing.php │ │ │ │ ├── OrderMessagesForViewing.php │ │ │ │ ├── OrderPaymentForViewing.php │ │ │ │ ├── OrderPaymentsForViewing.php │ │ │ │ ├── OrderPreview.php │ │ │ │ ├── OrderPreviewInvoiceDetails.php │ │ │ │ ├── OrderPreviewProductDetail.php │ │ │ │ ├── OrderPreviewShippingDetails.php │ │ │ │ ├── OrderPricesForViewing.php │ │ │ │ ├── OrderProductCustomizationForViewing.php │ │ │ │ ├── OrderProductCustomizationsForViewing.php │ │ │ │ ├── OrderProductForViewing.php │ │ │ │ ├── OrderProductsForViewing.php │ │ │ │ ├── OrderReturnForViewing.php │ │ │ │ ├── OrderReturnsForViewing.php │ │ │ │ ├── OrderShippingAddressForViewing.php │ │ │ │ ├── OrderShippingForViewing.php │ │ │ │ ├── OrderSourceForViewing.php │ │ │ │ ├── OrderSourcesForViewing.php │ │ │ │ └── OrderStatusForViewing.php │ │ │ ├── Status │ │ │ │ └── OrderStatusColor.php │ │ │ ├── ValueObject │ │ │ │ ├── OrderDetailRefund.php │ │ │ │ └── OrderId.php │ │ │ └── VoucherRefundType.php │ │ ├── OrderMessage │ │ │ ├── Command │ │ │ │ ├── AddOrderMessageCommand.php │ │ │ │ ├── BulkDeleteOrderMessageCommand.php │ │ │ │ ├── DeleteOrderMessageCommand.php │ │ │ │ └── EditOrderMessageCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddOrderMessageHandlerInterface.php │ │ │ │ ├── BulkDeleteOrderMessageHandlerInterface.php │ │ │ │ ├── DeleteOrderMessageHandlerInterface.php │ │ │ │ └── EditOrderMessageHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── OrderMessageConstraintException.php │ │ │ │ ├── OrderMessageException.php │ │ │ │ ├── OrderMessageNameAlreadyUsedException.php │ │ │ │ └── OrderMessageNotFoundException.php │ │ │ ├── OrderMessageConstraint.php │ │ │ ├── Query │ │ │ │ └── GetOrderMessageForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetOrderMessageForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableOrderMessage.php │ │ │ └── ValueObject │ │ │ │ └── OrderMessageId.php │ │ ├── Product │ │ │ ├── AttributeGroup │ │ │ │ ├── Attribute │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── BulkDeleteAttributeCommand.php │ │ │ │ │ │ └── DeleteAttributeCommand.php │ │ │ │ │ ├── CommandHandler │ │ │ │ │ │ ├── BulkDeleteAttributeHandlerInterface.php │ │ │ │ │ │ └── DeleteAttributeHandlerInterface.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AttributeConstraintException.php │ │ │ │ │ │ ├── AttributeException.php │ │ │ │ │ │ ├── AttributeNotFoundException.php │ │ │ │ │ │ └── DeleteAttributeException.php │ │ │ │ │ └── ValueObject │ │ │ │ │ │ └── AttributeId.php │ │ │ │ ├── Command │ │ │ │ │ ├── BulkDeleteAttributeGroupCommand.php │ │ │ │ │ └── DeleteAttributeGroupCommand.php │ │ │ │ ├── CommandHandler │ │ │ │ │ ├── BulkDeleteAttributeGroupHandlerInterface.php │ │ │ │ │ └── DeleteAttributeGroupHandlerInterface.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AttributeGroupConstraintException.php │ │ │ │ │ ├── AttributeGroupException.php │ │ │ │ │ ├── AttributeGroupNotFoundException.php │ │ │ │ │ └── DeleteAttributeGroupException.php │ │ │ │ └── ValueObject │ │ │ │ │ └── AttributeGroupId.php │ │ │ ├── Combination │ │ │ │ ├── Exception │ │ │ │ │ ├── CombinationConstraintException.php │ │ │ │ │ └── CombinationException.php │ │ │ │ └── ValueObject │ │ │ │ │ └── CombinationId.php │ │ │ ├── Command │ │ │ │ ├── AssignProductToCategoryCommand.php │ │ │ │ └── UpdateProductStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AssignProductToCategoryHandlerInterface.php │ │ │ │ └── UpdateProductStatusCommandHandlerInterface.php │ │ │ ├── Customization │ │ │ │ ├── CustomizationSettings.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CustomizationConstraintException.php │ │ │ │ │ └── CustomizationException.php │ │ │ │ └── ValueObject │ │ │ │ │ └── CustomizationId.php │ │ │ ├── Exception │ │ │ │ ├── CannotAssignProductToCategoryException.php │ │ │ │ ├── CannotUpdateProductException.php │ │ │ │ ├── PackOutOfStockException.php │ │ │ │ ├── ProductConstraintException.php │ │ │ │ ├── ProductCustomizationNotFoundException.php │ │ │ │ ├── ProductException.php │ │ │ │ ├── ProductNotFoundException.php │ │ │ │ ├── ProductOutOfStockException.php │ │ │ │ └── ProductSearchEmptyPhraseException.php │ │ │ ├── Query │ │ │ │ ├── GetProductIsEnabled.php │ │ │ │ └── SearchProducts.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetProductIsEnabledHandlerInterface.php │ │ │ │ └── SearchProductsHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── FoundProduct.php │ │ │ │ ├── ProductCombination.php │ │ │ │ └── ProductCustomizationField.php │ │ │ └── ValueObject │ │ │ │ └── ProductId.php │ │ ├── Profile │ │ │ ├── Command │ │ │ │ ├── AbstractProfileCommand.php │ │ │ │ ├── AddProfileCommand.php │ │ │ │ ├── BulkDeleteProfileCommand.php │ │ │ │ ├── DeleteProfileCommand.php │ │ │ │ └── EditProfileCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddProfileHandlerInterface.php │ │ │ │ ├── BulkDeleteProfileHandlerInterface.php │ │ │ │ ├── DeleteProfileHandlerInterface.php │ │ │ │ └── EditProfileHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotDeleteSuperAdminProfileException.php │ │ │ │ ├── FailedToDeleteProfileException.php │ │ │ │ ├── ProfileConstraintException.php │ │ │ │ ├── ProfileException.php │ │ │ │ └── ProfileNotFoundException.php │ │ │ ├── ProfileSettings.php │ │ │ ├── Query │ │ │ │ └── GetProfileForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetProfileForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableProfile.php │ │ │ └── ValueObject │ │ │ │ └── ProfileId.php │ │ ├── Shop │ │ │ ├── Command │ │ │ │ └── UploadLogosCommand.php │ │ │ ├── CommandHandler │ │ │ │ └── UploadLogosHandlerInterface.php │ │ │ ├── DTO │ │ │ │ └── ShopLogoSettings.php │ │ │ ├── Exception │ │ │ │ ├── NotSupportedFaviconExtensionException.php │ │ │ │ ├── NotSupportedLogoImageExtensionException.php │ │ │ │ └── ShopException.php │ │ │ ├── Query │ │ │ │ └── GetLogosPaths.php │ │ │ ├── QueryHandler │ │ │ │ └── GetLogosPathsHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── LogosPaths.php │ │ │ └── ValueObject │ │ │ │ ├── ShopConstraint.php │ │ │ │ ├── ShopGroupId.php │ │ │ │ └── ShopId.php │ │ ├── ShowcaseCard │ │ │ ├── Command │ │ │ │ └── CloseShowcaseCardCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── CloseShowcaseCardHandler.php │ │ │ │ └── CloseShowcaseCardHandlerInterface.php │ │ │ ├── ConfigurationMap.php │ │ │ ├── Exception │ │ │ │ ├── InvalidShowcaseCardNameException.php │ │ │ │ └── ShowcaseCardException.php │ │ │ ├── Query │ │ │ │ └── GetShowcaseCardIsClosed.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetShowcaseCardIsClosedHandler.php │ │ │ │ └── GetShowcaseCardIsClosedHandlerInterface.php │ │ │ └── ValueObject │ │ │ │ └── ShowcaseCard.php │ │ ├── SpecificPrice │ │ │ ├── Command │ │ │ │ ├── AddSpecificPriceCommand.php │ │ │ │ └── DeleteSpecificPriceByCartProductCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddSpecificPriceHandlerInterface.php │ │ │ │ └── DeleteSpecificPriceByCartProductHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── SpecificPriceConstraintException.php │ │ │ │ ├── SpecificPriceException.php │ │ │ │ └── SpecificPriceNotFoundException.php │ │ │ └── ValueObject │ │ │ │ └── SpecificPriceId.php │ │ ├── SqlManagement │ │ │ ├── Command │ │ │ │ ├── AddSqlRequestCommand.php │ │ │ │ ├── BulkDeleteSqlRequestCommand.php │ │ │ │ ├── DeleteSqlRequestCommand.php │ │ │ │ ├── EditSqlRequestCommand.php │ │ │ │ └── SaveSqlRequestSettingsCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddSqlRequestHandlerInterface.php │ │ │ │ ├── BulkDeleteSqlRequestHandlerInterface.php │ │ │ │ ├── DeleteSqlRequestHandlerInterface.php │ │ │ │ ├── EditSqlRequestHandlerInterface.php │ │ │ │ ├── SaveSqlRequestSettingsHandler.php │ │ │ │ └── SaveSqlRequestSettingsHandlerInterface.php │ │ │ ├── DatabaseTableFields.php │ │ │ ├── DatabaseTablesList.php │ │ │ ├── EditableSqlRequest.php │ │ │ ├── Exception │ │ │ │ ├── CannotAddSqlRequestException.php │ │ │ │ ├── CannotDeleteSqlRequestException.php │ │ │ │ ├── CannotEditSqlRequestException.php │ │ │ │ ├── SqlManagementConstraintException.php │ │ │ │ ├── SqlManagementException.php │ │ │ │ ├── SqlRequestConstraintException.php │ │ │ │ ├── SqlRequestException.php │ │ │ │ ├── SqlRequestNotFoundException.php │ │ │ │ └── SqlRequestSettingsConstraintException.php │ │ │ ├── Query │ │ │ │ ├── GetDatabaseTableFieldsList.php │ │ │ │ ├── GetDatabaseTablesList.php │ │ │ │ ├── GetSqlRequestExecutionResult.php │ │ │ │ ├── GetSqlRequestForEditing.php │ │ │ │ └── GetSqlRequestSettings.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetDatabaseTableFieldsListHandlerInterface.php │ │ │ │ ├── GetDatabaseTablesListHandlerInterface.php │ │ │ │ ├── GetSqlRequestExecutionResultHandlerInterface.php │ │ │ │ ├── GetSqlRequestForEditingHandlerInterface.php │ │ │ │ ├── GetSqlRequestSettingsHandler.php │ │ │ │ └── GetSqlRequestSettingsHandlerInterface.php │ │ │ ├── SqlRequestExecutionResult.php │ │ │ ├── SqlRequestSettings.php │ │ │ └── ValueObject │ │ │ │ ├── DatabaseTableField.php │ │ │ │ └── SqlRequestId.php │ │ ├── State │ │ │ ├── Exception │ │ │ │ ├── StateConstraintException.php │ │ │ │ └── StateException.php │ │ │ └── ValueObject │ │ │ │ └── StateId.php │ │ ├── Supplier │ │ │ ├── Command │ │ │ │ ├── AbstractBulkSupplierCommand.php │ │ │ │ ├── AddSupplierCommand.php │ │ │ │ ├── BulkDeleteSupplierCommand.php │ │ │ │ ├── BulkDisableSupplierCommand.php │ │ │ │ ├── BulkEnableSupplierCommand.php │ │ │ │ ├── DeleteSupplierCommand.php │ │ │ │ ├── EditSupplierCommand.php │ │ │ │ └── ToggleSupplierStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddSupplierHandlerInterface.php │ │ │ │ ├── BulkDeleteSupplierHandlerInterface.php │ │ │ │ ├── BulkDisableSupplierHandlerInterface.php │ │ │ │ ├── BulkEnableSupplierHandlerInterface.php │ │ │ │ ├── DeleteSupplierHandlerInterface.php │ │ │ │ ├── EditSupplierHandlerInterface.php │ │ │ │ └── ToggleSupplierStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotDeleteSupplierAddressException.php │ │ │ │ ├── CannotDeleteSupplierException.php │ │ │ │ ├── CannotDeleteSupplierProductRelationException.php │ │ │ │ ├── CannotToggleSupplierStatusException.php │ │ │ │ ├── CannotUpdateSupplierStatusException.php │ │ │ │ ├── SupplierConstraintException.php │ │ │ │ ├── SupplierException.php │ │ │ │ └── SupplierNotFoundException.php │ │ │ ├── Query │ │ │ │ ├── GetSupplierForEditing.php │ │ │ │ └── GetSupplierForViewing.php │ │ │ ├── QueryHandler │ │ │ │ ├── GetSupplierForEditingHandlerInterface.php │ │ │ │ └── GetSupplierForViewingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ ├── EditableSupplier.php │ │ │ │ └── ViewableSupplier.php │ │ │ ├── SupplierSettings.php │ │ │ └── ValueObject │ │ │ │ └── SupplierId.php │ │ ├── Tax │ │ │ ├── Command │ │ │ │ ├── AddTaxCommand.php │ │ │ │ ├── BulkDeleteTaxCommand.php │ │ │ │ ├── BulkToggleTaxStatusCommand.php │ │ │ │ ├── DeleteTaxCommand.php │ │ │ │ ├── EditTaxCommand.php │ │ │ │ └── ToggleTaxStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AddTaxHandlerInterface.php │ │ │ │ ├── BulkDeleteTaxHandlerInterface.php │ │ │ │ ├── BulkToggleTaxStatusHandlerInterface.php │ │ │ │ ├── DeleteTaxHandlerInterface.php │ │ │ │ ├── EditTaxHandlerInterface.php │ │ │ │ └── ToggleTaxStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── DeleteTaxException.php │ │ │ │ ├── TaxConstraintException.php │ │ │ │ ├── TaxException.php │ │ │ │ ├── TaxNotFoundException.php │ │ │ │ └── UpdateTaxException.php │ │ │ ├── Query │ │ │ │ └── GetTaxForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetTaxForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableTax.php │ │ │ └── ValueObject │ │ │ │ └── TaxId.php │ │ ├── TaxRulesGroup │ │ │ ├── Command │ │ │ │ ├── BulkDeleteTaxRulesGroupCommand.php │ │ │ │ ├── BulkSetTaxRulesGroupStatusCommand.php │ │ │ │ ├── DeleteTaxRulesGroupCommand.php │ │ │ │ └── SetTaxRulesGroupStatusCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── BulkDeleteTaxRulesGroupHandlerInterface.php │ │ │ │ ├── BulkToggleTaxRulesGroupStatusHandlerInterface.php │ │ │ │ ├── DeleteTaxRulesGroupHandlerInterface.php │ │ │ │ └── ToggleTaxRulesGroupStatusHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotBulkDeleteTaxRulesGroupException.php │ │ │ │ ├── CannotBulkUpdateTaxRulesGroupException.php │ │ │ │ ├── CannotDeleteTaxRulesGroupException.php │ │ │ │ ├── CannotUpdateTaxRulesGroupException.php │ │ │ │ ├── TaxRulesGroupConstraintException.php │ │ │ │ ├── TaxRulesGroupException.php │ │ │ │ └── TaxRulesGroupNotFoundException.php │ │ │ ├── Query │ │ │ │ └── GetTaxRulesGroupForEditing.php │ │ │ ├── QueryHandler │ │ │ │ └── GetTaxRulesGroupForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ │ └── EditableTaxRulesGroup.php │ │ │ └── ValueObject │ │ │ │ └── TaxRulesGroupId.php │ │ ├── Theme │ │ │ ├── Command │ │ │ │ ├── AdaptThemeToRTLLanguagesCommand.php │ │ │ │ ├── DeleteThemeCommand.php │ │ │ │ ├── EnableThemeCommand.php │ │ │ │ ├── ImportThemeCommand.php │ │ │ │ └── ResetThemeLayoutsCommand.php │ │ │ ├── CommandHandler │ │ │ │ ├── AdaptThemeToRTLLanguagesHandler.php │ │ │ │ ├── AdaptThemeToRTLLanguagesHandlerInterface.php │ │ │ │ ├── DeleteThemeHandler.php │ │ │ │ ├── DeleteThemeHandlerInterface.php │ │ │ │ ├── EnableThemeHandler.php │ │ │ │ ├── EnableThemeHandlerInterface.php │ │ │ │ ├── ImportThemeHandler.php │ │ │ │ ├── ImportThemeHandlerInterface.php │ │ │ │ ├── ResetThemeLayoutsHandler.php │ │ │ │ └── ResetThemeLayoutsHandlerInterface.php │ │ │ ├── Exception │ │ │ │ ├── CannotAdaptThemeToRTLLanguagesException.php │ │ │ │ ├── CannotDeleteThemeException.php │ │ │ │ ├── CannotEnableThemeException.php │ │ │ │ ├── CannotResetThemeLayoutsException.php │ │ │ │ ├── FailedToEnableThemeModuleException.php │ │ │ │ ├── ImportedThemeAlreadyExistsException.php │ │ │ │ ├── InvalidThemeNameException.php │ │ │ │ ├── NotSupportedThemeImportSourceException.php │ │ │ │ ├── ThemeConstraintException.php │ │ │ │ └── ThemeException.php │ │ │ └── ValueObject │ │ │ │ ├── ThemeImportSource.php │ │ │ │ └── ThemeName.php │ │ ├── ValueObject │ │ │ ├── Email.php │ │ │ ├── Money.php │ │ │ ├── QuerySorting.php │ │ │ └── Reduction.php │ │ └── Webservice │ │ │ ├── Command │ │ │ ├── AddWebserviceKeyCommand.php │ │ │ └── EditWebserviceKeyCommand.php │ │ │ ├── CommandHandler │ │ │ ├── AddWebserviceKeyHandlerInterface.php │ │ │ └── EditWebserviceKeyHandlerInterface.php │ │ │ ├── Exception │ │ │ ├── DuplicateWebserviceKeyException.php │ │ │ ├── WebserviceConstraintException.php │ │ │ ├── WebserviceException.php │ │ │ └── WebserviceKeyNotFoundException.php │ │ │ ├── Query │ │ │ └── GetWebserviceKeyForEditing.php │ │ │ ├── QueryHandler │ │ │ └── GetWebserviceKeyForEditingHandlerInterface.php │ │ │ ├── QueryResult │ │ │ └── EditableWebserviceKey.php │ │ │ └── ValueObject │ │ │ ├── Key.php │ │ │ ├── Permission.php │ │ │ └── WebserviceKeyId.php │ ├── Email │ │ ├── EmailConfigurationTesterInterface.php │ │ ├── EmailDataConfigurator.php │ │ ├── EmailLister.php │ │ ├── EmailLogEraserInterface.php │ │ ├── MailOption.php │ │ ├── SmtpDataConfigurator.php │ │ └── SwiftMailerValidation.php │ ├── Employee │ │ ├── Access │ │ │ ├── EmployeeFormAccessCheckerInterface.php │ │ │ ├── ProfileAccessChecker.php │ │ │ └── ProfileAccessCheckerInterface.php │ │ ├── AvatarProviderInterface.php │ │ ├── ContextEmployeeProviderInterface.php │ │ ├── EmployeeDataProviderInterface.php │ │ ├── FormLanguageChangerInterface.php │ │ └── NavigationMenuTogglerInterface.php │ ├── Encoding │ │ └── CharsetEncoding.php │ ├── EnvironmentInterface.php │ ├── Exception │ │ ├── ContainerNotFoundException.php │ │ ├── CoreException.php │ │ ├── DatabaseException.php │ │ ├── FileNotFoundException.php │ │ ├── IOException.php │ │ ├── InvalidArgumentException.php │ │ ├── NonASCIIInLocalPartException.php │ │ ├── ProductException.php │ │ ├── TranslatableCoreException.php │ │ ├── TranslatedException.php │ │ └── TypeException.php │ ├── Export │ │ ├── Data │ │ │ ├── ExportableData.php │ │ │ └── ExportableDataInterface.php │ │ ├── Exception │ │ │ ├── ExportException.php │ │ │ └── FileWritingException.php │ │ ├── ExportDirectory.php │ │ └── FileWriter │ │ │ ├── ExportCsvFileWriter.php │ │ │ └── FileWriterInterface.php │ ├── Feature │ │ ├── FeatureInterface.php │ │ └── TokenInUrls.php │ ├── File │ │ ├── Converter │ │ │ └── FileConverterInterface.php │ │ ├── FileFinderInterface.php │ │ └── InvoiceModelFinder.php │ ├── Filter │ │ ├── CollectionFilter.php │ │ ├── FilterException.php │ │ ├── FilterInterface.php │ │ ├── FrontEndObject │ │ │ ├── CartFilter.php │ │ │ ├── ConfigurationFilter.php │ │ │ ├── CustomerFilter.php │ │ │ ├── EmbeddedAttributesFilter.php │ │ │ ├── MainFilter.php │ │ │ ├── ProductFilter.php │ │ │ ├── SearchResultProductFilter.php │ │ │ └── ShopFilter.php │ │ └── HashMapWhitelistFilter.php │ ├── Form │ │ ├── ChoiceProvider │ │ │ ├── AddressRequiredFieldsChoiceProvider.php │ │ │ ├── CanonicalRedirectTypeChoiceProvider.php │ │ │ ├── CarrierByReferenceChoiceProvider.php │ │ │ ├── CategoryDeleteModeChoiceProvider.php │ │ │ ├── CmsCategoriesChoiceProvider.php │ │ │ ├── ContactByIdChoiceProvider.php │ │ │ ├── CountryByIdChoiceProvider.php │ │ │ ├── CountryByIsoCodeChoiceProvider.php │ │ │ ├── CurrencyByIdChoiceProvider.php │ │ │ ├── CurrencyNameByIsoCodeChoiceProvider.php │ │ │ ├── CustomerAddressesChoiceProvider.php │ │ │ ├── CustomerDeleteMethodChoiceProvider.php │ │ │ ├── CustomerRequiredFieldsChoiceProvider.php │ │ │ ├── CustomerServiceOrderMessagesChoiceProvider.php │ │ │ ├── CustomerServiceOrderMessagesNameChoiceProvider.php │ │ │ ├── DefaultMetaPageNameChoiceProvider.php │ │ │ ├── EmailContentTypeChoiceProvider.php │ │ │ ├── GroupByIdChoiceProvider.php │ │ │ ├── ImportEntityFieldChoiceProvider.php │ │ │ ├── ImportMatchConfigurationChoiceProvider.php │ │ │ ├── InvoiceModelByNameChoiceProvider.php │ │ │ ├── LanguageByIdChoiceProvider.php │ │ │ ├── LanguageChoiceProvider.php │ │ │ ├── LocalizationPackByIsoCodeChoiceProvider.php │ │ │ ├── MailMethodChoiceProvider.php │ │ │ ├── MailThemeChoiceProvider.php │ │ │ ├── ModuleByNameChoiceProvider.php │ │ │ ├── ModuleMetaPageNameChoiceProvider.php │ │ │ ├── NonInstalledLocalizationChoiceProvider.php │ │ │ ├── OrderDiscountTypeChoiceProvider.php │ │ │ ├── OrderStateByIdChoiceProvider.php │ │ │ ├── PermissionsChoiceProvider.php │ │ │ ├── PriceReductionTypeChoiceProvider.php │ │ │ ├── ProfileChoiceProvider.php │ │ │ ├── StatusChoiceProvider.php │ │ │ ├── TabChoiceProvider.php │ │ │ ├── TaxAddressTypeChoiceProvider.php │ │ │ ├── TaxInclusionChoiceProvider.php │ │ │ ├── ThemeByNameChoiceProvider.php │ │ │ ├── ThemeByNameWithEmailsChoiceProvider.php │ │ │ ├── ThemeChoiceProvider.php │ │ │ ├── ThemePageLayoutsChoiceProvider.php │ │ │ ├── ThemeZipChoiceProvider.php │ │ │ ├── TimezoneByNameChoiceProvider.php │ │ │ └── TranslationTypeChoiceProvider.php │ │ ├── ConfigurableFormChoiceProviderInterface.php │ │ ├── DTO │ │ │ ├── ShopRestriction.php │ │ │ └── ShopRestrictionField.php │ │ ├── FormChoiceAttributeProviderInterface.php │ │ ├── FormChoiceProviderInterface.php │ │ ├── FormDataProviderInterface.php │ │ ├── FormHandler.php │ │ ├── FormHandlerInterface.php │ │ ├── IdentifiableObject │ │ │ ├── Builder │ │ │ │ ├── FormBuilder.php │ │ │ │ ├── FormBuilderFactory.php │ │ │ │ ├── FormBuilderFactoryInterface.php │ │ │ │ └── FormBuilderInterface.php │ │ │ ├── DataHandler │ │ │ │ ├── AddressFormDataHandler.php │ │ │ │ ├── AttachmentFormDataHandler.php │ │ │ │ ├── CancellationFormDataHandler.php │ │ │ │ ├── CartAddressFormDataHandler.php │ │ │ │ ├── CatalogPriceRuleFormDataHandler.php │ │ │ │ ├── CategoryFormDataHandler.php │ │ │ │ ├── CmsPageCategoryFormDataHandler.php │ │ │ │ ├── CmsPageFormDataHandler.php │ │ │ │ ├── ContactFormDataHandler.php │ │ │ │ ├── CurrencyFormDataHandler.php │ │ │ │ ├── CustomerFormDataHandler.php │ │ │ │ ├── EmployeeFormDataHandler.php │ │ │ │ ├── FeatureFormDataHandler.php │ │ │ │ ├── FormDataHandlerInterface.php │ │ │ │ ├── LanguageFormDataHandler.php │ │ │ │ ├── ManufacturerAddressFormDataHandler.php │ │ │ │ ├── ManufacturerFormDataHandler.php │ │ │ │ ├── MetaFormDataHandler.php │ │ │ │ ├── OrderAddressFormDataHandler.php │ │ │ │ ├── OrderMessageFormDataHandler.php │ │ │ │ ├── PartialRefundFormDataHandler.php │ │ │ │ ├── ProfileFormDataHandler.php │ │ │ │ ├── ReturnProductFormDataHandler.php │ │ │ │ ├── RootCategoryFormDataHandler.php │ │ │ │ ├── SqlRequestFormDataHandler.php │ │ │ │ ├── StandardRefundFormDataHandler.php │ │ │ │ ├── SupplierFormDataHandler.php │ │ │ │ ├── TaxFormDataHandler.php │ │ │ │ └── WebserviceKeyFormDataHandler.php │ │ │ ├── DataProvider │ │ │ │ ├── AddressFormDataProvider.php │ │ │ │ ├── AttachmentFormDataProvider.php │ │ │ │ ├── CancelProductFormDataProvider.php │ │ │ │ ├── CatalogPriceRuleFormDataProvider.php │ │ │ │ ├── CategoryFormDataProvider.php │ │ │ │ ├── CmsPageCategoryFormDataProvider.php │ │ │ │ ├── CmsPageFormDataProvider.php │ │ │ │ ├── ContactFormDataProvider.php │ │ │ │ ├── CurrencyFormDataProvider.php │ │ │ │ ├── CustomerFormDataProvider.php │ │ │ │ ├── EmployeeFormDataProvider.php │ │ │ │ ├── FeatureFormDataProvider.php │ │ │ │ ├── FormDataProviderInterface.php │ │ │ │ ├── LanguageFormDataProvider.php │ │ │ │ ├── ManufacturerAddressFormDataProvider.php │ │ │ │ ├── ManufacturerFormDataProvider.php │ │ │ │ ├── MetaFormDataProvider.php │ │ │ │ ├── OrderMessageFormDataProvider.php │ │ │ │ ├── ProfileFormDataProvider.php │ │ │ │ ├── SqlRequestFormDataProvider.php │ │ │ │ ├── SupplierFormDataProvider.php │ │ │ │ ├── TaxFormDataProvider.php │ │ │ │ └── WebserviceKeyFormDataProvider.php │ │ │ └── Handler │ │ │ │ ├── FormHandler.php │ │ │ │ ├── FormHandlerFactory.php │ │ │ │ ├── FormHandlerFactoryInterface.php │ │ │ │ ├── FormHandlerInterface.php │ │ │ │ ├── FormHandlerResult.php │ │ │ │ └── FormHandlerResultInterface.php │ │ └── MultiStoreSettingsFormDataProviderInterface.php │ ├── Foundation │ │ ├── Database │ │ │ ├── DatabaseInterface.php │ │ │ ├── EntityDataInconsistencyException.php │ │ │ ├── EntityInterface.php │ │ │ ├── EntityManager.php │ │ │ ├── EntityManager │ │ │ │ └── QueryBuilder.php │ │ │ ├── EntityMetaData.php │ │ │ ├── EntityNotFoundException.php │ │ │ ├── EntityRepository.php │ │ │ └── Exception.php │ │ ├── Exception │ │ │ └── InvalidVersionException.php │ │ ├── Filesystem │ │ │ ├── Exception.php │ │ │ └── FileSystem.php │ │ ├── IoC │ │ │ ├── Container.php │ │ │ └── Exception.php │ │ ├── Templating │ │ │ ├── PresenterInterface.php │ │ │ ├── RenderableInterface.php │ │ │ └── RenderableProxy.php │ │ └── Version.php │ ├── Geolocation │ │ └── GeoLite │ │ │ ├── GeoLiteCityChecker.php │ │ │ └── GeoLiteCityCheckerInterface.php │ ├── Grid │ │ ├── Action │ │ │ ├── AbstractGridAction.php │ │ │ ├── Bulk │ │ │ │ ├── AbstractBulkAction.php │ │ │ │ ├── BulkActionCollection.php │ │ │ │ ├── BulkActionCollectionInterface.php │ │ │ │ ├── BulkActionInterface.php │ │ │ │ └── Type │ │ │ │ │ ├── ButtonBulkAction.php │ │ │ │ │ ├── Catalog │ │ │ │ │ └── Category │ │ │ │ │ │ └── DeleteCategoriesBulkAction.php │ │ │ │ │ ├── Customer │ │ │ │ │ └── DeleteCustomersBulkAction.php │ │ │ │ │ ├── ModalFormSubmitBulkAction.php │ │ │ │ │ └── SubmitBulkAction.php │ │ │ ├── GridActionCollection.php │ │ │ ├── GridActionCollectionInterface.php │ │ │ ├── GridActionInterface.php │ │ │ ├── ModalOptions.php │ │ │ ├── Row │ │ │ │ ├── AbstractRowAction.php │ │ │ │ ├── AccessibilityChecker │ │ │ │ │ ├── AccessibilityCheckerInterface.php │ │ │ │ │ ├── DeleteProfileAccessibilityChecker.php │ │ │ │ │ ├── PrintDeliverySlipAccessibilityChecker.php │ │ │ │ │ └── PrintInvoiceAccessibilityChecker.php │ │ │ │ ├── RowActionCollection.php │ │ │ │ ├── RowActionCollectionInterface.php │ │ │ │ ├── RowActionInterface.php │ │ │ │ └── Type │ │ │ │ │ ├── Category │ │ │ │ │ └── DeleteCategoryRowAction.php │ │ │ │ │ ├── Customer │ │ │ │ │ └── DeleteCustomerRowAction.php │ │ │ │ │ ├── LinkRowAction.php │ │ │ │ │ └── SubmitRowAction.php │ │ │ └── Type │ │ │ │ ├── LinkGridAction.php │ │ │ │ ├── SimpleGridAction.php │ │ │ │ └── SubmitGridAction.php │ │ ├── Collection │ │ │ └── AbstractCollection.php │ │ ├── Column │ │ │ ├── AbstractColumn.php │ │ │ ├── ColumnCollection.php │ │ │ ├── ColumnCollectionInterface.php │ │ │ ├── ColumnInterface.php │ │ │ └── Type │ │ │ │ ├── Attribute │ │ │ │ └── AttributeColorColumn.php │ │ │ │ ├── BooleanColumn.php │ │ │ │ ├── Category │ │ │ │ └── CategoryPositionColumn.php │ │ │ │ ├── ColorColumn.php │ │ │ │ ├── Common │ │ │ │ ├── ActionColumn.php │ │ │ │ ├── BadgeColumn.php │ │ │ │ ├── BulkActionColumn.php │ │ │ │ ├── ChoiceColumn.php │ │ │ │ ├── DateTimeColumn.php │ │ │ │ ├── DraggableColumn.php │ │ │ │ ├── IdentifierColumn.php │ │ │ │ ├── ImageColumn.php │ │ │ │ ├── LinkColumn.php │ │ │ │ ├── PositionColumn.php │ │ │ │ └── ToggleColumn.php │ │ │ │ ├── Currency │ │ │ │ └── NameColumn.php │ │ │ │ ├── DataColumn.php │ │ │ │ ├── DisableableLinkColumn.php │ │ │ │ ├── Employee │ │ │ │ └── EmployeeNameWithAvatarColumn.php │ │ │ │ ├── LinkGroupColumn.php │ │ │ │ ├── OrderPriceColumn.php │ │ │ │ ├── PreviewColumn.php │ │ │ │ └── Status │ │ │ │ └── SeverityLevelColumn.php │ │ ├── Data │ │ │ ├── Factory │ │ │ │ ├── AttachmentGridDataFactoryDecorator.php │ │ │ │ ├── AttributeGroupGridDataFactory.php │ │ │ │ ├── CatalogPriceRuleGridDataFactory.php │ │ │ │ ├── CategoryDataFactory.php │ │ │ │ ├── CreditSlipGridDataFactory.php │ │ │ │ ├── CustomerGridDataFactoryDecorator.php │ │ │ │ ├── DoctrineGridDataFactory.php │ │ │ │ ├── EmptyCategoryGridDataFactory.php │ │ │ │ ├── GridDataFactoryInterface.php │ │ │ │ ├── LanguageGridDataFactory.php │ │ │ │ ├── ManufacturerAddressGridDataFactory.php │ │ │ │ ├── ManufacturerGridDataFactory.php │ │ │ │ ├── OrderGridDataFactory.php │ │ │ │ └── SupplierGridDataFactory.php │ │ │ ├── GridData.php │ │ │ └── GridDataInterface.php │ │ ├── Definition │ │ │ ├── Factory │ │ │ │ ├── AbstractFilterableGridDefinitionFactory.php │ │ │ │ ├── AbstractGridDefinitionFactory.php │ │ │ │ ├── AddressGridDefinitionFactory.php │ │ │ │ ├── AttachmentGridDefinitionFactory.php │ │ │ │ ├── AttributeGridDefinitionFactory.php │ │ │ │ ├── AttributeGroupGridDefinitionFactory.php │ │ │ │ ├── BackupDefinitionFactory.php │ │ │ │ ├── BulkDeleteActionTrait.php │ │ │ │ ├── CatalogPriceRuleGridDefinitionFactory.php │ │ │ │ ├── CategoryGridDefinitionFactory.php │ │ │ │ ├── CmsPageCategoryDefinitionFactory.php │ │ │ │ ├── CmsPageDefinitionFactory.php │ │ │ │ ├── ContactGridDefinitionFactory.php │ │ │ │ ├── CreditSlipGridDefinitionFactory.php │ │ │ │ ├── CurrencyGridDefinitionFactory.php │ │ │ │ ├── CustomerGridDefinitionFactory.php │ │ │ │ ├── EmailLogsDefinitionFactory.php │ │ │ │ ├── EmployeeGridDefinitionFactory.php │ │ │ │ ├── FilterableGridDefinitionFactoryInterface.php │ │ │ │ ├── GridDefinitionFactoryInterface.php │ │ │ │ ├── LanguageGridDefinitionFactory.php │ │ │ │ ├── LogGridDefinitionFactory.php │ │ │ │ ├── ManufacturerAddressGridDefinitionFactory.php │ │ │ │ ├── ManufacturerGridDefinitionFactory.php │ │ │ │ ├── MerchandiseReturnGridDefinitionFactory.php │ │ │ │ ├── MetaGridDefinitionFactory.php │ │ │ │ ├── Monitoring │ │ │ │ │ ├── AbstractProductGridDefinitionFactory.php │ │ │ │ │ ├── DisabledProductGridDefinitionFactory.php │ │ │ │ │ ├── EmptyCategoryGridDefinitionFactory.php │ │ │ │ │ ├── NoQtyProductWithCombinationGridDefinitionFactory.php │ │ │ │ │ ├── NoQtyProductWithoutCombinationGridDefinitionFactory.php │ │ │ │ │ ├── ProductWithoutDescriptionGridDefinitionFactory.php │ │ │ │ │ ├── ProductWithoutImageGridDefinitionFactory.php │ │ │ │ │ └── ProductWithoutPriceGridDefinitionFactory.php │ │ │ │ ├── OrderGridDefinitionFactory.php │ │ │ │ ├── OrderMessageGridDefinitionFactory.php │ │ │ │ ├── ProfileGridDefinitionFactory.php │ │ │ │ ├── RequestSqlGridDefinitionFactory.php │ │ │ │ ├── SupplierGridDefinitionFactory.php │ │ │ │ ├── TaxGridDefinitionFactory.php │ │ │ │ ├── TaxRulesGroupGridDefinitionFactory.php │ │ │ │ └── WebserviceKeyDefinitionFactory.php │ │ │ ├── GridDefinition.php │ │ │ └── GridDefinitionInterface.php │ │ ├── Exception │ │ │ ├── ColumnNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidActionDataException.php │ │ │ ├── InvalidColumnDataException.php │ │ │ ├── InvalidDataException.php │ │ │ ├── MissingColumnInRowException.php │ │ │ └── UnsupportedParameterException.php │ │ ├── Factory │ │ │ └── CategoryGridFactoryDecorator.php │ │ ├── Filter │ │ │ ├── CategoryFilterFormFactory.php │ │ │ ├── CmsPageFilterFormFactory.php │ │ │ ├── Filter.php │ │ │ ├── FilterCollection.php │ │ │ ├── FilterCollectionInterface.php │ │ │ ├── FilterFormFactoryFormActionDecorator.php │ │ │ ├── FilterInterface.php │ │ │ ├── GridFilterFormFactory.php │ │ │ └── GridFilterFormFactoryInterface.php │ │ ├── Grid.php │ │ ├── GridFactory.php │ │ ├── GridFactoryInterface.php │ │ ├── GridInterface.php │ │ ├── Position │ │ │ ├── Exception │ │ │ │ ├── PositionDataException.php │ │ │ │ ├── PositionException.php │ │ │ │ └── PositionUpdateException.php │ │ │ ├── GridPositionUpdater.php │ │ │ ├── GridPositionUpdaterInterface.php │ │ │ ├── PositionDefinition.php │ │ │ ├── PositionDefinitionInterface.php │ │ │ ├── PositionModification.php │ │ │ ├── PositionModificationCollection.php │ │ │ ├── PositionModificationCollectionInterface.php │ │ │ ├── PositionModificationInterface.php │ │ │ ├── PositionUpdate.php │ │ │ ├── PositionUpdateFactory.php │ │ │ ├── PositionUpdateFactoryInterface.php │ │ │ ├── PositionUpdateInterface.php │ │ │ └── UpdateHandler │ │ │ │ ├── DoctrinePositionUpdateHandler.php │ │ │ │ └── PositionUpdateHandlerInterface.php │ │ ├── Presenter │ │ │ ├── GridPresenter.php │ │ │ └── GridPresenterInterface.php │ │ ├── Query │ │ │ ├── AbstractDoctrineQueryBuilder.php │ │ │ ├── AddressQueryBuilder.php │ │ │ ├── AttachmentQueryBuilder.php │ │ │ ├── AttributeGroupQueryBuilder.php │ │ │ ├── AttributeQueryBuilder.php │ │ │ ├── CatalogPriceRuleQueryBuilder.php │ │ │ ├── CategoryQueryBuilder.php │ │ │ ├── CmsPageCategoryQueryBuilder.php │ │ │ ├── CmsPageQueryBuilder.php │ │ │ ├── ContactQueryBuilder.php │ │ │ ├── CreditSlipQueryBuilder.php │ │ │ ├── CurrencyQueryBuilder.php │ │ │ ├── CustomerQueryBuilder.php │ │ │ ├── DoctrineQueryBuilderInterface.php │ │ │ ├── DoctrineQueryParser.php │ │ │ ├── DoctrineSearchCriteriaApplicator.php │ │ │ ├── DoctrineSearchCriteriaApplicatorInterface.php │ │ │ ├── EmailLogsQueryBuilder.php │ │ │ ├── EmployeeQueryBuilder.php │ │ │ ├── Filter │ │ │ │ ├── DoctrineFilterApplicator.php │ │ │ │ ├── DoctrineFilterApplicatorInterface.php │ │ │ │ └── SqlFilters.php │ │ │ ├── LanguageQueryBuilder.php │ │ │ ├── ManufacturerAddressQueryBuilder.php │ │ │ ├── ManufacturerQueryBuilder.php │ │ │ ├── MerchandiseReturnQueryBuilder.php │ │ │ ├── MetaQueryBuilder.php │ │ │ ├── Monitoring │ │ │ │ ├── AbstractProductQueryBuilder.php │ │ │ │ ├── DisabledProductQueryBuilder.php │ │ │ │ ├── EmptyCategoryQueryBuilder.php │ │ │ │ ├── NoQtyProductWithCombinationQueryBuilder.php │ │ │ │ ├── NoQtyProductWithoutCombinationQueryBuilder.php │ │ │ │ ├── ProductWithoutDescriptionQueryBuilder.php │ │ │ │ ├── ProductWithoutImageQueryBuilder.php │ │ │ │ └── ProductWithoutPriceQueryBuilder.php │ │ │ ├── OrderMessageQueryBuilder.php │ │ │ ├── OrderQueryBuilder.php │ │ │ ├── ProfileQueryBuilder.php │ │ │ ├── QueryParserInterface.php │ │ │ ├── SupplierQueryBuilder.php │ │ │ ├── TaxQueryBuilder.php │ │ │ ├── TaxRulesGroupQueryBuilder.php │ │ │ └── WebserviceKeyQueryBuilder.php │ │ ├── Record │ │ │ ├── RecordCollection.php │ │ │ └── RecordCollectionInterface.php │ │ └── Search │ │ │ ├── Factory │ │ │ └── DecoratedSearchCriteriaFactory.php │ │ │ ├── SearchCriteria.php │ │ │ └── SearchCriteriaInterface.php │ ├── Group │ │ └── Provider │ │ │ ├── DefaultGroup.php │ │ │ ├── DefaultGroups.php │ │ │ └── DefaultGroupsProviderInterface.php │ ├── Hook │ │ ├── Generator │ │ │ ├── HookDescriptionGenerator.php │ │ │ └── HookDescriptionGeneratorInterface.php │ │ ├── Hook.php │ │ ├── HookDescription.php │ │ ├── HookDispatcher.php │ │ ├── HookDispatcherAwareTrait.php │ │ ├── HookDispatcherInterface.php │ │ ├── HookInterface.php │ │ ├── Provider │ │ │ ├── GridDefinitionHookByServiceIdsProvider.php │ │ │ ├── HookByFormTypeProviderInterface.php │ │ │ ├── HookByServiceIdsProviderInterface.php │ │ │ └── IdentifiableObjectHookByFormTypeProvider.php │ │ ├── RenderedHook.php │ │ └── RenderedHookInterface.php │ ├── Image │ │ ├── Deleter │ │ │ ├── ImageFileDeleter.php │ │ │ └── ImageFileDeleterInterface.php │ │ ├── ImageProviderInterface.php │ │ ├── ImageTypeRepository.php │ │ ├── Parser │ │ │ ├── ImageTagSourceParser.php │ │ │ └── ImageTagSourceParserInterface.php │ │ └── Uploader │ │ │ ├── Exception │ │ │ ├── ImageOptimizationException.php │ │ │ ├── ImageUploadException.php │ │ │ ├── MemoryLimitException.php │ │ │ └── UploadedImageConstraintException.php │ │ │ └── ImageUploaderInterface.php │ ├── Import │ │ ├── Access │ │ │ ├── ImportAccessChecker.php │ │ │ └── ImportAccessCheckerInterface.php │ │ ├── Configuration │ │ │ ├── ImportConfig.php │ │ │ ├── ImportConfigFactory.php │ │ │ ├── ImportConfigFactoryInterface.php │ │ │ ├── ImportConfigInterface.php │ │ │ ├── ImportRuntimeConfig.php │ │ │ ├── ImportRuntimeConfigFactory.php │ │ │ ├── ImportRuntimeConfigFactoryInterface.php │ │ │ └── ImportRuntimeConfigInterface.php │ │ ├── CsvValueSeparatorNormalizer.php │ │ ├── Entity.php │ │ ├── Entity │ │ │ └── ImportEntityDeleterInterface.php │ │ ├── EntityField │ │ │ ├── EntityField.php │ │ │ ├── EntityFieldCollection.php │ │ │ ├── EntityFieldCollectionInterface.php │ │ │ ├── EntityFieldInterface.php │ │ │ └── Provider │ │ │ │ ├── AddressFieldsProvider.php │ │ │ │ ├── AliasFieldsProvider.php │ │ │ │ ├── CategoryFieldsProvider.php │ │ │ │ ├── CombinationFieldsProvider.php │ │ │ │ ├── CustomerFieldsProvider.php │ │ │ │ ├── EntityFieldsProviderFinder.php │ │ │ │ ├── EntityFieldsProviderFinderInterface.php │ │ │ │ ├── EntityFieldsProviderInterface.php │ │ │ │ ├── ProductFieldsProvider.php │ │ │ │ ├── StoreContactFieldsProvider.php │ │ │ │ └── SupplierFieldsProvider.php │ │ ├── Exception │ │ │ ├── EmptyDataRowException.php │ │ │ ├── ImportException.php │ │ │ ├── InvalidDataRowException.php │ │ │ ├── NotSupportedImportEntityException.php │ │ │ ├── NotSupportedImportTypeException.php │ │ │ ├── SkippedIterationException.php │ │ │ ├── UnavailableImportFileException.php │ │ │ └── UnreadableFileException.php │ │ ├── File │ │ │ ├── CsvFileReader.php │ │ │ ├── DataCell │ │ │ │ ├── DataCell.php │ │ │ │ ├── DataCellInterface.php │ │ │ │ └── EmptyDataCell.php │ │ │ ├── DataRow │ │ │ │ ├── DataRow.php │ │ │ │ ├── DataRowCollection.php │ │ │ │ ├── DataRowCollectionInterface.php │ │ │ │ ├── DataRowCollectionPresenter.php │ │ │ │ ├── DataRowCollectionPresenterInterface.php │ │ │ │ ├── DataRowInterface.php │ │ │ │ ├── DataRowPresenter.php │ │ │ │ ├── DataRowPresenterInterface.php │ │ │ │ └── Factory │ │ │ │ │ ├── DataRowCollectionFactory.php │ │ │ │ │ └── DataRowCollectionFactoryInterface.php │ │ │ ├── FileFinder.php │ │ │ ├── FileOpenerInterface.php │ │ │ ├── FileReaderInterface.php │ │ │ ├── FileRemoval.php │ │ │ └── FileUploader.php │ │ ├── Handler │ │ │ ├── ImportHandlerFinderInterface.php │ │ │ └── ImportHandlerInterface.php │ │ ├── ImportDirectory.php │ │ ├── ImportSettings.php │ │ ├── Importer.php │ │ ├── ImporterInterface.php │ │ ├── Sample │ │ │ ├── SampleFileProvider.php │ │ │ └── SampleFileProviderInterface.php │ │ ├── StringNormalizerInterface.php │ │ └── Validator │ │ │ ├── ImportRequestValidator.php │ │ │ └── ImportRequestValidatorInterface.php │ ├── Kpi │ │ ├── Exception │ │ │ └── InvalidArgumentException.php │ │ ├── KpiInterface.php │ │ ├── RenderableKpi.php │ │ └── Row │ │ │ ├── HookableKpiRowFactory.php │ │ │ ├── KpiRow.php │ │ │ ├── KpiRowFactory.php │ │ │ ├── KpiRowFactoryInterface.php │ │ │ ├── KpiRowInterface.php │ │ │ ├── KpiRowPresenter.php │ │ │ └── KpiRowPresenterInterface.php │ ├── Language │ │ ├── Copier │ │ │ ├── LanguageCopierConfig.php │ │ │ ├── LanguageCopierConfigInterface.php │ │ │ └── LanguageCopierInterface.php │ │ ├── LanguageActivatorInterface.php │ │ ├── LanguageDefaultFontsCatalog.php │ │ ├── LanguageInterface.php │ │ ├── LanguageRepositoryInterface.php │ │ ├── LanguageValidatorInterface.php │ │ ├── Pack │ │ │ ├── Import │ │ │ │ └── LanguagePackImporterInterface.php │ │ │ ├── LanguagePackInstallerInterface.php │ │ │ └── Loader │ │ │ │ ├── LanguagePackLoaderInterface.php │ │ │ │ └── RemoteLanguagePackLoader.php │ │ └── RTL │ │ │ └── InstalledLanguageCheckerInterface.php │ ├── Localization │ │ ├── CLDR │ │ │ ├── ComputingPrecision.php │ │ │ ├── ComputingPrecisionInterface.php │ │ │ ├── Currency.php │ │ │ ├── CurrencyData.php │ │ │ ├── CurrencyDataLayerInterface.php │ │ │ ├── CurrencyInterface.php │ │ │ ├── DataLayer │ │ │ │ ├── CurrencyCache.php │ │ │ │ ├── LocaleCache.php │ │ │ │ └── LocaleReference.php │ │ │ ├── Locale.php │ │ │ ├── LocaleData.php │ │ │ ├── LocaleDataLayerInterface.php │ │ │ ├── LocaleDataSource.php │ │ │ ├── LocaleInterface.php │ │ │ ├── LocaleRepository.php │ │ │ ├── NumberSymbolsData.php │ │ │ ├── Reader.php │ │ │ └── ReaderInterface.php │ │ ├── Currency.php │ │ ├── Currency │ │ │ ├── CurrencyCollection.php │ │ │ ├── CurrencyData.php │ │ │ ├── CurrencyDataLayerInterface.php │ │ │ ├── CurrencyDataSource.php │ │ │ ├── DataLayer │ │ │ │ ├── CurrencyCache.php │ │ │ │ ├── CurrencyDatabase.php │ │ │ │ ├── CurrencyInstalled.php │ │ │ │ └── CurrencyReference.php │ │ │ ├── DataSourceInterface.php │ │ │ ├── LocalizedCurrencyId.php │ │ │ ├── PatternTransformer.php │ │ │ ├── Repository.php │ │ │ └── RepositoryInterface.php │ │ ├── CurrencyInterface.php │ │ ├── Exception │ │ │ ├── LocalizationException.php │ │ │ └── LocalizationFileNotFoundException.php │ │ ├── Locale.php │ │ ├── Locale │ │ │ ├── Repository.php │ │ │ └── RepositoryInterface.php │ │ ├── LocaleInterface.php │ │ ├── Number │ │ │ └── Formatter.php │ │ ├── Pack │ │ │ ├── Factory │ │ │ │ ├── LocalizationPackFactory.php │ │ │ │ └── LocalizationPackFactoryInterface.php │ │ │ ├── Import │ │ │ │ ├── LocalizationPackImportConfig.php │ │ │ │ ├── LocalizationPackImportConfigInterface.php │ │ │ │ ├── LocalizationPackImporter.php │ │ │ │ └── LocalizationPackImporterInterface.php │ │ │ └── Loader │ │ │ │ ├── AbstractLocalizationPackLoader.php │ │ │ │ ├── LocalLocalizationPackLoader.php │ │ │ │ ├── LocalizationPackLoaderInterface.php │ │ │ │ └── RemoteLocalizationPackLoader.php │ │ ├── RTL │ │ │ ├── Exception │ │ │ │ └── GenerationException.php │ │ │ ├── Processor.php │ │ │ ├── StyleSheetProcessorFactory.php │ │ │ ├── StyleSheetProcessorFactoryInterface.php │ │ │ └── StylesheetGenerator.php │ │ └── Specification │ │ │ ├── Factory.php │ │ │ ├── Number.php │ │ │ ├── NumberCollection.php │ │ │ ├── NumberInterface.php │ │ │ ├── NumberSymbolList.php │ │ │ ├── Percentage.php │ │ │ └── Price.php │ ├── MailTemplate │ │ ├── FolderThemeCatalog.php │ │ ├── FolderThemeScanner.php │ │ ├── Layout │ │ │ ├── Layout.php │ │ │ ├── LayoutCollection.php │ │ │ ├── LayoutCollectionInterface.php │ │ │ ├── LayoutInterface.php │ │ │ ├── LayoutVariablesBuilder.php │ │ │ └── LayoutVariablesBuilderInterface.php │ │ ├── MailTemplateGenerator.php │ │ ├── MailTemplateInterface.php │ │ ├── MailTemplateRendererInterface.php │ │ ├── MailThemeConfiguration.php │ │ ├── Theme.php │ │ ├── ThemeCatalogInterface.php │ │ ├── ThemeCollection.php │ │ ├── ThemeCollectionInterface.php │ │ ├── ThemeInterface.php │ │ └── Transformation │ │ │ ├── AbstractTransformation.php │ │ │ ├── CSSInlineTransformation.php │ │ │ ├── HTMLToTextTransformation.php │ │ │ ├── MailVariablesTransformation.php │ │ │ ├── TransformationCollection.php │ │ │ ├── TransformationCollectionInterface.php │ │ │ └── TransformationInterface.php │ ├── MerchandiseReturn │ │ └── Configuration │ │ │ └── MerchandiseReturnOptionsConfiguration.php │ ├── Meta │ │ └── MetaDataProviderInterface.php │ ├── Module │ │ ├── Configuration │ │ │ ├── PaymentRestrictionsConfigurator.php │ │ │ └── PaymentRestrictionsConfiguratorInterface.php │ │ ├── DataProvider │ │ │ ├── PaymentModuleListProviderInterface.php │ │ │ └── TabModuleListProviderInterface.php │ │ ├── Exception │ │ │ ├── ModuleErrorException.php │ │ │ └── ModuleErrorInterface.php │ │ ├── HookConfigurator.php │ │ ├── HookRepository.php │ │ ├── ModuleInterface.php │ │ └── WidgetInterface.php │ ├── Multistore │ │ ├── MultistoreConfig.php │ │ └── MultistoreContextCheckerInterface.php │ ├── Order │ │ ├── InvoiceInterface.php │ │ ├── OrderInvoiceDataProviderInterface.php │ │ ├── OrderSiblingProviderInterface.php │ │ └── OrderStateDataProviderInterface.php │ ├── PDF │ │ ├── Exception │ │ │ ├── MissingDataException.php │ │ │ └── PdfException.php │ │ ├── PDFGeneratorInterface.php │ │ └── PDFTemplateTypeProviderInterface.php │ ├── Payment │ │ ├── PaymentModulePreferencesConfiguration.php │ │ ├── PaymentOption.php │ │ └── PaymentOptionFormDecorator.php │ ├── Product │ │ ├── ProductAdminDrawer.php │ │ ├── ProductCsvExporter.php │ │ ├── ProductExporterInterface.php │ │ ├── ProductExtraContent.php │ │ ├── ProductExtraContentFinder.php │ │ ├── ProductInterface.php │ │ ├── ProductListingPresenter.php │ │ ├── ProductPresentationSettings.php │ │ ├── ProductPresenter.php │ │ └── Search │ │ │ ├── Exception │ │ │ └── InvalidSortOrderDirectionException.php │ │ │ ├── Facet.php │ │ │ ├── FacetCollection.php │ │ │ ├── FacetsRendererInterface.php │ │ │ ├── Filter.php │ │ │ ├── Pagination.php │ │ │ ├── ProductSearchContext.php │ │ │ ├── ProductSearchProviderInterface.php │ │ │ ├── ProductSearchQuery.php │ │ │ ├── ProductSearchResult.php │ │ │ ├── SortOrder.php │ │ │ ├── SortOrderFactory.php │ │ │ ├── SortOrdersCollection.php │ │ │ └── URLFragmentSerializer.php │ ├── Proxy │ │ └── CachedFileFinderProxy.php │ ├── Repository │ │ └── RepositoryInterface.php │ ├── Routing │ │ ├── EntityLinkBuilderFactory.php │ │ ├── EntityLinkBuilderInterface.php │ │ └── Exception │ │ │ └── BuilderNotFoundException.php │ ├── Search │ │ ├── Builder │ │ │ ├── AbstractFiltersBuilder.php │ │ │ ├── AbstractRepositoryFiltersBuilder.php │ │ │ ├── ChainedFiltersBuilder.php │ │ │ ├── ClassFiltersBuilder.php │ │ │ ├── EventFiltersBuilder.php │ │ │ ├── FiltersBuilderCollection.php │ │ │ ├── FiltersBuilderInterface.php │ │ │ ├── PersistFiltersBuilder.php │ │ │ ├── RepositoryFiltersBuilder.php │ │ │ └── RequestFiltersBuilder.php │ │ ├── ControllerAction.php │ │ ├── Filters.php │ │ ├── Filters │ │ │ ├── AddressFilters.php │ │ │ ├── AttachmentFilters.php │ │ │ ├── AttributeFilters.php │ │ │ ├── AttributeGroupFilters.php │ │ │ ├── BackupFilters.php │ │ │ ├── CatalogPriceRuleFilters.php │ │ │ ├── CategoryFilters.php │ │ │ ├── CmsPageCategoryFilters.php │ │ │ ├── CmsPageFilters.php │ │ │ ├── ContactFilters.php │ │ │ ├── CreditSlipFilters.php │ │ │ ├── CurrencyFilters.php │ │ │ ├── CustomerFilters.php │ │ │ ├── EmailLogsFilter.php │ │ │ ├── EmployeeFilters.php │ │ │ ├── LanguageFilters.php │ │ │ ├── LogsFilters.php │ │ │ ├── ManufacturerAddressFilters.php │ │ │ ├── ManufacturerFilters.php │ │ │ ├── MerchandiseReturnFilters.php │ │ │ ├── MetaFilters.php │ │ │ ├── Monitoring │ │ │ │ ├── DisabledProductFilters.php │ │ │ │ ├── EmptyCategoryFilters.php │ │ │ │ ├── NoQtyProductWithCombinationFilters.php │ │ │ │ ├── NoQtyProductWithoutCombinationFilters.php │ │ │ │ ├── ProductWithoutDescriptionFilters.php │ │ │ │ ├── ProductWithoutImageFilters.php │ │ │ │ └── ProductWithoutPriceFilters.php │ │ │ ├── OrderFilters.php │ │ │ ├── OrderMessageFilters.php │ │ │ ├── ProfileFilters.php │ │ │ ├── RequestSqlFilters.php │ │ │ ├── SupplierFilters.php │ │ │ ├── TaxFilters.php │ │ │ ├── TaxRulesGroupFilters.php │ │ │ └── WebserviceKeyFilters.php │ │ ├── SearchParameters.php │ │ └── SearchParametersInterface.php │ ├── Security │ │ ├── FolderGuardInterface.php │ │ └── HtaccessFolderGuard.php │ ├── Session │ │ └── SessionInterface.php │ ├── Shop │ │ ├── LogoUploader.php │ │ ├── ShopContextInterface.php │ │ └── Url │ │ │ └── UrlProviderInterface.php │ ├── SqlManager │ │ ├── Configuration │ │ │ └── SqlRequestConfiguration.php │ │ └── Exporter │ │ │ ├── SqlRequestExporter.php │ │ │ └── SqlRequestExporterInterface.php │ ├── Stock │ │ └── StockManager.php │ ├── String │ │ └── CharacterCleaner.php │ ├── Support │ │ └── ContactRepositoryInterface.php │ ├── Tax │ │ ├── Ecotax │ │ │ └── ProductEcotaxResetterInterface.php │ │ └── TaxOptionsConfiguration.php │ ├── Team │ │ └── Employee │ │ │ └── Configuration │ │ │ ├── EmployeeOptionsConfiguration.php │ │ │ ├── OptionsChecker.php │ │ │ └── OptionsCheckerInterface.php │ ├── Translation │ │ └── Locale │ │ │ └── Converter.php │ ├── Util │ │ ├── ArabicToLatinDigitConverter.php │ │ ├── BoolParser.php │ │ ├── ColorBrightnessCalculator.php │ │ ├── DateTime │ │ │ ├── DateTime.php │ │ │ └── TimeDefinition.php │ │ ├── File │ │ │ ├── FileSizeConverter.php │ │ │ └── YamlParser.php │ │ ├── HelperCard │ │ │ ├── DocumentationLinkProvider.php │ │ │ ├── DocumentationLinkProviderInterface.php │ │ │ └── HelperCardDocumentationDoesNotExistException.php │ │ ├── InternationalizedDomainNameConverter.php │ │ ├── String │ │ │ ├── StringModifier.php │ │ │ ├── StringModifierInterface.php │ │ │ ├── StringValidator.php │ │ │ └── StringValidatorInterface.php │ │ └── Url │ │ │ ├── BackUrlProvider.php │ │ │ ├── UrlFileChecker.php │ │ │ └── UrlFileCheckerInterface.php │ ├── Validation │ │ ├── Validator.php │ │ └── ValidatorInterface.php │ └── Webservice │ │ ├── ServerRequirementsChecker.php │ │ └── ServerRequirementsCheckerInterface.php └── PrestaShopBundle │ ├── Api │ ├── QueryParamsCollection.php │ ├── QueryStockMovementParamsCollection.php │ ├── QueryStockParamsCollection.php │ ├── QueryTranslationParamsCollection.php │ └── Stock │ │ ├── Movement.php │ │ └── MovementsCollection.php │ ├── Cache │ ├── CacheWarmer.php │ ├── Factory │ │ └── CacheSubscriberFactory.php │ ├── LocalizationWarmer.php │ └── ModuleTemplateCacheWarmer.php │ ├── Command │ ├── AppendConfigurationFileHooksListCommand.php │ ├── AppendHooksListForSqlUpgradeFileCommand.php │ ├── CheckTranslationDuplicatesCommand.php │ ├── ExportThemeCommand.php │ ├── GenerateMailTemplatesCommand.php │ ├── LegacyLinkLinterCommand.php │ ├── ListCommandsAndQueriesCommand.php │ ├── ModuleCommand.php │ ├── NamingConventionLinterCommand.php │ ├── SecurityAnnotationLinterCommand.php │ ├── ThemeEnablerCommand.php │ ├── UpdateEUTaxruleGroupsCommand.php │ ├── UpdateLicensesCommand.php │ └── UpdateSchemaCommand.php │ ├── Component │ └── CsvResponse.php │ ├── Controller │ ├── Admin │ │ ├── AddonsController.php │ │ ├── AttachementProductController.php │ │ ├── AttributeController.php │ │ ├── CategoryController.php │ │ ├── CombinationController.php │ │ ├── CommonController.php │ │ ├── Configure │ │ │ ├── AdvancedParameters │ │ │ │ ├── AdministrationController.php │ │ │ │ ├── BackupController.php │ │ │ │ ├── EmailController.php │ │ │ │ ├── EmployeeController.php │ │ │ │ ├── ImportController.php │ │ │ │ ├── ImportDataConfigurationController.php │ │ │ │ ├── LogsController.php │ │ │ │ ├── MemcacheServerController.php │ │ │ │ ├── PerformanceController.php │ │ │ │ ├── ProfileController.php │ │ │ │ ├── SqlManagerController.php │ │ │ │ ├── SystemInformationController.php │ │ │ │ └── WebserviceController.php │ │ │ ├── ShopParameters │ │ │ │ ├── ContactsController.php │ │ │ │ ├── CustomerPreferencesController.php │ │ │ │ ├── MaintenanceController.php │ │ │ │ ├── MetaController.php │ │ │ │ ├── OrderPreferencesController.php │ │ │ │ ├── PreferencesController.php │ │ │ │ └── ProductPreferencesController.php │ │ │ └── ShowcaseCardController.php │ │ ├── ErrorController.php │ │ ├── FeatureController.php │ │ ├── FrameworkBundleAdminController.php │ │ ├── Improve │ │ │ ├── Design │ │ │ │ ├── CmsPageController.php │ │ │ │ ├── MailThemeController.php │ │ │ │ ├── PositionsController.php │ │ │ │ ├── ThemeCatalogController.php │ │ │ │ └── ThemeController.php │ │ │ ├── International │ │ │ │ ├── CurrencyController.php │ │ │ │ ├── GeolocationController.php │ │ │ │ ├── LanguageController.php │ │ │ │ ├── LocalizationController.php │ │ │ │ ├── StateController.php │ │ │ │ ├── TaxController.php │ │ │ │ └── TaxRulesGroupController.php │ │ │ ├── ModuleController.php │ │ │ ├── Modules │ │ │ │ ├── AddonsStoreController.php │ │ │ │ ├── AlertsController.php │ │ │ │ ├── ModuleAbstractController.php │ │ │ │ └── UpdatesController.php │ │ │ ├── Payment │ │ │ │ ├── PaymentMethodsController.php │ │ │ │ └── PaymentPreferencesController.php │ │ │ └── Shipping │ │ │ │ └── PreferencesController.php │ │ ├── ProductController.php │ │ ├── ProductImageController.php │ │ ├── SecurityController.php │ │ ├── Sell │ │ │ ├── Address │ │ │ │ └── AddressController.php │ │ │ ├── Catalog │ │ │ │ ├── AttachmentController.php │ │ │ │ ├── AttributeController.php │ │ │ │ ├── AttributeGroupController.php │ │ │ │ ├── CartRuleController.php │ │ │ │ ├── CatalogPriceRuleController.php │ │ │ │ ├── CategoryController.php │ │ │ │ ├── FeatureController.php │ │ │ │ ├── ManufacturerController.php │ │ │ │ ├── MonitoringController.php │ │ │ │ └── SupplierController.php │ │ │ ├── Customer │ │ │ │ └── CustomerController.php │ │ │ ├── CustomerService │ │ │ │ ├── CustomerThreadController.php │ │ │ │ ├── MerchandiseReturnController.php │ │ │ │ └── OrderMessageController.php │ │ │ └── Order │ │ │ │ ├── ActionsBarButton.php │ │ │ │ ├── ActionsBarButtonInterface.php │ │ │ │ ├── ActionsBarButtonsCollection.php │ │ │ │ ├── CartController.php │ │ │ │ ├── CreditSlipController.php │ │ │ │ ├── DeliveryController.php │ │ │ │ ├── InvoicesController.php │ │ │ │ └── OrderController.php │ │ ├── SpecificPriceController.php │ │ ├── StockController.php │ │ ├── SupplierController.php │ │ ├── TranslationsController.php │ │ ├── VirtualProductController.php │ │ └── WarehouseController.php │ ├── Api │ │ ├── ApiController.php │ │ ├── AttributeController.php │ │ ├── CategoryController.php │ │ ├── FeatureController.php │ │ ├── I18nController.php │ │ ├── Improve │ │ │ └── Design │ │ │ │ └── PositionsController.php │ │ ├── ManufacturerController.php │ │ ├── Readme.md │ │ ├── StockController.php │ │ ├── StockMovementController.php │ │ ├── SupplierController.php │ │ └── TranslationController.php │ └── ArgumentResolver │ │ ├── FiltersBuilderResolver.php │ │ └── SearchParametersResolver.php │ ├── DataCollector │ ├── CommandsAndQueriesDataCollector.php │ ├── HookDataCollector.php │ └── HookRegistry.php │ ├── DependencyInjection │ ├── AddOnsConfiguration.php │ ├── Compiler │ │ ├── CommandAndQueryCollectorPass.php │ │ ├── ContainerInjectionPass.php │ │ ├── DynamicRolePass.php │ │ ├── GridDefinitionServiceIdsCollectorPass.php │ │ ├── IdentifiableObjectFormTypesCollectorPass.php │ │ ├── LoadServicesFromModulesPass.php │ │ ├── ModulesDoctrineCompilerPass.php │ │ ├── OptionsFormHookNameCollectorPass.php │ │ ├── OverrideTranslatorServiceCompilerPass.php │ │ ├── OverrideTwigServiceCompilerPass.php │ │ ├── PopulateTranslationProvidersPass.php │ │ ├── RemoveXmlCompiledContainerPass.php │ │ └── RouterPass.php │ ├── Config │ │ └── ConfigYamlLoader.php │ └── PrestaShopExtension.php │ ├── Entity │ ├── AdminFilter.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── AttributeGroupLang.php │ ├── AttributeLang.php │ ├── Lang.php │ ├── ModuleHistory.php │ ├── ProductDownload.php │ ├── ProductIdentity.php │ ├── Repository │ │ ├── AdminFilterRepository.php │ │ ├── AttributeGroupLangRepository.php │ │ ├── AttributeGroupRepository.php │ │ ├── AttributeLangRepository.php │ │ ├── AttributeRepository.php │ │ ├── CategoryRepository.php │ │ ├── FeatureAttributeRepository.php │ │ ├── ImportMatchRepository.php │ │ ├── LangRepository.php │ │ ├── LogRepository.php │ │ ├── ManufacturerRepository.php │ │ ├── ModuleRepository.php │ │ ├── NormalizeFieldTrait.php │ │ ├── OrderInvoiceRepository.php │ │ ├── RequestSqlRepository.php │ │ ├── ShopGroupRepository.php │ │ ├── ShopRepository.php │ │ ├── StockManagementRepository.php │ │ ├── StockMovementRepository.php │ │ ├── StockRepository.php │ │ ├── SupplierRepository.php │ │ ├── TabLangRepository.php │ │ ├── TabRepository.php │ │ ├── TimezoneRepository.php │ │ └── TranslationRepository.php │ ├── Shop.php │ ├── ShopGroup.php │ ├── StockMvt.php │ ├── Tab.php │ ├── TabLang.php │ └── Translation.php │ ├── Event │ ├── Dispatcher │ │ └── NullDispatcher.php │ ├── FilterSearchCriteriaEvent.php │ ├── ModuleManagementEvent.php │ └── ModuleZipManagementEvent.php │ ├── EventListener │ ├── AccessDeniedListener.php │ ├── ActionDispatcherLegacyHooksSubscriber.php │ ├── BackUrlRedirectResponseListener.php │ ├── DemoModeEnabledListener.php │ ├── FilterCategorySearchCriteriaListener.php │ ├── FilterCmsPageCategorySearchCriteriaListener.php │ ├── LegacyParametersListener.php │ ├── LegacyUrlListener.php │ ├── ModuleActivatedListener.php │ ├── ModuleGuardListener.php │ ├── MultishopCommandListener.php │ ├── TokenizedUrlsListener.php │ └── UserLocaleListener.php │ ├── Exception │ ├── FileUploadException.php │ ├── HookModuleNotFoundException.php │ ├── InvalidLanguageException.php │ ├── InvalidModuleException.php │ ├── InvalidPaginationParamsException.php │ ├── NotImplementedException.php │ ├── ProductNotFoundException.php │ ├── ServiceDefinitionException.php │ └── UpdateProductException.php │ ├── Form │ ├── Admin │ │ ├── AdvancedParameters │ │ │ └── Performance │ │ │ │ ├── CachingType.php │ │ │ │ ├── CombineCompressCacheType.php │ │ │ │ ├── DebugModeType.php │ │ │ │ ├── MediaServersType.php │ │ │ │ ├── MemcacheServerType.php │ │ │ │ ├── OptionalFeaturesType.php │ │ │ │ ├── PerformanceFormDataProvider.php │ │ │ │ ├── PerformanceFormHandler.php │ │ │ │ └── SmartyType.php │ │ ├── Catalog │ │ │ └── Category │ │ │ │ ├── AbstractCategoryType.php │ │ │ │ ├── CategoryType.php │ │ │ │ └── RootCategoryType.php │ │ ├── Category │ │ │ └── SimpleCategory.php │ │ ├── Configure │ │ │ ├── AdvancedParameters │ │ │ │ ├── Administration │ │ │ │ │ ├── FormDataProvider.php │ │ │ │ │ ├── GeneralType.php │ │ │ │ │ ├── NotificationsType.php │ │ │ │ │ └── UploadQuotaType.php │ │ │ │ ├── Backup │ │ │ │ │ ├── BackupDataProvider.php │ │ │ │ │ └── BackupOptionsType.php │ │ │ │ ├── Email │ │ │ │ │ ├── EmailConfigurationFormDataProvider.php │ │ │ │ │ ├── EmailConfigurationType.php │ │ │ │ │ ├── SmtpConfigurationType.php │ │ │ │ │ └── TestEmailSendingType.php │ │ │ │ ├── Employee │ │ │ │ │ ├── EmployeeOptionsFormDataProvider.php │ │ │ │ │ ├── EmployeeOptionsType.php │ │ │ │ │ └── EmployeeType.php │ │ │ │ ├── Import │ │ │ │ │ ├── ImportDataConfigurationFormDataProvider.php │ │ │ │ │ ├── ImportDataConfigurationType.php │ │ │ │ │ ├── ImportFormDataProvider.php │ │ │ │ │ ├── ImportFormDataProviderInterface.php │ │ │ │ │ ├── ImportFormHandler.php │ │ │ │ │ ├── ImportFormHandlerInterface.php │ │ │ │ │ └── ImportType.php │ │ │ │ ├── Logs │ │ │ │ │ ├── LogsByEmailType.php │ │ │ │ │ └── LogsFormDataProvider.php │ │ │ │ ├── Profile │ │ │ │ │ └── ProfileType.php │ │ │ │ ├── RequestSql │ │ │ │ │ ├── SqlRequestFormDataProvider.php │ │ │ │ │ ├── SqlRequestFormHandler.php │ │ │ │ │ ├── SqlRequestSettingsFormDataProvider.php │ │ │ │ │ ├── SqlRequestSettingsType.php │ │ │ │ │ └── SqlRequestType.php │ │ │ │ └── Webservice │ │ │ │ │ ├── WebserviceConfigurationType.php │ │ │ │ │ ├── WebserviceFormDataProvider.php │ │ │ │ │ └── WebserviceKeyType.php │ │ │ └── ShopParameters │ │ │ │ ├── Contact │ │ │ │ └── ContactType.php │ │ │ │ ├── CustomerPreferences │ │ │ │ ├── CustomerPreferencesDataProvider.php │ │ │ │ ├── CustomerPreferencesFormHandler.php │ │ │ │ └── GeneralType.php │ │ │ │ ├── General │ │ │ │ ├── MaintenanceFormDataProvider.php │ │ │ │ ├── MaintenanceType.php │ │ │ │ ├── PreferencesFormDataProvider.php │ │ │ │ ├── PreferencesFormHandler.php │ │ │ │ └── PreferencesType.php │ │ │ │ ├── OrderPreferences │ │ │ │ ├── GeneralType.php │ │ │ │ ├── GiftOptionsType.php │ │ │ │ └── OrderPreferencesFormDataProvider.php │ │ │ │ ├── ProductPreferences │ │ │ │ ├── GeneralType.php │ │ │ │ ├── PageType.php │ │ │ │ ├── PaginationType.php │ │ │ │ ├── ProductPreferencesFormDataProvider.php │ │ │ │ ├── ProductPreferencesFormHandler.php │ │ │ │ └── StockType.php │ │ │ │ └── TrafficSeo │ │ │ │ └── Meta │ │ │ │ ├── MetaSettingsFormDataProvider.php │ │ │ │ ├── MetaType.php │ │ │ │ ├── SEOOptionsType.php │ │ │ │ ├── SetUpUrlType.php │ │ │ │ ├── ShopUrlType.php │ │ │ │ └── UrlSchemaType.php │ │ ├── CustomerService │ │ │ └── CustomerThread │ │ │ │ └── ForwardCustomerThreadType.php │ │ ├── Extension │ │ │ ├── CommaTransformerExtension.php │ │ │ ├── HelpTextExtension.php │ │ │ └── RowAttributesExtension.php │ │ ├── Feature │ │ │ └── ProductFeature.php │ │ ├── Improve │ │ │ ├── Design │ │ │ │ ├── MailTheme │ │ │ │ │ ├── GenerateMailsType.php │ │ │ │ │ ├── MailThemeConfigurationType.php │ │ │ │ │ ├── MailThemeFormDataProvider.php │ │ │ │ │ └── TranslateMailsBodyType.php │ │ │ │ ├── Pages │ │ │ │ │ ├── CmsPageCategoryType.php │ │ │ │ │ └── CmsPageType.php │ │ │ │ └── Theme │ │ │ │ │ ├── AdaptThemeToRTLLanguagesType.php │ │ │ │ │ ├── ImportThemeType.php │ │ │ │ │ ├── PageLayoutCustomizationFormFactory.php │ │ │ │ │ ├── PageLayoutCustomizationFormFactoryInterface.php │ │ │ │ │ ├── PageLayoutsCustomizationType.php │ │ │ │ │ ├── ShopLogosFormDataProvider.php │ │ │ │ │ └── ShopLogosType.php │ │ │ ├── International │ │ │ │ ├── Currencies │ │ │ │ │ ├── CurrencyExchangeRateType.php │ │ │ │ │ ├── CurrencyFormDataProvider.php │ │ │ │ │ └── CurrencyType.php │ │ │ │ ├── Geolocation │ │ │ │ │ ├── GeolocationByIpAddressType.php │ │ │ │ │ ├── GeolocationFormDataProvider.php │ │ │ │ │ ├── GeolocationIpAddressWhitelistType.php │ │ │ │ │ └── GeolocationOptionsType.php │ │ │ │ ├── Language │ │ │ │ │ └── LanguageType.php │ │ │ │ ├── Localization │ │ │ │ │ ├── AdvancedConfigurationType.php │ │ │ │ │ ├── ImportLocalizationPackType.php │ │ │ │ │ ├── LocalUnitsType.php │ │ │ │ │ ├── LocalizationConfigurationType.php │ │ │ │ │ └── LocalizationFormDataProvider.php │ │ │ │ ├── Tax │ │ │ │ │ ├── TaxOptionsFormDataProvider.php │ │ │ │ │ ├── TaxOptionsType.php │ │ │ │ │ └── TaxType.php │ │ │ │ └── Translations │ │ │ │ │ ├── AddUpdateLanguageType.php │ │ │ │ │ ├── CopyLanguageType.php │ │ │ │ │ ├── ExportThemeLanguageType.php │ │ │ │ │ ├── ModifyTranslationsType.php │ │ │ │ │ └── TranslationsSettingsFormHandler.php │ │ │ ├── Payment │ │ │ │ └── Preferences │ │ │ │ │ ├── PaymentModulePreferencesType.php │ │ │ │ │ └── PaymentPreferencesFormDataProvider.php │ │ │ └── Shipping │ │ │ │ └── Preferences │ │ │ │ ├── CarrierOptionsType.php │ │ │ │ ├── HandlingType.php │ │ │ │ └── PreferencesFormDataProvider.php │ │ ├── Product │ │ │ ├── ProductAttachement.php │ │ │ ├── ProductCategories.php │ │ │ ├── ProductCombination.php │ │ │ ├── ProductCombinationBulk.php │ │ │ ├── ProductCustomField.php │ │ │ ├── ProductInformation.php │ │ │ ├── ProductOptions.php │ │ │ ├── ProductPrice.php │ │ │ ├── ProductQuantity.php │ │ │ ├── ProductSeo.php │ │ │ ├── ProductShipping.php │ │ │ ├── ProductSpecificPrice.php │ │ │ ├── ProductSupplierCombination.php │ │ │ ├── ProductVirtual.php │ │ │ └── ProductWarehouseCombination.php │ │ ├── Sell │ │ │ ├── Address │ │ │ │ ├── CustomerAddressType.php │ │ │ │ ├── ManufacturerAddressType.php │ │ │ │ └── RequiredFieldsAddressType.php │ │ │ ├── Attachment │ │ │ │ └── AttachmentType.php │ │ │ ├── Catalog │ │ │ │ └── FeatureType.php │ │ │ ├── CatalogPriceRule │ │ │ │ └── CatalogPriceRuleType.php │ │ │ ├── Category │ │ │ │ └── DeleteCategoriesType.php │ │ │ ├── Customer │ │ │ │ ├── CustomerType.php │ │ │ │ ├── DeleteCustomersType.php │ │ │ │ ├── PrivateNoteType.php │ │ │ │ ├── RequiredFieldsType.php │ │ │ │ └── TransferGuestAccountType.php │ │ │ ├── CustomerService │ │ │ │ ├── MerchandiseReturn │ │ │ │ │ ├── MerchandiseReturnOptionsFormDataProvider.php │ │ │ │ │ └── MerchandiseReturnOptionsType.php │ │ │ │ ├── OrderMessageType.php │ │ │ │ └── ReplyToCustomerThreadType.php │ │ │ ├── Manufacturer │ │ │ │ └── ManufacturerType.php │ │ │ ├── Order │ │ │ │ ├── AddOrderCartRuleType.php │ │ │ │ ├── AddProductRowType.php │ │ │ │ ├── CancelProductType.php │ │ │ │ ├── CartSummaryType.php │ │ │ │ ├── ChangeOrderAddressType.php │ │ │ │ ├── ChangeOrderCurrencyType.php │ │ │ │ ├── ChangeOrdersStatusType.php │ │ │ │ ├── CreditSlip │ │ │ │ │ ├── CreditSlipOptionsFormDataProvider.php │ │ │ │ │ ├── CreditSlipOptionsType.php │ │ │ │ │ └── GeneratePdfByDateType.php │ │ │ │ ├── Delivery │ │ │ │ │ ├── SlipOptionsFormDataProvider.php │ │ │ │ │ ├── SlipOptionsType.php │ │ │ │ │ ├── SlipPdfFormDataProvider.php │ │ │ │ │ └── SlipPdfType.php │ │ │ │ ├── EditProductRowType.php │ │ │ │ ├── Invoices │ │ │ │ │ ├── GenerateByDateType.php │ │ │ │ │ ├── GenerateByStatusType.php │ │ │ │ │ ├── InvoiceByDateFormHandler.php │ │ │ │ │ ├── InvoiceByStatusFormHandler.php │ │ │ │ │ ├── InvoiceOptionsDataProvider.php │ │ │ │ │ ├── InvoiceOptionsType.php │ │ │ │ │ ├── InvoicesByDateDataProvider.php │ │ │ │ │ └── InvoicesByStatusDataProvider.php │ │ │ │ ├── OrderMessageType.php │ │ │ │ ├── OrderPaymentType.php │ │ │ │ ├── UpdateOrderShippingType.php │ │ │ │ └── UpdateOrderStatusType.php │ │ │ └── Supplier │ │ │ │ └── SupplierType.php │ │ └── Type │ │ │ ├── AddonsConnectType.php │ │ │ ├── CategoryChoiceTreeType.php │ │ │ ├── ChangePasswordType.php │ │ │ ├── ChoiceCategoriesTreeType.php │ │ │ ├── Common │ │ │ └── Team │ │ │ │ └── ProfileChoiceType.php │ │ │ ├── CommonAbstractType.php │ │ │ ├── CountryChoiceType.php │ │ │ ├── CustomContentType.php │ │ │ ├── CustomMoneyType.php │ │ │ ├── DatePickerType.php │ │ │ ├── DateRangeType.php │ │ │ ├── EmailType.php │ │ │ ├── FormattedTextareaType.php │ │ │ ├── GeneratableTextType.php │ │ │ ├── IntegerMinMaxFilterType.php │ │ │ ├── IpAddressType.php │ │ │ ├── Material │ │ │ ├── MaterialChoiceTableType.php │ │ │ ├── MaterialChoiceTreeType.php │ │ │ └── MaterialMultipleChoiceTableType.php │ │ │ ├── MoneyWithSuffixType.php │ │ │ ├── NumberMinMaxFilterType.php │ │ │ ├── ReductionType.php │ │ │ ├── ResizableTextType.php │ │ │ ├── SearchAndResetType.php │ │ │ ├── ShopChoiceTreeType.php │ │ │ ├── ShopRestrictionCheckboxType.php │ │ │ ├── SwitchType.php │ │ │ ├── TextEmptyType.php │ │ │ ├── TextWithLengthCounterType.php │ │ │ ├── TextWithRecommendedLengthType.php │ │ │ ├── TextWithUnitType.php │ │ │ ├── TextareaEmptyType.php │ │ │ ├── TranslatableType.php │ │ │ ├── TranslateTextType.php │ │ │ ├── TranslateType.php │ │ │ ├── TranslatorAwareType.php │ │ │ ├── TypeaheadCustomerCollectionType.php │ │ │ ├── TypeaheadProductCollectionType.php │ │ │ ├── TypeaheadProductPackCollectionType.php │ │ │ └── YesAndNoChoiceType.php │ ├── DataTransformer │ │ ├── ArabicToLatinDigitDataTransformer.php │ │ ├── DefaultLanguageToFilledArrayDataTransformer.php │ │ ├── IDNConverterDataTransformer.php │ │ └── StringArrayToIntegerArrayDataTransformer.php │ ├── Extension │ │ └── DataListExtension.php │ └── Validator │ │ └── Constraints │ │ ├── TinyMceMaxLength.php │ │ └── TinyMceMaxLengthValidator.php │ ├── Install │ ├── AbstractInstall.php │ ├── Database.php │ ├── DatabaseDump.php │ ├── Install.php │ ├── Language.php │ ├── LanguageList.php │ ├── Simplexml.php │ ├── SqlLoader.php │ ├── System.php │ ├── Upgrade.php │ └── XmlLoader.php │ ├── Kernel │ ├── ModuleRepository.php │ └── ModuleRepositoryFactory.php │ ├── Model │ ├── AdminModelAdapter.php │ └── Product │ │ └── AdminModelAdapter.php │ ├── PrestaShopBundle.php │ ├── Resources │ ├── config │ │ ├── doctrine │ │ │ └── .gitignore │ │ ├── routing.yml │ │ ├── routing │ │ │ ├── admin.yml │ │ │ ├── admin │ │ │ │ ├── _common.yml │ │ │ │ ├── _errors.yml │ │ │ │ ├── _security.yml │ │ │ │ ├── configure │ │ │ │ │ ├── _configure.yml │ │ │ │ │ ├── advanced_parameters │ │ │ │ │ │ ├── _advanced_parameters.yml │ │ │ │ │ │ ├── administration.yml │ │ │ │ │ │ ├── backup.yml │ │ │ │ │ │ ├── email.yml │ │ │ │ │ │ ├── employee.yml │ │ │ │ │ │ ├── import.yml │ │ │ │ │ │ ├── logs.yml │ │ │ │ │ │ ├── performance.yml │ │ │ │ │ │ ├── profiles.yml │ │ │ │ │ │ ├── sql_request.yml │ │ │ │ │ │ ├── system_information.yml │ │ │ │ │ │ └── webservice.yml │ │ │ │ │ └── shop_parameters │ │ │ │ │ │ ├── _shop_parameters.yml │ │ │ │ │ │ ├── contacts.yml │ │ │ │ │ │ ├── customer_preferences.yml │ │ │ │ │ │ ├── maintenance.yml │ │ │ │ │ │ ├── meta.yml │ │ │ │ │ │ ├── order_preferences.yml │ │ │ │ │ │ ├── preferences.yml │ │ │ │ │ │ └── product_preferences.yml │ │ │ │ ├── improve │ │ │ │ │ ├── _improve.yml │ │ │ │ │ ├── design │ │ │ │ │ │ ├── _design.yml │ │ │ │ │ │ ├── _mail_theme_deprecated.yml │ │ │ │ │ │ ├── cms_pages.yml │ │ │ │ │ │ ├── mail_theme.yml │ │ │ │ │ │ ├── positions.yml │ │ │ │ │ │ ├── theme.yml │ │ │ │ │ │ └── theme_catalog.yml │ │ │ │ │ ├── international │ │ │ │ │ │ ├── _international.yml │ │ │ │ │ │ ├── currencies.yml │ │ │ │ │ │ ├── geolocation.yml │ │ │ │ │ │ ├── language.yml │ │ │ │ │ │ ├── localization.yml │ │ │ │ │ │ ├── state.yml │ │ │ │ │ │ ├── tax.yml │ │ │ │ │ │ ├── tax_rules_groups.yml │ │ │ │ │ │ └── translations.yml │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── _modules.yml │ │ │ │ │ │ └── addons.yml │ │ │ │ │ ├── payment │ │ │ │ │ │ ├── payment_methods.yml │ │ │ │ │ │ └── preferences.yml │ │ │ │ │ └── shipping │ │ │ │ │ │ └── preferences.yml │ │ │ │ └── sell │ │ │ │ │ ├── _sell.yml │ │ │ │ │ ├── catalog │ │ │ │ │ ├── _catalog.yml │ │ │ │ │ ├── attachment.yml │ │ │ │ │ ├── attribute.yml │ │ │ │ │ ├── attribute_group.yml │ │ │ │ │ ├── cart_rule.yml │ │ │ │ │ ├── catalog_price_rule.yml │ │ │ │ │ ├── categories.yml │ │ │ │ │ ├── features.yml │ │ │ │ │ ├── manufacturer.yml │ │ │ │ │ ├── monitoring.yml │ │ │ │ │ ├── products │ │ │ │ │ │ ├── attributes.yml │ │ │ │ │ │ ├── categories.yml │ │ │ │ │ │ ├── combinations.yml │ │ │ │ │ │ ├── features.yml │ │ │ │ │ │ ├── product.yml │ │ │ │ │ │ ├── products.yml │ │ │ │ │ │ ├── specific_prices.yml │ │ │ │ │ │ ├── suppliers.yml │ │ │ │ │ │ └── warehouses.yml │ │ │ │ │ └── suppliers.yml │ │ │ │ │ ├── customer │ │ │ │ │ ├── _customer.yml │ │ │ │ │ ├── addresses.yml │ │ │ │ │ └── customers.yml │ │ │ │ │ ├── customer_service │ │ │ │ │ ├── _customer_service.yml │ │ │ │ │ ├── customer_threads.yml │ │ │ │ │ ├── merchandise_return.yml │ │ │ │ │ └── order_message.yml │ │ │ │ │ ├── orders │ │ │ │ │ ├── _orders.yml │ │ │ │ │ ├── carts.yml │ │ │ │ │ ├── credit_slips.yml │ │ │ │ │ ├── delivery_slips.yml │ │ │ │ │ ├── invoices.yml │ │ │ │ │ └── orders.yml │ │ │ │ │ └── stocks.yml │ │ │ ├── api.yml │ │ │ └── api │ │ │ │ ├── attributes.yml │ │ │ │ ├── categories.yml │ │ │ │ ├── features.yml │ │ │ │ ├── i18n.yml │ │ │ │ ├── improve │ │ │ │ └── design │ │ │ │ │ └── positions.yml │ │ │ │ ├── manufacturers.yml │ │ │ │ ├── stock_movements.yml │ │ │ │ ├── stocks.yml │ │ │ │ ├── suppliers.yml │ │ │ │ └── translations.yml │ │ ├── services.yml │ │ └── services │ │ │ ├── adapter │ │ │ ├── address.yml │ │ │ ├── admin.yml │ │ │ ├── attachment.yml │ │ │ ├── attribute.yml │ │ │ ├── attribute_group.yml │ │ │ ├── backup.yml │ │ │ ├── cache.yml │ │ │ ├── cart.yml │ │ │ ├── cart_rule.yml │ │ │ ├── catalog_price_rule.yml │ │ │ ├── category.yml │ │ │ ├── cms_page.yml │ │ │ ├── cms_page_category.yml │ │ │ ├── common.yml │ │ │ ├── configuration.yml │ │ │ ├── contact.yml │ │ │ ├── context.yml │ │ │ ├── country.yml │ │ │ ├── credit_slip.yml │ │ │ ├── currency.yml │ │ │ ├── customer.yml │ │ │ ├── customer_message.yml │ │ │ ├── customer_service.yml │ │ │ ├── data_configuration.yml │ │ │ ├── data_provider.yml │ │ │ ├── data_provider_common.yml │ │ │ ├── email.yml │ │ │ ├── employee.yml │ │ │ ├── feature.yml │ │ │ ├── form.yml │ │ │ ├── grid.yml │ │ │ ├── group.yml │ │ │ ├── image.yml │ │ │ ├── import.yml │ │ │ ├── kpi.yml │ │ │ ├── language.yml │ │ │ ├── mail_template.yml │ │ │ ├── manufacturer.yml │ │ │ ├── meta.yml │ │ │ ├── module.yml │ │ │ ├── news.yml │ │ │ ├── notification.yml │ │ │ ├── order.yml │ │ │ ├── order_message.yml │ │ │ ├── pdf.yml │ │ │ ├── pdf │ │ │ │ ├── generator.yml │ │ │ │ └── template_type_provider.yml │ │ │ ├── prestatrust.yml │ │ │ ├── product.yml │ │ │ ├── profile.yml │ │ │ ├── routes.yml │ │ │ ├── services.yml │ │ │ ├── shop.yml │ │ │ ├── shop_feature.yml │ │ │ ├── specific_price.yml │ │ │ ├── sql_manager.yml │ │ │ ├── supplier.yml │ │ │ ├── tax.yml │ │ │ ├── tax_rules_group.yml │ │ │ ├── theme.yml │ │ │ ├── twig.yml │ │ │ └── webservice.yml │ │ │ ├── alias.yml │ │ │ ├── bundle │ │ │ ├── api.yml │ │ │ ├── cache.yml │ │ │ ├── controller.yml │ │ │ ├── data_collector.yml │ │ │ ├── event_listener.yml │ │ │ ├── form.yml │ │ │ ├── form │ │ │ │ ├── form_builder.yml │ │ │ │ ├── form_data_provider.yml │ │ │ │ ├── form_data_transformer.yml │ │ │ │ ├── form_extension.yml │ │ │ │ ├── form_factory.yml │ │ │ │ ├── form_handler.yml │ │ │ │ ├── form_type.yml │ │ │ │ └── form_type │ │ │ │ │ └── webservice.yml │ │ │ ├── grid.yml │ │ │ ├── repository.yml │ │ │ ├── routing.yml │ │ │ ├── security.yml │ │ │ ├── services.yml │ │ │ ├── translation.yml │ │ │ ├── twig.yml │ │ │ └── utils.yml │ │ │ └── core │ │ │ ├── addon.yml │ │ │ ├── attribute_group.yml │ │ │ ├── b2b.yml │ │ │ ├── backup.yml │ │ │ ├── cache.yml │ │ │ ├── circuit_breaker.yml │ │ │ ├── cldr.yml │ │ │ ├── cms_page.yml │ │ │ ├── command_bus.yml │ │ │ ├── common.yml │ │ │ ├── configuration.yml │ │ │ ├── constraint_validator.yml │ │ │ ├── currency.yml │ │ │ ├── domain.yml │ │ │ ├── domain │ │ │ ├── cart.yml │ │ │ ├── country.yml │ │ │ ├── customer_service.yml │ │ │ ├── showcase_card.yml │ │ │ ├── sql_management.yml │ │ │ └── theme.yml │ │ │ ├── employee.yml │ │ │ ├── export.yml │ │ │ ├── file.yml │ │ │ ├── form.yml │ │ │ ├── form │ │ │ ├── choice_provider.yml │ │ │ ├── form_builder.yml │ │ │ ├── form_data_handler.yml │ │ │ ├── form_data_provider.yml │ │ │ └── form_handler.yml │ │ │ ├── foundation.yml │ │ │ ├── geolocation.yml │ │ │ ├── grid.yml │ │ │ ├── grid │ │ │ ├── accessibility_checker.yml │ │ │ ├── doctrine_query_builder.yml │ │ │ ├── grid_data_factory.yml │ │ │ ├── grid_definition_factory.yml │ │ │ ├── grid_factory.yml │ │ │ ├── grid_filter_form_factory.yml │ │ │ └── grid_position_definition_factory.yml │ │ │ ├── hook.yml │ │ │ ├── image.yml │ │ │ ├── import.yml │ │ │ ├── kpi.yml │ │ │ ├── language.yml │ │ │ ├── localization.yml │ │ │ ├── mail_template.yml │ │ │ ├── module.yml │ │ │ ├── search.yml │ │ │ ├── security.yml │ │ │ ├── shop.yml │ │ │ ├── sql_request.yml │ │ │ ├── string.yml │ │ │ ├── translation.yml │ │ │ ├── util.yml │ │ │ ├── util │ │ │ ├── file_size.yml │ │ │ ├── helper_card.yml │ │ │ └── string.yml │ │ │ ├── validation.yml │ │ │ └── webservice.yml │ └── views │ │ └── Admin │ │ ├── Category │ │ └── categories.html.twig │ │ ├── Common │ │ ├── Grid │ │ │ ├── Actions │ │ │ │ ├── Bulk │ │ │ │ │ ├── button.html.twig │ │ │ │ │ ├── delete_categories.html.twig │ │ │ │ │ ├── delete_customers.html.twig │ │ │ │ │ ├── modal_form_submit.html.twig │ │ │ │ │ └── submit.html.twig │ │ │ │ ├── Grid │ │ │ │ │ ├── link.html.twig │ │ │ │ │ ├── simple.html.twig │ │ │ │ │ └── submit.html.twig │ │ │ │ └── Row │ │ │ │ │ ├── delete_category.html.twig │ │ │ │ │ ├── delete_customer.html.twig │ │ │ │ │ ├── link.html.twig │ │ │ │ │ └── submit.html.twig │ │ │ ├── Blocks │ │ │ │ ├── EmptyState │ │ │ │ │ ├── _default.html.twig │ │ │ │ │ ├── attachment.html.twig │ │ │ │ │ ├── credit_slip.html.twig │ │ │ │ │ ├── order.html.twig │ │ │ │ │ └── supplier.html.twig │ │ │ │ ├── Table │ │ │ │ │ ├── empty_row.html.twig │ │ │ │ │ ├── filters_row.html.twig │ │ │ │ │ └── headers_row.html.twig │ │ │ │ ├── bulk_actions.html.twig │ │ │ │ ├── bulk_actions_select_all.html.twig │ │ │ │ ├── grid_actions.html.twig │ │ │ │ ├── pagination.html.twig │ │ │ │ └── table.html.twig │ │ │ ├── Columns │ │ │ │ ├── Content │ │ │ │ │ ├── action.html.twig │ │ │ │ │ ├── attribute_color.html.twig │ │ │ │ │ ├── badge.html.twig │ │ │ │ │ ├── boolean.html.twig │ │ │ │ │ ├── bulk_action.html.twig │ │ │ │ │ ├── category_position.html.twig │ │ │ │ │ ├── choice.html.twig │ │ │ │ │ ├── color.html.twig │ │ │ │ │ ├── currency_name.html.twig │ │ │ │ │ ├── data.html.twig │ │ │ │ │ ├── date_time.html.twig │ │ │ │ │ ├── disableable_link.html.twig │ │ │ │ │ ├── draggable.html.twig │ │ │ │ │ ├── employee_name_with_avatar.html.twig │ │ │ │ │ ├── identifier.html.twig │ │ │ │ │ ├── image.html.twig │ │ │ │ │ ├── link.html.twig │ │ │ │ │ ├── link_group.html.twig │ │ │ │ │ ├── order_price.html.twig │ │ │ │ │ ├── position.html.twig │ │ │ │ │ ├── position_handle.html.twig │ │ │ │ │ ├── preview.html.twig │ │ │ │ │ ├── severity_level.html.twig │ │ │ │ │ └── toggle.html.twig │ │ │ │ └── Header │ │ │ │ │ └── Content │ │ │ │ │ ├── action.html.twig │ │ │ │ │ ├── default.html.twig │ │ │ │ │ └── position_handle.html.twig │ │ │ ├── grid.html.twig │ │ │ └── grid_panel.html.twig │ │ ├── Kpi │ │ │ └── kpi_row.html.twig │ │ ├── _partials │ │ │ ├── _form_field.html.twig │ │ │ └── _sidebar.html.twig │ │ ├── pagination.html.twig │ │ ├── pagination_quicknav.html.twig │ │ └── recommendedModules.html.twig │ │ ├── Configure │ │ ├── AdvancedParameters │ │ │ ├── Backup │ │ │ │ ├── Blocks │ │ │ │ │ ├── backup_form.html.twig │ │ │ │ │ ├── backup_info.html.twig │ │ │ │ │ ├── backup_warning.html.twig │ │ │ │ │ ├── download_file.html.twig │ │ │ │ │ └── options.html.twig │ │ │ │ ├── download_view.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Blocks │ │ │ │ ├── import_available_fields.html.twig │ │ │ │ ├── import_file_history.html.twig │ │ │ │ ├── import_panel.html.twig │ │ │ │ └── import_sample_files.html.twig │ │ │ ├── Email │ │ │ │ ├── Blocks │ │ │ │ │ ├── email_configuration.html.twig │ │ │ │ │ ├── email_logs_grid.html.twig │ │ │ │ │ ├── smtp_configuration.html.twig │ │ │ │ │ └── test_email_sending.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Employee │ │ │ │ ├── Blocks │ │ │ │ │ ├── employee_options.html.twig │ │ │ │ │ ├── form.html.twig │ │ │ │ │ └── showcase_card.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── ImportDataConfiguration │ │ │ │ ├── Blocks │ │ │ │ │ ├── import_data_configuration.html.twig │ │ │ │ │ └── import_modal.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── ImportPage │ │ │ │ └── import.html.twig │ │ │ ├── LogsPage │ │ │ │ ├── Blocks │ │ │ │ │ └── severity_levels.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Profiles │ │ │ │ ├── Blocks │ │ │ │ │ └── form.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── RequestSql │ │ │ │ ├── Blocks │ │ │ │ │ ├── db_tables_panel.html.twig │ │ │ │ │ ├── form.html.twig │ │ │ │ │ └── settings_panel.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ └── view.html.twig │ │ │ ├── Webservice │ │ │ │ ├── Blocks │ │ │ │ │ └── form.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ └── webservice_settings.html.twig │ │ │ ├── administration.html.twig │ │ │ ├── memcache_servers.html.twig │ │ │ ├── performance.html.twig │ │ │ └── system_information.html.twig │ │ └── ShopParameters │ │ │ ├── Blocks │ │ │ ├── customer_preferences_general.html.twig │ │ │ ├── product_preferences_general.html.twig │ │ │ ├── product_preferences_page.html.twig │ │ │ ├── product_preferences_pagination.html.twig │ │ │ └── product_preferences_stock.html.twig │ │ │ ├── Contact │ │ │ └── Contacts │ │ │ │ ├── Blocks │ │ │ │ └── form.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── OrderPreferences │ │ │ ├── Blocks │ │ │ │ ├── order_preferences_general.html.twig │ │ │ │ └── order_preferences_gift_options.html.twig │ │ │ └── order_preferences.html.twig │ │ │ ├── TrafficSeo │ │ │ └── Meta │ │ │ │ ├── Blocks │ │ │ │ ├── domain_name_management.html.twig │ │ │ │ ├── form.html.twig │ │ │ │ ├── keyword.html.twig │ │ │ │ ├── meta_showcase_card.html.twig │ │ │ │ ├── robots_file_generation.html.twig │ │ │ │ ├── seo_options_configuration.html.twig │ │ │ │ ├── set_up_urls_configuration.html.twig │ │ │ │ ├── shop_urls_configuration.html.twig │ │ │ │ └── url_schema_configuration.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── customer_preferences.html.twig │ │ │ ├── maintenance.html.twig │ │ │ ├── preferences.html.twig │ │ │ └── product_preferences.html.twig │ │ ├── Exception │ │ └── error.html.twig │ │ ├── Helpers │ │ ├── bootstrap_popup.html.twig │ │ ├── dropdown_menu.html.twig │ │ ├── range_inputs.html.twig │ │ └── range_slider.html.twig │ │ ├── Improve │ │ ├── Design │ │ │ ├── Cms │ │ │ │ ├── Blocks │ │ │ │ │ ├── breadcrumb.html.twig │ │ │ │ │ ├── category_form.html.twig │ │ │ │ │ ├── form.html.twig │ │ │ │ │ ├── listing_panel_footer.html.twig │ │ │ │ │ ├── seo_preview.html.twig │ │ │ │ │ └── showcase_card.html.twig │ │ │ │ ├── add.html.twig │ │ │ │ ├── create_category.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ ├── edit_category.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── MailTheme │ │ │ │ ├── Blocks │ │ │ │ │ ├── configuration_form.html.twig │ │ │ │ │ ├── generate_mails_form.html.twig │ │ │ │ │ ├── list_mail_theme_layouts.html.twig │ │ │ │ │ ├── list_mail_themes.html.twig │ │ │ │ │ └── translate_mails_body_form.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ └── preview.html.twig │ │ │ ├── Theme │ │ │ │ ├── Blocks │ │ │ │ │ ├── Partials │ │ │ │ │ │ ├── logo_card.html.twig │ │ │ │ │ │ ├── theme_card.html.twig │ │ │ │ │ │ ├── theme_card_container.html.twig │ │ │ │ │ │ └── theme_catalog_card.html.twig │ │ │ │ │ ├── delete_theme_modal.html.twig │ │ │ │ │ ├── layouts_configuration.html.twig │ │ │ │ │ ├── logo_configuration.html.twig │ │ │ │ │ ├── multishop_switch.html.twig │ │ │ │ │ ├── rtl_configuration.html.twig │ │ │ │ │ └── use_theme_modal.html.twig │ │ │ │ ├── customize_page_layouts.html.twig │ │ │ │ ├── import.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── ThemesCatalogPage │ │ │ │ └── addons_store.html.twig │ │ │ └── positions.html.twig │ │ ├── International │ │ │ ├── Currency │ │ │ │ ├── Blocks │ │ │ │ │ ├── exchange_rates.html.twig │ │ │ │ │ └── form.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Geolocation │ │ │ │ ├── Blocks │ │ │ │ │ ├── geolocation_by_ip_address.html.twig │ │ │ │ │ ├── geolocation_ip_address_whitelist.html.twig │ │ │ │ │ └── geolocation_options.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Language │ │ │ │ ├── Blocks │ │ │ │ │ └── form.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Localization │ │ │ │ ├── Blocks │ │ │ │ │ ├── advanced_configuration.html.twig │ │ │ │ │ ├── configuration.html.twig │ │ │ │ │ ├── import_localization_pack_block.html.twig │ │ │ │ │ └── local_units.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Tax │ │ │ │ ├── Blocks │ │ │ │ │ ├── form.html.twig │ │ │ │ │ └── tax_options.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── TaxRulesGroup │ │ │ │ └── index.html.twig │ │ │ └── Translations │ │ │ │ ├── Blocks │ │ │ │ ├── add_update_language.html.twig │ │ │ │ ├── copy_language.html.twig │ │ │ │ ├── export_language.html.twig │ │ │ │ └── modify_translations.html.twig │ │ │ │ └── translations_settings.html.twig │ │ ├── Module │ │ │ └── addons_store.html.twig │ │ ├── Payment │ │ │ ├── PaymentMethods │ │ │ │ ├── Blocks │ │ │ │ │ └── payment_modules_list.html.twig │ │ │ │ └── payment_methods.html.twig │ │ │ └── Preferences │ │ │ │ ├── Blocks │ │ │ │ └── payment_preferences_form_block.html.twig │ │ │ │ └── payment_preferences.html.twig │ │ └── Shipping │ │ │ └── Preferences │ │ │ ├── Blocks │ │ │ ├── shipping_preferences_carrier_options.html.twig │ │ │ └── shipping_preferences_handling.html.twig │ │ │ └── preferences.html.twig │ │ ├── Module │ │ ├── Includes │ │ │ ├── action_button.html.twig │ │ │ ├── action_menu.html.twig │ │ │ ├── card_grid.html.twig │ │ │ ├── card_grid_addons.html.twig │ │ │ ├── card_list.html.twig │ │ │ ├── card_list_addons.html.twig │ │ │ ├── card_manage_installed.html.twig │ │ │ ├── card_notification_configure.html.twig │ │ │ ├── card_notification_update.html.twig │ │ │ ├── categories_card.html.twig │ │ │ ├── categories_grid.html.twig │ │ │ ├── dropdown_bulk.html.twig │ │ │ ├── dropdown_categories.html.twig │ │ │ ├── dropdown_categories_catalog.html.twig │ │ │ ├── dropdown_status.html.twig │ │ │ ├── grid.html.twig │ │ │ ├── grid_loader.html.twig │ │ │ ├── grid_manage_empty.html.twig │ │ │ ├── grid_manage_installed.html.twig │ │ │ ├── grid_manage_recently_used.html.twig │ │ │ ├── grid_notification_configure.html.twig │ │ │ ├── grid_notification_update.html.twig │ │ │ ├── menu_top.html.twig │ │ │ ├── modal_addons_connect.html.twig │ │ │ ├── modal_confirm.html.twig │ │ │ ├── modal_confirm_bulk_action.html.twig │ │ │ ├── modal_confirm_prestatrust.html.twig │ │ │ ├── modal_import.html.twig │ │ │ ├── modal_read_more.html.twig │ │ │ ├── modal_read_more_content.html.twig │ │ │ ├── see_more.html.twig │ │ │ ├── sorting.html.twig │ │ │ └── tab-module-line.html.twig │ │ ├── alerts.html.twig │ │ ├── catalog-refresh.html.twig │ │ ├── catalog.html.twig │ │ ├── common.html.twig │ │ ├── manage.html.twig │ │ ├── tab-modules-list.html.twig │ │ └── updates.html.twig │ │ ├── Product │ │ ├── CatalogPage │ │ │ ├── Blocks │ │ │ │ ├── filters.html.twig │ │ │ │ └── tools.html.twig │ │ │ ├── Forms │ │ │ │ ├── form_edit_dropdown.html.twig │ │ │ │ └── form_products.html.twig │ │ │ ├── Lists │ │ │ │ ├── list.html.twig │ │ │ │ ├── list_quicknav.html.twig │ │ │ │ └── products_table.html.twig │ │ │ ├── catalog.html.twig │ │ │ └── catalog_empty.html.twig │ │ ├── ProductPage │ │ │ ├── Blocks │ │ │ │ ├── footer.html.twig │ │ │ │ ├── header.html.twig │ │ │ │ └── tabs.html.twig │ │ │ ├── Forms │ │ │ │ ├── form_categories.html.twig │ │ │ │ ├── form_combination.html.twig │ │ │ │ ├── form_combination_collection.html.twig │ │ │ │ ├── form_combinations.html.twig │ │ │ │ ├── form_combinations_bulk.html.twig │ │ │ │ ├── form_custom_fields.html.twig │ │ │ │ ├── form_edit_specific_price_modal.html.twig │ │ │ │ ├── form_feature.html.twig │ │ │ │ ├── form_manufacturer.html.twig │ │ │ │ ├── form_related_products.html.twig │ │ │ │ ├── form_seo.html.twig │ │ │ │ ├── form_shipping.html.twig │ │ │ │ ├── form_specific_price.html.twig │ │ │ │ ├── form_supplier_choice.html.twig │ │ │ │ ├── form_supplier_combination.html.twig │ │ │ │ └── form_warehouse_combination.html.twig │ │ │ ├── Panels │ │ │ │ ├── combinations.html.twig │ │ │ │ ├── essentials.html.twig │ │ │ │ ├── options.html.twig │ │ │ │ ├── pricing.html.twig │ │ │ │ └── seo.html.twig │ │ │ ├── disabled_form_alert.html.twig │ │ │ └── product.html.twig │ │ └── Themes │ │ │ └── categories_theme.html.twig │ │ ├── ProductImage │ │ └── form.html.twig │ │ ├── Security │ │ └── compromised.html.twig │ │ ├── Sell │ │ ├── Address │ │ │ ├── Blocks │ │ │ │ ├── form.html.twig │ │ │ │ └── required_fields.html.twig │ │ │ ├── add.html.twig │ │ │ ├── edit.html.twig │ │ │ ├── index.html.twig │ │ │ └── modal_create_success.html.twig │ │ ├── Catalog │ │ │ ├── Attachment │ │ │ │ ├── Blocks │ │ │ │ │ └── form.html.twig │ │ │ │ ├── add.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Attribute │ │ │ │ └── index.html.twig │ │ │ ├── AttributeGroup │ │ │ │ ├── Blocks │ │ │ │ │ └── showcase_card.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── CatalogPriceRule │ │ │ │ ├── Blocks │ │ │ │ │ └── form.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Categories │ │ │ │ ├── Blocks │ │ │ │ │ ├── breadcrumb.html.twig │ │ │ │ │ ├── cover_image.html.twig │ │ │ │ │ ├── delete_block.html.twig │ │ │ │ │ ├── delete_categories_modal.html.twig │ │ │ │ │ ├── form.html.twig │ │ │ │ │ ├── javascripts.html.twig │ │ │ │ │ ├── listing_panel_footer.html.twig │ │ │ │ │ ├── menu_thumbnail_images.html.twig │ │ │ │ │ ├── showcase_card.html.twig │ │ │ │ │ └── thumbnail_image.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── create_root.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ ├── edit_root.html.twig │ │ │ │ └── index.html.twig │ │ │ ├── Features │ │ │ │ ├── Blocks │ │ │ │ │ ├── disabled_feature_warning.html.twig │ │ │ │ │ ├── form.html.twig │ │ │ │ │ └── form_javascripts.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ └── edit.html.twig │ │ │ ├── Manufacturer │ │ │ │ ├── Address │ │ │ │ │ ├── Blocks │ │ │ │ │ │ └── form.html.twig │ │ │ │ │ ├── create.html.twig │ │ │ │ │ └── edit.html.twig │ │ │ │ ├── Blocks │ │ │ │ │ ├── View │ │ │ │ │ │ ├── addresses.html.twig │ │ │ │ │ │ └── products.html.twig │ │ │ │ │ └── form.html.twig │ │ │ │ ├── add.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ ├── logo_image.html.twig │ │ │ │ └── view.html.twig │ │ │ ├── Monitoring │ │ │ │ ├── Blocks │ │ │ │ │ └── showcase_card.html.twig │ │ │ │ └── index.html.twig │ │ │ └── Suppliers │ │ │ │ ├── Blocks │ │ │ │ ├── View │ │ │ │ │ └── products.html.twig │ │ │ │ └── form.html.twig │ │ │ │ ├── add.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ ├── logo_image.html.twig │ │ │ │ └── view.html.twig │ │ ├── Customer │ │ │ ├── Blocks │ │ │ │ ├── Index │ │ │ │ │ └── required_fields.html.twig │ │ │ │ ├── View │ │ │ │ │ ├── addresses.html.twig │ │ │ │ │ ├── bought_products.html.twig │ │ │ │ │ ├── carts.html.twig │ │ │ │ │ ├── discounts.html.twig │ │ │ │ │ ├── groups.html.twig │ │ │ │ │ ├── last_connections.html.twig │ │ │ │ │ ├── messages.html.twig │ │ │ │ │ ├── orders.html.twig │ │ │ │ │ ├── personal_information.html.twig │ │ │ │ │ ├── private_note.html.twig │ │ │ │ │ ├── sent_emails.html.twig │ │ │ │ │ └── viewed_products.html.twig │ │ │ │ ├── delete_modal.html.twig │ │ │ │ ├── form.html.twig │ │ │ │ ├── javascript.html.twig │ │ │ │ └── showcase_card.html.twig │ │ │ ├── create.html.twig │ │ │ ├── edit.html.twig │ │ │ ├── index.html.twig │ │ │ ├── modal_create_success.html.twig │ │ │ └── view.html.twig │ │ ├── CustomerService │ │ │ ├── CustomerThread │ │ │ │ ├── Block │ │ │ │ │ ├── customer_information.html.twig │ │ │ │ │ ├── forward_thread_modal.html.twig │ │ │ │ │ ├── thread_actions.html.twig │ │ │ │ │ ├── thread_messages.html.twig │ │ │ │ │ ├── timeline.html.twig │ │ │ │ │ └── your_answer.html.twig │ │ │ │ └── view.html.twig │ │ │ ├── MerchandiseReturn │ │ │ │ ├── Blocks │ │ │ │ │ └── options.html.twig │ │ │ │ └── index.html.twig │ │ │ └── OrderMessage │ │ │ │ ├── Blocks │ │ │ │ └── form.html.twig │ │ │ │ ├── create.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ └── index.html.twig │ │ └── Order │ │ │ ├── Cart │ │ │ ├── Blocks │ │ │ │ └── View │ │ │ │ │ ├── cart_summary.html.twig │ │ │ │ │ ├── customer_information.html.twig │ │ │ │ │ └── order_information.html.twig │ │ │ └── view.html.twig │ │ │ ├── CreditSlip │ │ │ ├── Blocks │ │ │ │ ├── credit_slip_options.html.twig │ │ │ │ └── pdf_by_date.html.twig │ │ │ └── index.html.twig │ │ │ ├── Delivery │ │ │ └── slip.html.twig │ │ │ ├── Invoices │ │ │ ├── Blocks │ │ │ │ ├── generate_by_date.html.twig │ │ │ │ ├── generate_by_status.html.twig │ │ │ │ └── invoice_options.html.twig │ │ │ └── invoices.html.twig │ │ │ └── Order │ │ │ ├── Blocks │ │ │ ├── Create │ │ │ │ ├── addresses.html.twig │ │ │ │ ├── cart.html.twig │ │ │ │ ├── cart_rules.html.twig │ │ │ │ ├── customer.html.twig │ │ │ │ ├── shipping.html.twig │ │ │ │ └── summary.html.twig │ │ │ ├── View │ │ │ │ ├── Modal │ │ │ │ │ ├── add_order_discount_modal.html.twig │ │ │ │ │ ├── add_product_modal.html.twig │ │ │ │ │ ├── update_customer_address_modal.html.twig │ │ │ │ │ ├── update_product_modal.html.twig │ │ │ │ │ ├── update_shipping_modal.html.twig │ │ │ │ │ ├── view_all_messages_modal.html.twig │ │ │ │ │ └── view_product_pack_modal.html.twig │ │ │ │ ├── add_product_row.html.twig │ │ │ │ ├── customer.html.twig │ │ │ │ ├── details.html.twig │ │ │ │ ├── details_card.html.twig │ │ │ │ ├── discount_list.html.twig │ │ │ │ ├── documents.html.twig │ │ │ │ ├── edit_product_row.html.twig │ │ │ │ ├── extra_order_button_actions.html.twig │ │ │ │ ├── header.html.twig │ │ │ │ ├── history.html.twig │ │ │ │ ├── linked_orders.html.twig │ │ │ │ ├── merchandise_returns.html.twig │ │ │ │ ├── messages.html.twig │ │ │ │ ├── msg_list_item.html.twig │ │ │ │ ├── order_actions.html.twig │ │ │ │ ├── order_navigation.html.twig │ │ │ │ ├── payments.html.twig │ │ │ │ ├── payments_alert.html.twig │ │ │ │ ├── print_order_statistics.html.twig │ │ │ │ ├── print_title.html.twig │ │ │ │ ├── product.html.twig │ │ │ │ ├── product_list.html.twig │ │ │ │ ├── products.html.twig │ │ │ │ ├── shipping.html.twig │ │ │ │ └── sources.html.twig │ │ │ └── change_orders_status_modal.html.twig │ │ │ ├── create.html.twig │ │ │ ├── index.html.twig │ │ │ ├── preview.html.twig │ │ │ └── view.html.twig │ │ ├── Stock │ │ └── overview.html.twig │ │ ├── Translations │ │ └── overview.html.twig │ │ ├── TwigTemplateForm │ │ ├── bootstrap_4_horizontal_layout.html.twig │ │ ├── bootstrap_4_layout.html.twig │ │ ├── form_div_layout.html.twig │ │ ├── form_max_length.html.twig │ │ ├── form_table_layout.html.twig │ │ ├── material.html.twig │ │ ├── prestashop_ui_kit.html.twig │ │ ├── prestashop_ui_kit_base.html.twig │ │ └── typeahead.html.twig │ │ ├── WebProfiler │ │ ├── commands_and_queries.html.twig │ │ ├── config.html.twig │ │ └── hooks_collector.html.twig │ │ ├── layout.html.twig │ │ └── macros.html.twig │ ├── Routing │ ├── Converter │ │ ├── AbstractLegacyRouteProvider.php │ │ ├── CacheKeyGeneratorInterface.php │ │ ├── CacheProvider.php │ │ ├── Exception │ │ │ ├── AlreadyConvertedException.php │ │ │ ├── ArgumentException.php │ │ │ ├── RouteNotFoundException.php │ │ │ └── RoutingException.php │ │ ├── LegacyParametersConverter.php │ │ ├── LegacyRoute.php │ │ ├── LegacyRouteProviderInterface.php │ │ ├── LegacyUrlConverter.php │ │ ├── RouterProvider.php │ │ └── RoutingCacheKeyGenerator.php │ ├── Linter │ │ ├── AdminRouteProvider.php │ │ ├── Exception │ │ │ ├── LinterException.php │ │ │ └── NamingConventionException.php │ │ ├── LegacyLinkLinter.php │ │ ├── NamingConventionLinter.php │ │ ├── RouteLinterInterface.php │ │ └── SecurityAnnotationLinter.php │ └── YamlModuleLoader.php │ ├── Security │ ├── Admin │ │ ├── Employee.php │ │ └── EmployeeProvider.php │ ├── Annotation │ │ ├── AdminSecurity.php │ │ ├── DemoRestricted.php │ │ └── ModuleActivated.php │ ├── Role │ │ └── DynamicRoleHierarchy.php │ └── Voter │ │ └── PageVoter.php │ ├── Service │ ├── Cache │ │ └── Refresh.php │ ├── Command │ │ └── AbstractCommand.php │ ├── DataProvider │ │ ├── Admin │ │ │ ├── AddonsInterface.php │ │ │ ├── CategoriesProvider.php │ │ │ ├── ModuleInterface.php │ │ │ ├── ProductInterface.php │ │ │ └── RecommendedModules.php │ │ ├── Marketplace │ │ │ └── ApiClient.php │ │ ├── StockInterface.php │ │ └── UserProvider.php │ ├── DataUpdater │ │ └── Admin │ │ │ └── ProductInterface.php │ ├── Database │ │ ├── DoctrineNamingStrategy.php │ │ └── Upgrade.php │ ├── Grid │ │ ├── ControllerResponseBuilder.php │ │ └── ResponseBuilder.php │ ├── Hook │ │ ├── HookContentClassInterface.php │ │ ├── HookDispatcher.php │ │ ├── HookEvent.php │ │ ├── HookFinder.php │ │ └── RenderingHookEvent.php │ ├── Log │ │ └── LogHandler.php │ ├── ProductService.php │ ├── Routing │ │ └── Router.php │ ├── TransitionalBehavior │ │ ├── AdminPagePreferenceInterface.php │ │ └── AdminUrlGeneratorFactory.php │ └── TranslationService.php │ ├── Translation │ ├── Api │ │ ├── AbstractApi.php │ │ ├── InternationalApi.php │ │ └── StockApi.php │ ├── Constraints │ │ ├── PassVsprintf.php │ │ └── PassVsprintfValidator.php │ ├── DataCollectorTranslator.php │ ├── DomainNormalizer.php │ ├── Exception │ │ ├── InvalidLegacyTranslationKeyException.php │ │ ├── LegacyFileFormattingException.php │ │ ├── UnsupportedLocaleException.php │ │ └── UnsupportedModuleException.php │ ├── Exporter │ │ └── ThemeExporter.php │ ├── Extractor │ │ ├── LegacyModuleExtractor.php │ │ ├── LegacyModuleExtractorInterface.php │ │ └── ThemeExtractor.php │ ├── Factory │ │ ├── ProviderNotFoundException.php │ │ ├── ThemeTranslationsFactory.php │ │ ├── TranslationsFactory.php │ │ └── TranslationsFactoryInterface.php │ ├── Loader │ │ ├── DatabaseTranslationLoader.php │ │ ├── LegacyFileLoader.php │ │ ├── LegacyFileReader.php │ │ ├── LegacyTranslationKey.php │ │ └── SqlTranslationLoader.php │ ├── PrestaShopTranslatorTrait.php │ ├── Provider │ │ ├── AbstractProvider.php │ │ ├── BackOfficeProvider.php │ │ ├── DatabaseCatalogueInterface.php │ │ ├── ExternalModuleLegacySystemProvider.php │ │ ├── FrontOfficeProvider.php │ │ ├── MailsBodyProvider.php │ │ ├── MailsProvider.php │ │ ├── ModuleProvider.php │ │ ├── ModulesProvider.php │ │ ├── OthersProvider.php │ │ ├── ProviderInterface.php │ │ ├── SearchProvider.php │ │ ├── SearchProviderInterface.php │ │ ├── ThemeProvider.php │ │ ├── TranslationFinder.php │ │ ├── TranslationFinderTrait.php │ │ ├── UseDefaultCatalogueInterface.php │ │ ├── UseModuleInterface.php │ │ └── XliffCatalogueInterface.php │ ├── Translator.php │ ├── TranslatorAwareTrait.php │ ├── TranslatorComponent.php │ ├── TranslatorLanguageLoader.php │ ├── TranslatorLanguageTrait.php │ └── View │ │ └── TreeBuilder.php │ ├── Twig │ ├── AdminExtension.php │ ├── ContextIsoCodeProviderExtension.php │ ├── DataFormatterExtension.php │ ├── Extension │ │ ├── ColorBrightnessCalculatorExtension.php │ │ ├── DocumentationLinkExtension.php │ │ ├── GridExtension.php │ │ ├── JsRouterMetadataExtension.php │ │ ├── LocalizationExtension.php │ │ ├── NumberExtension.php │ │ └── PathWithBackUrlExtension.php │ ├── HookExtension.php │ ├── LayoutExtension.php │ ├── Locator │ │ ├── ModuleTemplateIterator.php │ │ └── ModuleTemplateLoader.php │ └── TranslationsExtension.php │ └── Utils │ ├── FloatParser.php │ └── ZipManager.php ├── tests-legacy ├── Endpoints │ ├── AbstractEndpointAdminTest.php │ ├── AbstractEndpointTest.php │ ├── AjaxProductListTest.php │ ├── AjaxTest.php │ ├── DisplayImageTest.php │ ├── DrawerTest.php │ ├── GriderTest.php │ └── SearchCronTest.php ├── Integration │ ├── Adapter │ │ └── AdapterDatabaseTest.php │ ├── Core │ │ ├── Foundation │ │ │ └── Entity │ │ │ │ ├── EntityManagerTest.php │ │ │ │ └── EntityTest.php │ │ ├── Localization │ │ │ └── LocaleUsageTest.php │ │ └── Module │ │ │ ├── HookRepositoryTest.php │ │ │ └── ModuleCacheTest.php │ ├── PrestaShopBundle │ │ ├── Controller │ │ │ ├── Admin │ │ │ │ ├── Improve │ │ │ │ │ ├── Design │ │ │ │ │ │ └── PositionsControllerTest.php │ │ │ │ │ └── International │ │ │ │ │ │ └── GeolocationControllerTest.php │ │ │ │ ├── ModuleControllerTest.php │ │ │ │ ├── ProductControllerTest.php │ │ │ │ ├── Sell │ │ │ │ │ └── Order │ │ │ │ │ │ └── DeliveryControllerTest.php │ │ │ │ └── SurvivalTest.php │ │ │ └── Api │ │ │ │ ├── ApiTestCase.php │ │ │ │ ├── AttributeControllerTest.php │ │ │ │ ├── CategoryControllerTest.php │ │ │ │ ├── FeatureControllerTest.php │ │ │ │ ├── I18nControllerTest.php │ │ │ │ ├── Improve │ │ │ │ └── Design │ │ │ │ │ └── PositionsControllerTest.php │ │ │ │ ├── ManufacturerControllerTest.php │ │ │ │ ├── StockManagementControllerTest.php │ │ │ │ ├── SupplierControllerTest.php │ │ │ │ └── TranslationControllerTest.php │ │ ├── Service │ │ │ └── DataProvider │ │ │ │ └── MarketPlace │ │ │ │ └── ApiClientTest.php │ │ └── Test │ │ │ ├── LightWebTestCase.php │ │ │ └── WebTestCase.php │ ├── ProductURLsTest.php │ ├── SmartySettingsTest.php │ └── classes │ │ ├── AccessTest.php │ │ ├── CartGetOrderTotalTest.php │ │ ├── ConfigurationCoreTest.php │ │ ├── CurrencyTest.php │ │ ├── LanguageTest.php │ │ ├── MediaCoreTest.php │ │ ├── SearchCoreTest.php │ │ ├── ShopCoreTest.php │ │ ├── TabTest.php │ │ ├── db │ │ └── DbTest.php │ │ └── module │ │ ├── ModuleGetOverrideTest.php │ │ ├── ModuleGetPossibleHooksListTest.php │ │ └── ModuleOverrideInstallUninstallTest.php ├── PrestaShopBundle │ ├── Command │ │ └── ExportThemeCommandTest.php │ ├── Controller │ │ └── ControllerTest.php │ ├── Mock │ │ ├── AdapterSecurityAdminMock.php │ │ └── PageVoter.php │ ├── Model │ │ └── Product │ │ │ └── AdminModelAdapterTest.php │ ├── Routing │ │ └── YamlRoutesInModuleTest.php │ ├── Service │ │ └── Hook │ │ │ └── HookDispatcherTest.php │ ├── Translation │ │ ├── Exporter │ │ │ └── ThemeExporterTest.php │ │ ├── Extractor │ │ │ └── ThemeExtractorTest.php │ │ └── Factory │ │ │ ├── ThemeTranslationsFactoryTest.php │ │ │ └── TranslationsFactoryTest.php │ ├── Twig │ │ ├── Fixtures │ │ │ ├── module1 │ │ │ │ └── views │ │ │ │ │ └── PrestaShop │ │ │ │ │ └── Admin │ │ │ │ │ └── Product │ │ │ │ │ └── test.html.twig │ │ │ ├── module2 │ │ │ │ └── views │ │ │ │ │ └── PrestaShop │ │ │ │ │ └── test.html.twig │ │ │ └── module3 │ │ │ │ └── views │ │ │ │ └── PrestaShop │ │ │ │ └── Admin │ │ │ │ └── Product │ │ │ │ ├── ProductPage │ │ │ │ └── Lists │ │ │ │ │ └── list.html.twig │ │ │ │ └── test.html.twig │ │ └── Locator │ │ │ └── ModuleTemplateLoaderTest.php │ ├── Utils │ │ └── DatabaseCreator.php │ └── resources │ │ └── themes │ │ └── fake-theme │ │ ├── assets │ │ ├── css │ │ │ └── theme.css │ │ └── js │ │ │ └── theme.js │ │ ├── config │ │ └── theme.yml │ │ ├── preview.png │ │ └── templates │ │ ├── _partials │ │ ├── footer.tpl │ │ ├── head.tpl │ │ ├── header.tpl │ │ └── notifications.tpl │ │ ├── catalog │ │ ├── _partials │ │ │ └── miniatures │ │ │ │ └── product.tpl │ │ └── product.tpl │ │ ├── checkout │ │ ├── cart.tpl │ │ └── checkout.tpl │ │ └── page.tpl ├── README.md ├── TestCase │ ├── FakeConfiguration.php │ ├── FakeEntityMapper.php │ ├── FakeLogger.php │ ├── File.php │ ├── IntegrationTestCase.php │ ├── Module.php │ ├── ReflexionHelper.php │ └── UnitTestCase.php ├── Unit │ ├── Adapter │ │ ├── AdapterServiceLocatorTest.php │ │ ├── Admin │ │ │ └── UrlGeneratorTest.php │ │ ├── Cart │ │ │ └── CartPresenterTest.php │ │ ├── Module │ │ │ ├── AdminModuleDataProviderTest.php │ │ │ ├── Configuration │ │ │ │ └── ModuleSelfConfiguratorTest.php │ │ │ ├── PrestaTrust │ │ │ │ └── PrestaTrustCheckerTest.php │ │ │ └── Tab │ │ │ │ └── ModuleTabRegisterTest.php │ │ └── ToolsTest.php │ ├── Classes │ │ ├── AmountTest.php │ │ ├── AssetsCoreTest.php │ │ ├── Checkout │ │ │ └── CheckoutAddressesStepTest.php │ │ ├── HookTest.php │ │ ├── Module │ │ │ └── ModuleCoreTest.php │ │ ├── PhpEncryptionLegacyEngineTest.php │ │ ├── PhpEncryptionTest.php │ │ ├── PrestaShopAutoloadTest.php │ │ ├── Product │ │ │ └── SpecificPriceFormatterTest.php │ │ ├── ProfileCoreTest.php │ │ ├── Smarty │ │ │ └── TemplateFinderTest.php │ │ ├── Tax │ │ │ ├── AverageTaxOfProductsTaxCalculatorTest.php │ │ │ ├── TaxCalculatorCoreTest.php │ │ │ └── TaxRulesTaxManagerCoreTest.php │ │ ├── ToolsCoreTest.php │ │ └── ValidateCoreTest.php │ ├── ContextMocker.php │ ├── Controller │ │ └── Admin │ │ │ └── AdminTabsControllerTest.php │ ├── Core │ │ ├── Addon │ │ │ ├── Module │ │ │ │ ├── ModuleManagerTest.php │ │ │ │ └── ModuleRepositoryTest.php │ │ │ └── Theme │ │ │ │ ├── ThemeRepositoryTest.php │ │ │ │ └── ThemeValidatorTest.php │ │ ├── Business │ │ │ ├── Payment │ │ │ │ └── PaymentOptionFormDecoratorTest.php │ │ │ └── Product │ │ │ │ ├── ProductPresenterTest.php │ │ │ │ └── Search │ │ │ │ ├── PaginationTest.php │ │ │ │ ├── SearchTest.php │ │ │ │ ├── SortOrderTest.php │ │ │ │ └── URLFragmentSerializerTest.php │ │ ├── Cart │ │ │ ├── Calculation │ │ │ │ └── CartOld.php │ │ │ └── CartToOrder │ │ │ │ └── PaymentModuleFake.php │ │ ├── Domain │ │ │ └── SqlManagement │ │ │ │ ├── CommandHandler │ │ │ │ └── SaveSqlRequestSettingsHandlerTest.php │ │ │ │ └── QueryHandler │ │ │ │ └── GetSqlRequestSettingsHandlerTest.php │ │ ├── Filter │ │ │ ├── CollectionFilterTest.php │ │ │ ├── HashMapWhitelistFilterTest.php │ │ │ └── _Artifacts │ │ │ │ └── TestLazyArray.php │ │ ├── Foundation │ │ │ ├── Database │ │ │ │ ├── Core_Foundation_Database_EntityRepository_Test.php │ │ │ │ └── EntityManager │ │ │ │ │ └── Core_Foundation_Database_EntityManager_QueryBuilder_Test.php │ │ │ ├── FileSystem │ │ │ │ ├── Core_Foundation_FileSystem_FileSystemTest.php │ │ │ │ └── fixtures │ │ │ │ │ ├── a │ │ │ │ │ ├── a.tmp │ │ │ │ │ └── b │ │ │ │ │ │ └── b.file │ │ │ │ │ └── toplevel.txt │ │ │ ├── IoC │ │ │ │ ├── Core_Foundation_IoC_Container_Test.php │ │ │ │ └── Fixtures │ │ │ │ │ ├── ClassDependingOnClosureBuiltDep.php │ │ │ │ │ ├── ClassWithDep.php │ │ │ │ │ ├── ClassWithDepAndDefault.php │ │ │ │ │ ├── CycleA.php │ │ │ │ │ ├── CycleB.php │ │ │ │ │ ├── DepBuiltByClosure.php │ │ │ │ │ ├── Dummy.php │ │ │ │ │ └── UnBuildable.php │ │ │ └── VersionTest.php │ │ ├── Grid │ │ │ ├── Column │ │ │ │ └── ColumnCollectionTest.php │ │ │ ├── Data │ │ │ │ └── Factory │ │ │ │ │ └── DoctrineGridDataFactoryTest.php │ │ │ ├── Definition │ │ │ │ └── Factory │ │ │ │ │ └── AbstractGridDefinitionFactoryTest.php │ │ │ ├── Filter │ │ │ │ └── FilterCollectionTest.php │ │ │ ├── Position │ │ │ │ ├── GridPositionUpdaterTest.php │ │ │ │ └── PositionUpdateFactoryTest.php │ │ │ ├── Presenter │ │ │ │ └── GridPresenterTest.php │ │ │ └── Query │ │ │ │ └── DoctrineQueryParserTest.php │ │ ├── Hook │ │ │ ├── HookDispatcherTest.php │ │ │ └── RenderedHookTest.php │ │ ├── Localization │ │ │ ├── CLDR │ │ │ │ ├── CurrencyTest.php │ │ │ │ ├── DataLayer │ │ │ │ │ ├── CurrencyCacheTest.php │ │ │ │ │ ├── LocaleCacheTest.php │ │ │ │ │ └── LocaleReferenceTest.php │ │ │ │ ├── LocaleDataSourceTest.php │ │ │ │ ├── LocaleTest.php │ │ │ │ └── ReaderTest.php │ │ │ ├── Currency │ │ │ │ ├── CurrencyTest.php │ │ │ │ └── RepositoryTest.php │ │ │ ├── CurrencyTest.php │ │ │ ├── DataLayer │ │ │ │ ├── CurrencyCacheTest.php │ │ │ │ ├── CurrencyDatabaseTest.php │ │ │ │ └── CurrencyReferenceTest.php │ │ │ ├── Locale │ │ │ │ ├── LocaleTest.php │ │ │ │ └── RepositoryTest.php │ │ │ ├── LocaleCacheDataLayerTest.php │ │ │ ├── LocaleTest.php │ │ │ ├── Number │ │ │ │ └── FormatterTest.php │ │ │ ├── ReaderTest.php │ │ │ └── Specification │ │ │ │ ├── FactoryTest.php │ │ │ │ ├── NumberTest.php │ │ │ │ ├── PercentageTest.php │ │ │ │ └── PriceTest.php │ │ ├── Module │ │ │ └── HookConfiguratorTest.php │ │ ├── Payment │ │ │ └── Core_Payment_PaymentOptionTest.php │ │ ├── Search │ │ │ └── ControllerActionTest.php │ │ └── Stock │ │ │ └── Core_Stock_StockManagerTest.php │ ├── PrestaShopBundle │ │ ├── Api │ │ │ └── QueryParamsCollectionTest.php │ │ ├── MultishopCommandListenerTest.php │ │ ├── PassVsprintfContraintTest.php │ │ └── Utils │ │ │ └── FloatParserTest.php │ └── classes │ │ └── CacheCoreTest.php ├── bootstrap-admin.php ├── bootstrap-controllers.php ├── bootstrap-sf.php ├── bootstrap.php ├── check_phpunit.sh ├── create-test-db.php ├── index.php ├── old-controllers.xml ├── parameters.yml.travis ├── phpunit-admin.xml ├── phpunit-endpoints.xml ├── phpunit-routing.xml ├── phpunit.xml ├── resources │ ├── ModulesOverrideInstallUninstallTest │ │ ├── AdminProductsController.php │ │ └── Cart.php │ ├── assets │ │ ├── core.js │ │ ├── css │ │ │ ├── custom.css │ │ │ └── theme.css │ │ ├── custom.css │ │ ├── js │ │ │ ├── core.js │ │ │ └── theme.js │ │ ├── theme.css │ │ └── theme.js │ ├── minimal-missconfig-theme │ │ ├── assets │ │ │ ├── css │ │ │ │ └── theme.css │ │ │ └── js │ │ │ │ └── theme.js │ │ ├── config │ │ │ └── theme.yml │ │ ├── preview.png │ │ └── templates │ │ │ ├── _partials │ │ │ ├── footer.tpl │ │ │ ├── head.tpl │ │ │ ├── header.tpl │ │ │ └── notifications.tpl │ │ │ ├── catalog │ │ │ ├── product-miniature.tpl │ │ │ └── product.tpl │ │ │ ├── checkout │ │ │ ├── cart.tpl │ │ │ └── checkout.tpl │ │ │ └── page.tpl │ ├── minimal-missfiles-theme │ │ ├── assets │ │ │ ├── css │ │ │ │ └── theme.css │ │ │ └── js │ │ │ │ └── theme.js │ │ ├── config │ │ │ └── theme.yml │ │ ├── preview.png │ │ └── templates │ │ │ ├── _partials │ │ │ ├── footer.tpl │ │ │ ├── head.tpl │ │ │ ├── header.tpl │ │ │ └── notifications.tpl │ │ │ ├── catalog │ │ │ ├── product-miniature.tpl │ │ │ └── product.tpl │ │ │ └── page.tpl │ ├── minimal-valid-theme │ │ ├── assets │ │ │ ├── css │ │ │ │ └── theme.css │ │ │ └── js │ │ │ │ └── theme.js │ │ ├── config │ │ │ └── theme.yml │ │ ├── preview.png │ │ └── templates │ │ │ ├── _partials │ │ │ └── form-fields.tpl │ │ │ ├── catalog │ │ │ ├── listing │ │ │ │ └── product-list.tpl │ │ │ └── product.tpl │ │ │ ├── checkout │ │ │ ├── cart-empty.tpl │ │ │ ├── cart.tpl │ │ │ ├── checkout.tpl │ │ │ └── order-confirmation.tpl │ │ │ ├── cms │ │ │ ├── category.tpl │ │ │ ├── page.tpl │ │ │ ├── sitemap.tpl │ │ │ └── stores.tpl │ │ │ ├── contact.tpl │ │ │ ├── customer │ │ │ ├── address.tpl │ │ │ ├── addresses.tpl │ │ │ ├── authentication.tpl │ │ │ ├── guest-login.tpl │ │ │ ├── guest-tracking.tpl │ │ │ ├── history.tpl │ │ │ ├── identity.tpl │ │ │ ├── my-account.tpl │ │ │ ├── order-detail.tpl │ │ │ ├── order-follow.tpl │ │ │ ├── order-return.tpl │ │ │ ├── order-slip.tpl │ │ │ └── registration.tpl │ │ │ ├── errors │ │ │ ├── 404.tpl │ │ │ └── forbidden.tpl │ │ │ └── index.tpl │ ├── module-self-config-files │ │ ├── emptyModuleConfExample.yml │ │ ├── moduleConfCrashFileDestination.yml │ │ ├── moduleConfCrashFileSource.yml │ │ ├── moduleConfCrashSql.yml │ │ ├── moduleConfExample.yml │ │ ├── moduleConfExampleConfStep.yml │ │ ├── moduleConfExampleFilesStep.yml │ │ ├── moduleConfExamplePhpStep.yml │ │ ├── moduleConfExampleSqlStep.yml │ │ ├── php │ │ │ └── MyComplexModuleConfiguration.php │ │ └── sql │ │ │ ├── another-subfolder │ │ │ └── file2.sql │ │ │ └── file1.sql │ ├── module │ │ ├── demo │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config.xml │ │ │ ├── config │ │ │ │ └── routes.yml │ │ │ ├── demo.php │ │ │ ├── logo.gif │ │ │ ├── src │ │ │ │ └── Controller │ │ │ │ │ └── Admin │ │ │ │ │ └── DemoController.php │ │ │ ├── templates │ │ │ │ └── admin │ │ │ │ │ └── demo.html.twig │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ └── installed.json │ │ ├── pscsx3241 │ │ │ ├── config.xml │ │ │ ├── logo.gif │ │ │ ├── override │ │ │ │ ├── classes │ │ │ │ │ └── Cart.php │ │ │ │ └── controllers │ │ │ │ │ └── admin │ │ │ │ │ └── AdminProductsController.php │ │ │ └── pscsx3241.php │ │ └── pscsx32412 │ │ │ ├── config.xml │ │ │ ├── logo.gif │ │ │ ├── override │ │ │ ├── classes │ │ │ │ └── Cart.php │ │ │ └── controllers │ │ │ │ └── admin │ │ │ │ └── AdminProductsController.php │ │ │ └── pscsx32412.php │ ├── modules │ │ ├── bankwire │ │ │ ├── bankwire.php │ │ │ ├── config.xml │ │ │ ├── index.php │ │ │ ├── logo.png │ │ │ └── self_config.yml │ │ ├── cronjobs │ │ │ ├── Readme.md │ │ │ ├── classes │ │ │ │ ├── CronJobsForms.php │ │ │ │ └── index.php │ │ │ ├── composer.json │ │ │ ├── config.xml │ │ │ ├── controllers │ │ │ │ ├── admin │ │ │ │ │ ├── AdminCronJobsController.php │ │ │ │ │ └── index.php │ │ │ │ ├── front │ │ │ │ │ ├── callback.php │ │ │ │ │ └── index.php │ │ │ │ └── index.php │ │ │ ├── cronjobs.php │ │ │ ├── index.php │ │ │ ├── logo.gif │ │ │ ├── logo.png │ │ │ ├── translations │ │ │ │ ├── de.php │ │ │ │ ├── en.php │ │ │ │ ├── es.php │ │ │ │ ├── fr.php │ │ │ │ ├── index.php │ │ │ │ └── it.php │ │ │ ├── upgrade │ │ │ │ ├── index.php │ │ │ │ └── upgrade-1.0.6.php │ │ │ ├── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ └── installed.json │ │ │ └── views │ │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── configure-ps-15.css │ │ │ │ ├── configure-ps-16.css │ │ │ │ └── index.php │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── admin │ │ │ │ ├── _configure │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.tpl │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── index.php │ │ │ │ │ └── index.php │ │ │ │ ├── configure.tpl │ │ │ │ ├── index.php │ │ │ │ └── task.tpl │ │ │ │ └── index.php │ │ ├── gamification │ │ │ ├── CHANGELOG.txt │ │ │ ├── Readme.md │ │ │ ├── classes │ │ │ │ ├── Advice.php │ │ │ │ ├── Badge.php │ │ │ │ ├── Condition.php │ │ │ │ └── GamificationTools.php │ │ │ ├── composer.json │ │ │ ├── config.xml │ │ │ ├── controllers │ │ │ │ ├── admin │ │ │ │ │ └── AdminGamificationController.php │ │ │ │ └── index.php │ │ │ ├── de.php │ │ │ ├── fr.php │ │ │ ├── gamification.php │ │ │ ├── index.php │ │ │ ├── logo.gif │ │ │ ├── logo.png │ │ │ ├── prestashop.pub │ │ │ ├── sql_install.php │ │ │ ├── translations │ │ │ │ ├── cs.php │ │ │ │ ├── de.php │ │ │ │ ├── es.php │ │ │ │ ├── fr.php │ │ │ │ ├── index.php │ │ │ │ ├── it.php │ │ │ │ ├── pl.php │ │ │ │ └── ru.php │ │ │ ├── upgrade │ │ │ │ ├── install-1.4.9.php │ │ │ │ ├── install-1.6.6.php │ │ │ │ ├── install-1.7.3.php │ │ │ │ ├── install-1.7.6.php │ │ │ │ ├── install-1.7.7.php │ │ │ │ ├── install-1.8.0.php │ │ │ │ └── install-1.8.9.php │ │ │ ├── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ └── installed.json │ │ │ └── views │ │ │ │ ├── css │ │ │ │ ├── bubble-popup.css │ │ │ │ ├── gamification.css │ │ │ │ └── isotope.css │ │ │ │ ├── img │ │ │ │ ├── badge_locked.png │ │ │ │ ├── badge_unlocked.png │ │ │ │ ├── badges_achievement.png │ │ │ │ ├── badges_feature.png │ │ │ │ ├── badges_international.png │ │ │ │ ├── bg_bar_global.png │ │ │ │ ├── bg_locked_badge.png │ │ │ │ ├── gamification-bar-bg.png │ │ │ │ ├── mail_icon.png │ │ │ │ ├── not_validated.png │ │ │ │ ├── notif_gadges.png │ │ │ │ ├── phone_icon.png │ │ │ │ ├── trophy.png │ │ │ │ └── validated.png │ │ │ │ ├── jquerybubblepopup-themes │ │ │ │ └── black │ │ │ │ │ ├── bottom-left.png │ │ │ │ │ ├── bottom-middle.png │ │ │ │ │ ├── bottom-right.png │ │ │ │ │ ├── ie │ │ │ │ │ ├── bottom-left.gif │ │ │ │ │ ├── bottom-middle.gif │ │ │ │ │ ├── bottom-right.gif │ │ │ │ │ ├── middle-left.gif │ │ │ │ │ ├── middle-right.gif │ │ │ │ │ ├── tail-bottom.gif │ │ │ │ │ ├── tail-left.gif │ │ │ │ │ ├── tail-right.gif │ │ │ │ │ ├── tail-top.gif │ │ │ │ │ ├── top-left.gif │ │ │ │ │ ├── top-middle.gif │ │ │ │ │ └── top-right.gif │ │ │ │ │ ├── middle-left.png │ │ │ │ │ ├── middle-right.png │ │ │ │ │ ├── tail-bottom.png │ │ │ │ │ ├── tail-left.png │ │ │ │ │ ├── tail-right.png │ │ │ │ │ ├── tail-top.png │ │ │ │ │ ├── top-left.png │ │ │ │ │ ├── top-middle.png │ │ │ │ │ └── top-right.png │ │ │ │ ├── js │ │ │ │ ├── bubble-popup.js │ │ │ │ ├── gamification.js │ │ │ │ ├── gamification_bt.js │ │ │ │ └── jquery.isotope.js │ │ │ │ └── templates │ │ │ │ ├── admin │ │ │ │ └── gamification │ │ │ │ │ └── helpers │ │ │ │ │ └── view │ │ │ │ │ ├── filters.tpl │ │ │ │ │ ├── filters_bt.tpl │ │ │ │ │ ├── view.tpl │ │ │ │ │ └── view_bt.tpl │ │ │ │ └── hook │ │ │ │ ├── notification.tpl │ │ │ │ └── notification_bt.tpl │ │ ├── ganalytics │ │ │ ├── config.xml │ │ │ ├── ganalytics.php │ │ │ ├── index.php │ │ │ ├── logo.gif │ │ │ └── logo.png │ │ ├── ps_banner │ │ │ ├── config.xml │ │ │ ├── index.php │ │ │ ├── logo.png │ │ │ └── ps_banner.php │ │ ├── ps_emailsubscription │ │ │ ├── config.xml │ │ │ ├── index.php │ │ │ ├── logo.png │ │ │ └── ps_emailsubscription.php │ │ └── ps_featuredproducts │ │ │ ├── config.xml │ │ │ ├── index.php │ │ │ ├── logo.png │ │ │ └── ps_featuredproducts.php │ └── template-hierarchy │ │ └── templates │ │ └── catalog │ │ └── listing │ │ ├── category-9.tpl │ │ ├── category.tpl │ │ └── product-list.tpl └── sf-tests.xml ├── tests ├── Integration │ ├── Adapter │ │ ├── ContainerBuilderTest.php │ │ └── SqlManager │ │ │ └── SqlQueryValidatorTest.php │ ├── Behaviour │ │ ├── Features │ │ │ ├── Context │ │ │ │ ├── AbstractPrestaShopFeatureContext.php │ │ │ │ ├── CLDRFeatureContext.php │ │ │ │ ├── CarrierFeatureContext.php │ │ │ │ ├── CartAwareTrait.php │ │ │ │ ├── CartFeatureContext.php │ │ │ │ ├── CartRuleFeatureContext.php │ │ │ │ ├── CategoryFeatureContext.php │ │ │ │ ├── CommonFeatureContext.php │ │ │ │ ├── Configuration │ │ │ │ │ ├── AbstractConfigurationFeatureContext.php │ │ │ │ │ ├── CommonConfigurationFeatureContext.php │ │ │ │ │ ├── EmailConfigurationFeatureContext.php │ │ │ │ │ ├── PackConfigurationFeatureContext.php │ │ │ │ │ ├── PriceDisplayMethodConfigurationFeatureContext.php │ │ │ │ │ ├── RoundingModeConfigurationFeatureContext.php │ │ │ │ │ └── RoundingTypeConfigurationFeatureContext.php │ │ │ │ ├── ContextFeatureContext.php │ │ │ │ ├── CountryFeatureContext.php │ │ │ │ ├── CurrencyFeatureContext.php │ │ │ │ ├── CustomerFeatureContext.php │ │ │ │ ├── CustomerManagerFeatureContext.php │ │ │ │ ├── Domain │ │ │ │ │ ├── AbstractDomainFeatureContext.php │ │ │ │ │ ├── AddressFeatureContext.php │ │ │ │ │ ├── CartFeatureContext.php │ │ │ │ │ ├── CartRuleFeatureContext.php │ │ │ │ │ ├── CategoryFeatureContext.php │ │ │ │ │ ├── CmsPageFeatureContext.php │ │ │ │ │ ├── CommonDomainFeatureContext.php │ │ │ │ │ ├── ContactFeatureContext.php │ │ │ │ │ ├── CurrencyFeatureContext.php │ │ │ │ │ ├── CustomerFeatureContext.php │ │ │ │ │ ├── DebugModeFeatureContext.php │ │ │ │ │ ├── EmployeeFeatureContext.php │ │ │ │ │ ├── FeatureFeatureContext.php │ │ │ │ │ ├── ManufacturerFeatureContext.php │ │ │ │ │ ├── MetaFeatureContext.php │ │ │ │ │ ├── OrderCartFeatureContext.php │ │ │ │ │ ├── OrderCustomerFeatureContext.php │ │ │ │ │ ├── OrderFeatureContext.php │ │ │ │ │ ├── OrderMessageContext.php │ │ │ │ │ ├── OrderPaymentFeatureContext.php │ │ │ │ │ ├── OrderRefundFeatureContext.php │ │ │ │ │ ├── OrderShippingFeatureContext.php │ │ │ │ │ ├── ProductFeatureContext.php │ │ │ │ │ ├── ShopFeatureContext.php │ │ │ │ │ ├── ShowcaseCardFeatureContext.php │ │ │ │ │ ├── TaxFeatureContext.php │ │ │ │ │ ├── ThemeMailTemplatesFeatureContext.php │ │ │ │ │ └── WebserviceKeyFeatureContext.php │ │ │ │ ├── EmployeeFeatureContext.php │ │ │ │ ├── LanguageFeatureContext.php │ │ │ │ ├── MetaFeatureContext.php │ │ │ │ ├── ModuleFeatureContext.php │ │ │ │ ├── OrderFeatureContext.php │ │ │ │ ├── OrderMessageContext.php │ │ │ │ ├── ProductFeatureContext.php │ │ │ │ ├── SharedStorage.php │ │ │ │ ├── ShopFeatureContext.php │ │ │ │ ├── SpecificPriceRuleFeatureContext.php │ │ │ │ ├── SqlManagerFeatureContext.php │ │ │ │ ├── TaxFeatureContext.php │ │ │ │ ├── Util │ │ │ │ │ ├── CategoryTreeIterator.php │ │ │ │ │ ├── DataComparator.php │ │ │ │ │ ├── DataTransfer.php │ │ │ │ │ ├── NoExceptionAlthoughExpectedException.php │ │ │ │ │ └── PrimitiveUtils.php │ │ │ │ └── WebserviceKeyFeatureContext.php │ │ │ ├── Scenario │ │ │ │ ├── Address │ │ │ │ │ ├── customer_address.feature │ │ │ │ │ └── manufacturer_address.feature │ │ │ │ ├── CLDR │ │ │ │ │ └── cldr.feature │ │ │ │ ├── Cart │ │ │ │ │ ├── Adding │ │ │ │ │ │ ├── CartRule │ │ │ │ │ │ │ ├── add_cartrule.feature │ │ │ │ │ │ │ ├── gift_cartrule.feature │ │ │ │ │ │ │ ├── minimum_amount_cartrule.feature │ │ │ │ │ │ │ └── usage_limit_per_user.feature │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── add_combination.feature │ │ │ │ │ │ │ ├── add_customization.feature │ │ │ │ │ │ │ ├── add_pack.feature │ │ │ │ │ │ │ └── add_standard_product.feature │ │ │ │ │ ├── Calculation │ │ │ │ │ │ ├── Carrier │ │ │ │ │ │ │ ├── carrier.feature │ │ │ │ │ │ │ ├── cart_rule_carrier_specific.feature │ │ │ │ │ │ │ └── change_carrier_cart_rule.feature │ │ │ │ │ │ ├── CartRule │ │ │ │ │ │ │ ├── amount_mono.feature │ │ │ │ │ │ │ ├── amount_mono_virtual.feature │ │ │ │ │ │ │ ├── amount_multiple.feature │ │ │ │ │ │ │ ├── amount_specific.feature │ │ │ │ │ │ │ ├── carrier.feature │ │ │ │ │ │ │ ├── cheapest_product.feature │ │ │ │ │ │ │ ├── ecotax.feature │ │ │ │ │ │ │ ├── exclude_discounted_product.feature │ │ │ │ │ │ │ ├── free_shipping.feature │ │ │ │ │ │ │ ├── gift.feature │ │ │ │ │ │ │ ├── mixed.feature │ │ │ │ │ │ │ ├── mixed_specific.feature │ │ │ │ │ │ │ ├── percent_mono.feature │ │ │ │ │ │ │ ├── percent_multiple.feature │ │ │ │ │ │ │ ├── percent_no_code_multiple.feature │ │ │ │ │ │ │ ├── percent_specific.feature │ │ │ │ │ │ │ ├── percent_specific_mono.feature │ │ │ │ │ │ │ └── percent_specific_multiple.feature │ │ │ │ │ │ ├── Country │ │ │ │ │ │ │ └── cart_rule_country_specific.feature │ │ │ │ │ │ ├── Currency │ │ │ │ │ │ │ └── currency.feature │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── gift_wrapping.feature │ │ │ │ │ │ │ ├── only_products.feature │ │ │ │ │ │ │ └── specific_price.feature │ │ │ │ │ │ ├── RoundingMode │ │ │ │ │ │ │ ├── round_down.feature │ │ │ │ │ │ │ ├── round_half_down.feature │ │ │ │ │ │ │ ├── round_half_even.feature │ │ │ │ │ │ │ ├── round_half_odd.feature │ │ │ │ │ │ │ ├── round_half_up.feature │ │ │ │ │ │ │ └── round_up.feature │ │ │ │ │ │ ├── RoundingType │ │ │ │ │ │ │ ├── round_item.feature │ │ │ │ │ │ │ ├── round_line.feature │ │ │ │ │ │ │ └── round_total.feature │ │ │ │ │ │ ├── SpecificPriceRule │ │ │ │ │ │ │ ├── amount.feature │ │ │ │ │ │ │ ├── mixed.feature │ │ │ │ │ │ │ ├── percent.feature │ │ │ │ │ │ │ ├── percent_multiple.feature │ │ │ │ │ │ │ └── price_set.feature │ │ │ │ │ │ └── Taxes │ │ │ │ │ │ │ └── tax.feature │ │ │ │ │ ├── CartToOrder │ │ │ │ │ │ └── cart_to_order.feature │ │ │ │ │ ├── Deleting │ │ │ │ │ │ ├── delete_cart_rule_from_cart.feature │ │ │ │ │ │ └── delete_product_from_cart.feature │ │ │ │ │ ├── Delivery │ │ │ │ │ │ └── delivery_options.feature │ │ │ │ │ └── Updating │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── update_pack.feature │ │ │ │ ├── CartRule │ │ │ │ │ └── add_cart_rule.feature │ │ │ │ ├── Category │ │ │ │ │ └── category_management.feature │ │ │ │ ├── CmsPage │ │ │ │ │ └── cms_page_management.feature │ │ │ │ ├── Contact │ │ │ │ │ └── contact.feature │ │ │ │ ├── Currency │ │ │ │ │ ├── currency_data.feature │ │ │ │ │ └── currency_management.feature │ │ │ │ ├── Customer │ │ │ │ │ ├── customer_management.feature │ │ │ │ │ ├── customer_private_note.feature │ │ │ │ │ └── customer_required_fields_management.feature │ │ │ │ ├── Database │ │ │ │ │ └── sql_manager.feature │ │ │ │ ├── Feature │ │ │ │ │ └── feature_management.feature │ │ │ │ ├── Manufacturer │ │ │ │ │ └── manufacturer_management.feature │ │ │ │ ├── Meta │ │ │ │ │ └── meta_management.feature │ │ │ │ ├── Misc │ │ │ │ │ ├── debug_mode.feature │ │ │ │ │ ├── showcase_card.feature │ │ │ │ │ └── theme_mail_templates.feature │ │ │ │ ├── Order │ │ │ │ │ ├── add_cart_rule_to_order.feature │ │ │ │ │ ├── duplicate_products.feature │ │ │ │ │ ├── order_add_payment.feature │ │ │ │ │ ├── order_address.feature │ │ │ │ │ ├── order_cancel_product.feature │ │ │ │ │ ├── order_cart_rules.feature │ │ │ │ │ ├── order_currency.feature │ │ │ │ │ ├── order_customer.feature │ │ │ │ │ ├── order_documents.feature │ │ │ │ │ ├── order_ecotax.feature │ │ │ │ │ ├── order_ecotax_cartrule.feature │ │ │ │ │ ├── order_ecotax_combination.feature │ │ │ │ │ ├── order_ecotax_odd_tax.feature │ │ │ │ │ ├── order_ecotax_with_tax.feature │ │ │ │ │ ├── order_fixed_product_prices.feature │ │ │ │ │ ├── order_french_tax.feature │ │ │ │ │ ├── order_from_bo.feature │ │ │ │ │ ├── order_gift_cart_rule.feature │ │ │ │ │ ├── order_multi_invoices.feature │ │ │ │ │ ├── order_multi_shop.feature │ │ │ │ │ ├── order_odd_tax.feature │ │ │ │ │ ├── order_out_of_stock.feature │ │ │ │ │ ├── order_rounding_type.feature │ │ │ │ │ ├── order_shipping.feature │ │ │ │ │ ├── order_shipping_recalculate.feature │ │ │ │ │ ├── order_specific_prices.feature │ │ │ │ │ ├── order_to_cart.feature │ │ │ │ │ ├── partial_refund.feature │ │ │ │ │ ├── return_product.feature │ │ │ │ │ └── standard_refund.feature │ │ │ │ ├── OrderMessage │ │ │ │ │ └── order_message_management.feature │ │ │ │ ├── Shop │ │ │ │ │ └── shop.feature │ │ │ │ ├── Tax │ │ │ │ │ └── tax_management.feature │ │ │ │ └── Webservice │ │ │ │ │ └── webservice_key_management.feature │ │ │ └── Transform │ │ │ │ ├── CurrencyTransform.php │ │ │ │ ├── SharedStorageTransform.php │ │ │ │ └── StringToBooleanTransform.php │ │ ├── behat.yml │ │ └── bootstrap.php │ ├── Core │ │ └── MailTemplate │ │ │ └── MailTemplateGeneratorTest.php │ ├── PrestaShopBundle │ │ ├── Command │ │ │ └── GenerateMailTemplatesCommandTest.php │ │ ├── Controller │ │ │ └── Admin │ │ │ │ └── Sell │ │ │ │ └── Order │ │ │ │ └── OrderControllerTest.php │ │ ├── Entity │ │ │ └── Repository │ │ │ │ └── LangRepositoryTest.php │ │ ├── Routing │ │ │ ├── Converter │ │ │ │ └── LegacyUrlConverterTest.php │ │ │ └── Linter │ │ │ │ └── SecurityAnnotationLinterTest.php │ │ └── Translation │ │ │ ├── CatalogueVerifier.php │ │ │ ├── Extractor │ │ │ └── LegacyModuleExtractorTest.php │ │ │ ├── Loader │ │ │ └── LegacyFileLoaderTest.php │ │ │ └── Provider │ │ │ ├── BackOfficeProviderTest.php │ │ │ ├── ExternalModuleLegacySystemProviderTest.php │ │ │ ├── FrontOfficeProviderTest.php │ │ │ ├── ModuleProviderTest.php │ │ │ ├── ModulesProviderTest.php │ │ │ ├── SearchProviderTest.php │ │ │ └── ThemeProviderTest.php │ ├── README.md │ ├── bootstrap.php │ └── phpunit.xml ├── README.md ├── Resources │ ├── Controller │ │ └── TestController.php │ ├── assets │ │ └── new_logo.jpg │ ├── modules │ │ ├── dummy_payment │ │ │ └── dummy_payment.php │ │ ├── ps_banner │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── config.xml │ │ │ ├── config │ │ │ │ ├── admin │ │ │ │ │ └── services.yml │ │ │ │ └── front │ │ │ │ │ └── services.yml │ │ │ ├── index.php │ │ │ ├── logo.png │ │ │ ├── ps_banner.php │ │ │ ├── src │ │ │ │ ├── Entity │ │ │ │ │ ├── AnormalBanner.php │ │ │ │ │ └── Banner.php │ │ │ │ └── Repository │ │ │ │ │ ├── AdminRepository.php │ │ │ │ │ └── FrontRepository.php │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ └── installed.json │ │ └── translationtest │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config │ │ │ └── routes.yml │ │ │ ├── controllers │ │ │ ├── admin │ │ │ │ └── AdminTranslationtestFooController.php │ │ │ └── front │ │ │ │ └── bar.php │ │ │ ├── src │ │ │ └── Controller │ │ │ │ └── Admin │ │ │ │ └── ExempleController.php │ │ │ ├── translations │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── index.php │ │ │ └── it.php │ │ │ ├── translationtest.php │ │ │ ├── vendor │ │ │ ├── autoload.php │ │ │ └── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ └── installed.json │ │ │ └── views │ │ │ └── templates │ │ │ ├── admin │ │ │ ├── index.html.twig │ │ │ └── someFile.with-things.tpl │ │ │ └── front │ │ │ └── some_template.tpl │ ├── themes │ │ └── fakeThemeForTranslations │ │ │ ├── assets │ │ │ ├── css │ │ │ │ └── theme.css │ │ │ └── js │ │ │ │ └── theme.js │ │ │ ├── config │ │ │ └── theme.yml │ │ │ ├── preview.png │ │ │ ├── templates │ │ │ ├── _partials │ │ │ │ ├── footer.tpl │ │ │ │ ├── head.tpl │ │ │ │ ├── header.tpl │ │ │ │ └── notifications.tpl │ │ │ ├── catalog │ │ │ │ ├── _partials │ │ │ │ │ └── miniatures │ │ │ │ │ │ └── product.tpl │ │ │ │ └── product.tpl │ │ │ ├── checkout │ │ │ │ ├── cart.tpl │ │ │ │ └── checkout.tpl │ │ │ └── page.tpl │ │ │ └── translations │ │ │ └── en-US │ │ │ ├── ShopTheme.en-US.xlf │ │ │ └── ShopThemeCustomeraccount.en-US.xlf │ └── translations │ │ ├── default │ │ ├── AdminActions.xlf │ │ ├── ModulesCheckpaymentAdmin.xlf │ │ ├── ModulesCheckpaymentShop.xlf │ │ ├── ModulesWirepaymentAdmin.xlf │ │ ├── ModulesWirepaymentShop.xlf │ │ └── ShopNotificationsWarning.xlf │ │ └── fr-FR │ │ ├── AdminActions.fr-FR.xlf │ │ ├── ModulesCheckpaymentAdmin.fr-FR.xlf │ │ ├── ModulesCheckpaymentShop.fr-FR.xlf │ │ ├── ModulesWirepaymentAdmin.fr-FR.xlf │ │ ├── ModulesWirepaymentShop.fr-FR.xlf │ │ └── ShopNotificationsWarning.fr-FR.xlf ├── TestCase │ ├── ErrorsDataListener.php │ ├── PhpErrorsCounter.php │ └── SymfonyIntegrationTestCase.php ├── UI │ ├── .docker │ │ ├── Dockerfile │ │ ├── prestashop │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-from-git │ │ │ ├── docker_run.sh │ │ │ └── wait-for-it.sh │ │ └── run-tests.sh │ ├── .eslintrc.js │ ├── .gitignore │ ├── .mocharc.json │ ├── DOCKER.md │ ├── README.md │ ├── campaigns │ │ ├── commonTests │ │ │ └── loginBO.js │ │ ├── data │ │ │ ├── FO │ │ │ │ ├── cart.js │ │ │ │ └── product.js │ │ │ ├── demo │ │ │ │ ├── CMSpage.js │ │ │ │ ├── address.js │ │ │ │ ├── attributes.js │ │ │ │ ├── brands.js │ │ │ │ ├── carriers.js │ │ │ │ ├── categories.js │ │ │ │ ├── contacts.js │ │ │ │ ├── countries.js │ │ │ │ ├── currencies.js │ │ │ │ ├── customer.js │ │ │ │ ├── employees.js │ │ │ │ ├── features.js │ │ │ │ ├── groupAccess.js │ │ │ │ ├── imageTypes.js │ │ │ │ ├── invoices.js │ │ │ │ ├── languages.js │ │ │ │ ├── linkWidgets.js │ │ │ │ ├── moduleCategories.js │ │ │ │ ├── modules.js │ │ │ │ ├── orderReturnStatuses.js │ │ │ │ ├── orderStatuses.js │ │ │ │ ├── orders.js │ │ │ │ ├── pages.js │ │ │ │ ├── paymentMethods.js │ │ │ │ ├── products.js │ │ │ │ ├── profiles.js │ │ │ │ ├── sampleFiles.js │ │ │ │ ├── search.js │ │ │ │ ├── searchEngines.js │ │ │ │ ├── seoPages.js │ │ │ │ ├── shoppingCarts.js │ │ │ │ ├── sqlTables.js │ │ │ │ ├── states.js │ │ │ │ ├── stores.js │ │ │ │ ├── tax.js │ │ │ │ ├── taxOptions.js │ │ │ │ ├── taxRule.js │ │ │ │ ├── titles.js │ │ │ │ └── zones.js │ │ │ └── faker │ │ │ │ ├── CMScategory.js │ │ │ │ ├── CMSpage.js │ │ │ │ ├── address.js │ │ │ │ ├── attributeAndValue.js │ │ │ │ ├── brand.js │ │ │ │ ├── brandAddress.js │ │ │ │ ├── carrier.js │ │ │ │ ├── cartRule.js │ │ │ │ ├── catalogPriceRule.js │ │ │ │ ├── category.js │ │ │ │ ├── contact.js │ │ │ │ ├── contactUs.js │ │ │ │ ├── country.js │ │ │ │ ├── customer.js │ │ │ │ ├── deliverySlipOptions.js │ │ │ │ ├── employee.js │ │ │ │ ├── file.js │ │ │ │ ├── group.js │ │ │ │ ├── imageType.js │ │ │ │ ├── invoice.js │ │ │ │ ├── language.js │ │ │ │ ├── orderMessage.js │ │ │ │ ├── orderReturnStatus.js │ │ │ │ ├── orderStatus.js │ │ │ │ ├── product.js │ │ │ │ ├── profile.js │ │ │ │ ├── search.js │ │ │ │ ├── searchEngine.js │ │ │ │ ├── seoPage.js │ │ │ │ ├── shop.js │ │ │ │ ├── shopGroup.js │ │ │ │ ├── sqlQuery.js │ │ │ │ ├── state.js │ │ │ │ ├── store.js │ │ │ │ ├── supplier.js │ │ │ │ ├── tag.js │ │ │ │ ├── tax.js │ │ │ │ ├── taxRule.js │ │ │ │ ├── taxRuleGroup.js │ │ │ │ ├── title.js │ │ │ │ ├── webservice.js │ │ │ │ └── zone.js │ │ ├── functional │ │ │ ├── BO │ │ │ │ ├── 02_orders │ │ │ │ │ ├── 01_orders │ │ │ │ │ │ ├── 01_helpCard.js │ │ │ │ │ │ ├── 02_filterOrders.js │ │ │ │ │ │ ├── 03_exportOrders.js │ │ │ │ │ │ ├── 04_checkInvoiceDownloadedFromList.js │ │ │ │ │ │ ├── 05_checkDeliverySlipDownloadedFromList.js │ │ │ │ │ │ ├── 06_bulkUpdateOrdersStatus.js │ │ │ │ │ │ ├── 07_sortOrders.js │ │ │ │ │ │ ├── 08_viewCustomer.js │ │ │ │ │ │ ├── 09_viewGuest.js │ │ │ │ │ │ ├── createOrders │ │ │ │ │ │ │ ├── 01_searchCustomers.js │ │ │ │ │ │ │ ├── 02_createCustomer.js │ │ │ │ │ │ │ └── 03_createSimpleOrderInBO.js │ │ │ │ │ │ └── viewAndEditOrder │ │ │ │ │ │ │ ├── 01_customerBlock.js │ │ │ │ │ │ │ └── 02_productBlock.js │ │ │ │ │ ├── 02_invoices │ │ │ │ │ │ ├── 01_generateInvoiceByDate.js │ │ │ │ │ │ ├── 02_generateInvoiceByStatus.js │ │ │ │ │ │ └── 03_invoiceOptions │ │ │ │ │ │ │ ├── 01_enableDisableInvoices.js │ │ │ │ │ │ │ ├── 02_enableDisableTaxBreakdown.js │ │ │ │ │ │ │ ├── 03_enableDisableProductImage.js │ │ │ │ │ │ │ ├── 04_invoicePrefix.js │ │ │ │ │ │ │ ├── 05_enableDisableCurrentYear.js │ │ │ │ │ │ │ └── 06_otherOptions.js │ │ │ │ │ ├── 03_creditSlips │ │ │ │ │ │ ├── 01_createFilterCreditSlips.js │ │ │ │ │ │ ├── 02_generateCreditSlipsByDate.js │ │ │ │ │ │ └── 03_creditSlipOptions.js │ │ │ │ │ ├── 04_deliverySlips │ │ │ │ │ │ ├── 01_generateDeliverySlipByDate.js │ │ │ │ │ │ └── 02_deliverySlipOptions │ │ │ │ │ │ │ ├── 01_deliverySlipPrefix.js │ │ │ │ │ │ │ ├── 02_deliverySlipNumber.js │ │ │ │ │ │ │ └── 03_enableDisableProductImage.js │ │ │ │ │ └── 05_shoppingCarts │ │ │ │ │ │ ├── 01_filterShoppingCarts.js │ │ │ │ │ │ └── 02_sortAndPagination.js │ │ │ │ ├── 03_catalog │ │ │ │ │ ├── 01_products │ │ │ │ │ │ ├── 01_filterAndQuickEditProducts.js │ │ │ │ │ │ ├── 02_paginationAndSortProducts.js │ │ │ │ │ │ ├── 03_helperCard.js │ │ │ │ │ │ ├── 04_previewProductFromList.js │ │ │ │ │ │ ├── 05_duplicateProductFromList.js │ │ │ │ │ │ └── 06_bulkActions.js │ │ │ │ │ ├── 02_categories │ │ │ │ │ │ ├── 01_filterAndQuickEditCategories.js │ │ │ │ │ │ ├── 02_CRUDCategoryInBO.js │ │ │ │ │ │ ├── 03_categoriesBulkAction.js │ │ │ │ │ │ ├── 04_changeCategoryPosition.js │ │ │ │ │ │ ├── 05_paginationAndSortCategories.js │ │ │ │ │ │ ├── 06_helperCard.js │ │ │ │ │ │ ├── 07_exportCategories.js │ │ │ │ │ │ └── 08_editHomeCategory.js │ │ │ │ │ ├── 03_monitoring │ │ │ │ │ │ ├── 01_deleteEmptyCategory.js │ │ │ │ │ │ ├── 02_monitoringProducts.js │ │ │ │ │ │ ├── 03_helpCard.js │ │ │ │ │ │ ├── 04_sortListOfEmptyCategories.js │ │ │ │ │ │ ├── 05_sortProductsNoQuantityWithCombination.js │ │ │ │ │ │ ├── 06_sortProductsNoQuantityWithoutCombination.js │ │ │ │ │ │ ├── 07_sortDisabledProducts.js │ │ │ │ │ │ ├── 08_sortProductsWithoutImage.js │ │ │ │ │ │ ├── 09_sortProductsWithoutDescription.js │ │ │ │ │ │ └── 10_sortProductsWithoutPrice.js │ │ │ │ │ ├── 04_attributesAndFeatures │ │ │ │ │ │ ├── 01_attributes │ │ │ │ │ │ │ ├── 01_filterAttributes.js │ │ │ │ │ │ │ ├── 02_filterAttributeValues.js │ │ │ │ │ │ │ ├── 03_CRUDAttributesAndValues.js │ │ │ │ │ │ │ ├── 04_bulkDeleteAttributes.js │ │ │ │ │ │ │ ├── 05_sortAndPagination.js │ │ │ │ │ │ │ ├── 06_changeAttributePosition.js │ │ │ │ │ │ │ └── 07_helperCard.js │ │ │ │ │ │ └── 02_features │ │ │ │ │ │ │ ├── 01_filterFeatures.js │ │ │ │ │ │ │ ├── 02_filterFeatureValues.js │ │ │ │ │ │ │ └── 03_helperCard.js │ │ │ │ │ ├── 05_brandsAndSuppliers │ │ │ │ │ │ ├── brands │ │ │ │ │ │ │ ├── 01_filterAndQuickEditBrands.js │ │ │ │ │ │ │ ├── 02_filterBrandAddresses.js │ │ │ │ │ │ │ ├── 03_CRUDBrandAndAddress.js │ │ │ │ │ │ │ ├── 04_BulkActionsBrands.js │ │ │ │ │ │ │ ├── 05_BulkActionsBrandAddresses.js │ │ │ │ │ │ │ ├── 06_paginationAndSortBrandsAndAddresses.js │ │ │ │ │ │ │ ├── 07_exportBrands.js │ │ │ │ │ │ │ └── 08_helperCard.js │ │ │ │ │ │ └── suppliers │ │ │ │ │ │ │ ├── 01_CRUDSupplier.js │ │ │ │ │ │ │ ├── 02_filterQuickEditAndBulkActionsSupplier.js │ │ │ │ │ │ │ ├── 03_helperCard.js │ │ │ │ │ │ │ └── 04_paginationAndSortSuppliers.js │ │ │ │ │ ├── 06_files │ │ │ │ │ │ ├── 01_CRUDFile.js │ │ │ │ │ │ ├── 02_fileBulkActions.js │ │ │ │ │ │ ├── 03_filterPaginationAndSortFiles.js │ │ │ │ │ │ └── 04_helperCard.js │ │ │ │ │ ├── 07_discounts │ │ │ │ │ │ ├── 01_cartRules │ │ │ │ │ │ │ ├── 01_CRUDCartRule.js │ │ │ │ │ │ │ ├── 02_filterQuickEditAndBulkActionsCartRules.js │ │ │ │ │ │ │ └── 03_sortAndPaginationCartRule.js │ │ │ │ │ │ └── 02_catalogPriceRules │ │ │ │ │ │ │ ├── 01_CRUDCatalogPriceRule.js │ │ │ │ │ │ │ └── 02_filterSortAndPagination.js │ │ │ │ │ └── 08_stocks │ │ │ │ │ │ ├── 01_simpleFilterStocks.js │ │ │ │ │ │ ├── 02_updateQuantity.js │ │ │ │ │ │ ├── 03_bulkEditQuantity.js │ │ │ │ │ │ ├── 04_filterStocksByStatus.js │ │ │ │ │ │ └── 06_helpCard.js │ │ │ │ ├── 04_customers │ │ │ │ │ ├── 01_customers │ │ │ │ │ │ ├── 01_filterAndQuickEditCustomers.js │ │ │ │ │ │ ├── 02_CRUDCustomerInBO.js │ │ │ │ │ │ ├── 03_customersBulkActionsInBO.js │ │ │ │ │ │ ├── 04_paginationAndSortCustomers.js │ │ │ │ │ │ ├── 05_setRequiredFields.js │ │ │ │ │ │ ├── 06_exportCustomers.js │ │ │ │ │ │ ├── 07_helpCard.js │ │ │ │ │ │ ├── 08_viewCustomer.js │ │ │ │ │ │ └── 09_subscribeToNewsletter.js │ │ │ │ │ └── 02_addresses │ │ │ │ │ │ ├── 01_filterAddresses.js │ │ │ │ │ │ ├── 02_CRUDAddressInBO.js │ │ │ │ │ │ ├── 03_addressesBulkActions.js │ │ │ │ │ │ ├── 04_paginationAndSortAddresses.js │ │ │ │ │ │ ├── 05_helpCard.js │ │ │ │ │ │ └── 06_setRequiredFields.js │ │ │ │ ├── 05_customerService │ │ │ │ │ ├── 01_customerService │ │ │ │ │ │ └── 01_viewCustomerService.js │ │ │ │ │ ├── 02_orderMessages │ │ │ │ │ │ ├── 01_CRUDOrderMessage.js │ │ │ │ │ │ ├── 02_filterAndBulkDeleteOrderMessages.js │ │ │ │ │ │ └── 03_paginationAndSortOrderMessages.js │ │ │ │ │ └── 03_merchandiseReturns │ │ │ │ │ │ └── 01_activateMerchandiseReturn.js │ │ │ │ ├── 07_modules │ │ │ │ │ └── 01_moduleManager │ │ │ │ │ │ ├── 01_filterModulesByStatus.js │ │ │ │ │ │ ├── 02_filterModulesByCategories.js │ │ │ │ │ │ └── 03_configureModule.js │ │ │ │ ├── 08_design │ │ │ │ │ ├── 03_emailThemes │ │ │ │ │ │ ├── 01_previewEmailThemes.js │ │ │ │ │ │ ├── 02_selectDefaultEmailTheme.js │ │ │ │ │ │ └── 03_viewRawHtmlAndText.js │ │ │ │ │ ├── 04_pages │ │ │ │ │ │ ├── 01_filterAndQuickEditPages.js │ │ │ │ │ │ ├── 02_CRUDPageCategory.js │ │ │ │ │ │ ├── 03_categoriesBulkActions.js │ │ │ │ │ │ ├── 04_filterAndQuickEditCategories.js │ │ │ │ │ │ ├── 05_pagesBulkActions.js │ │ │ │ │ │ ├── 06_helperCard.js │ │ │ │ │ │ ├── 07_paginationAndSortPages.js │ │ │ │ │ │ └── 08_paginationAndSortCategories.js │ │ │ │ │ ├── 05_positions │ │ │ │ │ │ └── 02_searchHook.js │ │ │ │ │ ├── 06_imageSettings │ │ │ │ │ │ ├── 01_filterImageTypes.js │ │ │ │ │ │ ├── 02_CRUDImageType.js │ │ │ │ │ │ ├── 03_bulkDeleteImageTypes.js │ │ │ │ │ │ └── 04_sortAndPagination.js │ │ │ │ │ └── 07_linkWidget │ │ │ │ │ │ └── 01_CreateAndCheckFooterLinkWidget.js │ │ │ │ ├── 09_shipping │ │ │ │ │ ├── 01_carriers │ │ │ │ │ │ ├── 01_CRUDCarrier.js │ │ │ │ │ │ ├── 02_filterSortAndPagination.js │ │ │ │ │ │ ├── 03_quickEditAndBulkActions.js │ │ │ │ │ │ └── 04_changePosition.js │ │ │ │ │ └── 02_preferences │ │ │ │ │ │ ├── 01_handling │ │ │ │ │ │ └── 01_handlingCharges.js │ │ │ │ │ │ └── 02_carrierOptions │ │ │ │ │ │ ├── 01_defaultCarrier.js │ │ │ │ │ │ └── 02_updateCarriersSortOption.js │ │ │ │ ├── 10_payment │ │ │ │ │ └── 02_preferences │ │ │ │ │ │ ├── 01_currencyRestrictions.js │ │ │ │ │ │ ├── 02_groupRestrictions.js │ │ │ │ │ │ ├── 03_countryRestrictions.js │ │ │ │ │ │ └── 04_carrierRestrictions.js │ │ │ │ ├── 11_international │ │ │ │ │ ├── 01_localization │ │ │ │ │ │ ├── currencies │ │ │ │ │ │ │ ├── 01_CreateOfficialCurrency.js │ │ │ │ │ │ │ ├── 02_CreateUnofficialCurrency.js │ │ │ │ │ │ │ ├── 03_helpCard.js │ │ │ │ │ │ │ └── 04_updateExchangeRate.js │ │ │ │ │ │ ├── languages │ │ │ │ │ │ │ ├── 01_filterAndQuickEditLanguages.js │ │ │ │ │ │ │ ├── 02_CRUDLanguage.js │ │ │ │ │ │ │ ├── 03_bulkActionsLanguages.js │ │ │ │ │ │ │ ├── 04_sortAndPagination.js │ │ │ │ │ │ │ └── 05_helpCard.js │ │ │ │ │ │ └── localization │ │ │ │ │ │ │ ├── 01_importLocalizationPack.js │ │ │ │ │ │ │ ├── 02_defaultLanguage.js │ │ │ │ │ │ │ ├── 03_helpCard.js │ │ │ │ │ │ │ ├── 04_defaultCurrency.js │ │ │ │ │ │ │ └── 05_defaultCountry.js │ │ │ │ │ ├── 02_locations │ │ │ │ │ │ ├── 01_zones │ │ │ │ │ │ │ ├── 01_filterAndQuickEditZones.js │ │ │ │ │ │ │ ├── 02_CRUDZone.js │ │ │ │ │ │ │ ├── 03_bulkActionsZones.js │ │ │ │ │ │ │ └── 04_sortAndPagination.js │ │ │ │ │ │ ├── 02_countries │ │ │ │ │ │ │ ├── 01_filterAndQuickEditCountries.js │ │ │ │ │ │ │ ├── 02_CRUDCountry.js │ │ │ │ │ │ │ ├── 03_bulkActionsCountries.js │ │ │ │ │ │ │ ├── 04_sortAndPagination.js │ │ │ │ │ │ │ └── 05_countriesRestrictions.js │ │ │ │ │ │ └── 03_states │ │ │ │ │ │ │ ├── 01_filterAndQuickEditStates.js │ │ │ │ │ │ │ ├── 02_CRUDState.js │ │ │ │ │ │ │ ├── 03_bulkActionsStates.js │ │ │ │ │ │ │ └── 04_sortAndPagination.js │ │ │ │ │ ├── 03_taxes │ │ │ │ │ │ ├── taxRules │ │ │ │ │ │ │ ├── 01_CRUDTaxRules.js │ │ │ │ │ │ │ ├── 02_filterSortAndPagination.js │ │ │ │ │ │ │ └── 03_quickEditAndBulkActions.js │ │ │ │ │ │ └── taxes │ │ │ │ │ │ │ ├── 01_filterAndQuickEditTaxes.js │ │ │ │ │ │ │ ├── 02_CRUDTaxesInBO.js │ │ │ │ │ │ │ ├── 03_taxesBulkActionsInBO.js │ │ │ │ │ │ │ ├── 04_taxOptionsForm.js │ │ │ │ │ │ │ ├── 05_sortTaxes.js │ │ │ │ │ │ │ └── 06_pagination.js │ │ │ │ │ └── 04_translations │ │ │ │ │ │ ├── 01_modifyTranslation.js │ │ │ │ │ │ ├── 02_addUpdateLanguage.js │ │ │ │ │ │ └── 03_exportLanguage.js │ │ │ │ ├── 13_shopParameters │ │ │ │ │ ├── 01_general │ │ │ │ │ │ ├── general │ │ │ │ │ │ │ ├── 08_enableDisableSuppliers.js │ │ │ │ │ │ │ ├── 09_enableDisableBrands.js │ │ │ │ │ │ │ └── 11_enableDisableMultistore.js │ │ │ │ │ │ └── maintenance │ │ │ │ │ │ │ └── 01_enableDisableShop.js │ │ │ │ │ ├── 02_orderSettings │ │ │ │ │ │ ├── 01_orderSettings │ │ │ │ │ │ │ ├── general │ │ │ │ │ │ │ │ ├── 01_enableFinalSummary.js │ │ │ │ │ │ │ │ ├── 02_enableGuestCheckout.js │ │ │ │ │ │ │ │ ├── 03_disableReorderingOption.js │ │ │ │ │ │ │ │ ├── 04_minimumPurchaseTotalRequired.js │ │ │ │ │ │ │ │ └── 06_termsOfService.js │ │ │ │ │ │ │ └── giftOptions │ │ │ │ │ │ │ │ └── 01_giftOptions.js │ │ │ │ │ │ └── 02_statuses │ │ │ │ │ │ │ ├── returnStatuses │ │ │ │ │ │ │ ├── 01_CRUDOrderReturnStatus.js │ │ │ │ │ │ │ └── 02_filterSortAndPagination.js │ │ │ │ │ │ │ └── statuses │ │ │ │ │ │ │ ├── 01_CRUDOrderStatus.js │ │ │ │ │ │ │ ├── 02_filterSortAndPagination.js │ │ │ │ │ │ │ └── 03_quickEdit.js │ │ │ │ │ ├── 03_productSettings │ │ │ │ │ │ ├── 01_productsGeneral │ │ │ │ │ │ │ ├── 01_catalogMode.js │ │ │ │ │ │ │ ├── 02_newDaysNumber.js │ │ │ │ │ │ │ ├── 03_maxSizeShortDescription.js │ │ │ │ │ │ │ ├── 04_quantityDiscountsBasedOn.js │ │ │ │ │ │ │ ├── 05_forceUpdateFriendlyURL.js │ │ │ │ │ │ │ └── 06_defaultActivationStatus.js │ │ │ │ │ │ ├── 02_productPage │ │ │ │ │ │ │ ├── 01_displayAvailableQuantities.js │ │ │ │ │ │ │ ├── 02_displayRemainingQuantities.js │ │ │ │ │ │ │ ├── 03_displayUnavailableProductAttributes.js │ │ │ │ │ │ │ ├── 05_separatorOfAttributeAnchor.js │ │ │ │ │ │ │ └── 06_displayDiscountedPrice.js │ │ │ │ │ │ ├── 03_productsStock │ │ │ │ │ │ │ ├── 01_allowOrderingOutOfStock.js │ │ │ │ │ │ │ ├── 02_enableStockManagement.js │ │ │ │ │ │ │ ├── 03_labelOfInStockProducts.js │ │ │ │ │ │ │ ├── 04_labelOutOfStock.js │ │ │ │ │ │ │ ├── 06_enableDeliveryTimeInStockProducts.js │ │ │ │ │ │ │ ├── 07_enableDeliveryTimeOutOfStockProducts.js │ │ │ │ │ │ │ └── 08_defaultPackStockManagement.js │ │ │ │ │ │ └── 04_pagination │ │ │ │ │ │ │ ├── 01_updateNumberOfProductsPerPage.js │ │ │ │ │ │ │ └── 02_updateDefaultProductsOrder.js │ │ │ │ │ ├── 04_customerSettings │ │ │ │ │ │ ├── 01_customers │ │ │ │ │ │ │ ├── 01_redisplayCartAtLogin.js │ │ │ │ │ │ │ ├── 02_sendEmailAfterRegistration.js │ │ │ │ │ │ │ ├── 04_enableB2BMode.js │ │ │ │ │ │ │ ├── 05_askForBirthDate.js │ │ │ │ │ │ │ └── 06_enablePartnerOffers.js │ │ │ │ │ │ ├── 02_groups │ │ │ │ │ │ │ ├── 01_filterGroups.js │ │ │ │ │ │ │ ├── 02_CRUDGroups.js │ │ │ │ │ │ │ └── 03_bulkDeleteGroups.js │ │ │ │ │ │ └── 03_titles │ │ │ │ │ │ │ ├── 01_filterTitles.js │ │ │ │ │ │ │ ├── 02_CRUDTitles.js │ │ │ │ │ │ │ └── 03_bulkDeleteTitles.js │ │ │ │ │ ├── 05_contact │ │ │ │ │ │ ├── 01_filterContacts.js │ │ │ │ │ │ ├── 02_CRUDContact.js │ │ │ │ │ │ ├── 03_contactBulkActions.js │ │ │ │ │ │ ├── 04_sortContacts.js │ │ │ │ │ │ └── stores │ │ │ │ │ │ │ ├── 01_filterAndQuickEditStores.js │ │ │ │ │ │ │ ├── 02_CRUDStores.js │ │ │ │ │ │ │ ├── 03_bulkActionsStores.js │ │ │ │ │ │ │ ├── 04_sortAndPagination.js │ │ │ │ │ │ │ └── 05_contactDetails.js │ │ │ │ │ ├── 06_trafficAndSeo │ │ │ │ │ │ ├── 01_seoAndUrls │ │ │ │ │ │ │ ├── 01_seoAndUrls │ │ │ │ │ │ │ │ ├── 01_filterSeoPages.js │ │ │ │ │ │ │ │ ├── 02_CRUDSeoPage.js │ │ │ │ │ │ │ │ ├── 06_sortAndPaginationSeoPages.js │ │ │ │ │ │ │ │ └── 07_bulkDeleteSeoPages.js │ │ │ │ │ │ │ ├── 02_setUpUrls │ │ │ │ │ │ │ │ ├── 03_enableDisableFriendlyURL.js │ │ │ │ │ │ │ │ └── 04_enableDisableAccentedURL.js │ │ │ │ │ │ │ ├── 05_seoOptions │ │ │ │ │ │ │ │ └── 01_displayAttributesInProductMetaTitle.js │ │ │ │ │ │ │ └── helperCard.js │ │ │ │ │ │ └── 02_searchEngines │ │ │ │ │ │ │ ├── 01_filterSortAndPagination.js │ │ │ │ │ │ │ ├── 02_CRUDSearchEngines.js │ │ │ │ │ │ │ └── 03_bulkActions.js │ │ │ │ │ └── 07_search │ │ │ │ │ │ ├── 01_search │ │ │ │ │ │ ├── 01_CRUDSearch.js │ │ │ │ │ │ ├── 02_bulkActions.js │ │ │ │ │ │ └── 03_quickEditStatus.js │ │ │ │ │ │ └── 02_tags │ │ │ │ │ │ ├── 01_CRUDTag.js │ │ │ │ │ │ └── 02_filterSortAndPagination.js │ │ │ │ └── 14_advancedParameters │ │ │ │ │ ├── 04_email │ │ │ │ │ ├── 01_filterDeleteAndBulkActionsEmails.js │ │ │ │ │ ├── 02_enableDisableLogEmails.js │ │ │ │ │ ├── 03_sendTestEmail │ │ │ │ │ │ └── 01_sendTestEmail.js │ │ │ │ │ └── 03_sortAndPagination.js │ │ │ │ │ ├── 05_import │ │ │ │ │ ├── 01_downloadSampleFiles.js │ │ │ │ │ └── 02_importFile.js │ │ │ │ │ ├── 06_team │ │ │ │ │ ├── employees │ │ │ │ │ │ ├── 01_filterAndQuickEditEmployees.js │ │ │ │ │ │ ├── 02_CRUDEmployee.js │ │ │ │ │ │ ├── 03_employeesBulkActions.js │ │ │ │ │ │ ├── 04_helpCard.js │ │ │ │ │ │ └── 05_sortAndPagination.js │ │ │ │ │ └── profiles │ │ │ │ │ │ ├── 01_filterProfiles.js │ │ │ │ │ │ ├── 02_CRUDProfile.js │ │ │ │ │ │ ├── 03_profileBulkActions.js │ │ │ │ │ │ ├── 04_helpCard.js │ │ │ │ │ │ ├── 05_sortProfiles.js │ │ │ │ │ │ └── 06_profilesPagination.js │ │ │ │ │ ├── 07_database │ │ │ │ │ ├── dbBackup │ │ │ │ │ │ ├── 01_CreateAndDeleteDbBackup.js │ │ │ │ │ │ ├── 02_paginationAndBulkDelete.js │ │ │ │ │ │ └── 03_helpCard.js │ │ │ │ │ └── sqlManager │ │ │ │ │ │ ├── 01_CRUDSqlQuery.js │ │ │ │ │ │ ├── 02_helpCard.js │ │ │ │ │ │ ├── 03_exportSqlQuery.js │ │ │ │ │ │ └── 04_filterSortAndPagination.js │ │ │ │ │ ├── 08_logs │ │ │ │ │ └── 01_filterSortAndPagination.js │ │ │ │ │ ├── 09_webservice │ │ │ │ │ ├── 01_CRUDWebservice.js │ │ │ │ │ ├── 02_filterAndQuickEditWebservice.js │ │ │ │ │ ├── 03_helpCard.js │ │ │ │ │ └── 04_sortPaginationAndBulkActions.js │ │ │ │ │ └── 10_multistore │ │ │ │ │ ├── 01_CRUDShopGroups.js │ │ │ │ │ ├── 02_filterSortAndPaginationShopGroups.js │ │ │ │ │ ├── 03_CRUDShops.js │ │ │ │ │ ├── 04_filterSortAndPaginationShops.js │ │ │ │ │ ├── 05_filterSortAndPaginationShopUrls.js │ │ │ │ │ └── 06_quickEditAndbulkActionsShopUrls.js │ │ │ └── FO │ │ │ │ ├── 02_headerAndFooter │ │ │ │ ├── 01_checkLinksInHeader.js │ │ │ │ └── 02_checkLinksInFooter.js │ │ │ │ ├── 03_userAccount │ │ │ │ ├── 01_editInformation.js │ │ │ │ ├── 01_orderHistory │ │ │ │ │ └── 01_orderDetails │ │ │ │ │ │ └── 01_sendMessage.js │ │ │ │ ├── 02_CRUDAddress.js │ │ │ │ ├── 03_userDiscounts.js │ │ │ │ └── 04_orderList.js │ │ │ │ ├── 04_contactUs │ │ │ │ ├── 01_checkMailtoLink.js │ │ │ │ └── 02_sendMessageWithCustomer.js │ │ │ │ ├── 06_search │ │ │ │ └── 01_consultAutocompleteList.js │ │ │ │ ├── 07_menuAndNavigation │ │ │ │ └── 01_consultCategoriesInHeader.js │ │ │ │ └── 08_productPage │ │ │ │ ├── 01_quickView.js │ │ │ │ └── 02_addToCart.js │ │ ├── regression │ │ │ └── currencies │ │ │ │ └── computingPrecision_FO.js │ │ ├── sanity │ │ │ ├── 01_installShop │ │ │ │ └── 01_installShop.js │ │ │ ├── 02_productsBO │ │ │ │ ├── 01_filterProducts.js │ │ │ │ ├── 02_CRUDStandardProductInBO.js │ │ │ │ ├── 03_CRUDStandardProductWithCombinationsInBO.js │ │ │ │ ├── 04_deleteProduct.js │ │ │ │ └── 05_deleteProductsWithBulkActions.js │ │ │ ├── 03_ordersBO │ │ │ │ ├── 01_filterOrders.js │ │ │ │ └── 02_editOrder.js │ │ │ ├── 04_catalogFO │ │ │ │ ├── 01_filterProducts.js │ │ │ │ └── 02_checkProduct.js │ │ │ ├── 05_cartFO │ │ │ │ └── 01_editCheckCart.js │ │ │ └── 06_checkoutFO │ │ │ │ └── 01_orderProduct.js │ │ ├── tools │ │ │ ├── linkchecker.js │ │ │ ├── stepIdentifiersChecker.js │ │ │ └── urls.js │ │ └── utils │ │ │ ├── files.js │ │ │ ├── globals.js │ │ │ ├── helpers.js │ │ │ ├── setup.js │ │ │ └── testContext.js │ ├── docker-compose.nightly.yml │ ├── docker-compose.ps-git.yml │ ├── docker-compose.tests.yml │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── BO │ │ │ ├── BObasePage.js │ │ │ ├── advancedParameters │ │ │ │ ├── database │ │ │ │ │ ├── dbBackup │ │ │ │ │ │ └── index.js │ │ │ │ │ └── sqlManager │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── view.js │ │ │ │ ├── email │ │ │ │ │ └── index.js │ │ │ │ ├── import │ │ │ │ │ └── index.js │ │ │ │ ├── logs │ │ │ │ │ └── index.js │ │ │ │ ├── multistore │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── shop │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── url │ │ │ │ │ │ ├── addURL.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── team │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── profiles │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ └── index.js │ │ │ │ └── webservice │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ ├── catalog │ │ │ │ ├── attributes │ │ │ │ │ ├── addAttribute.js │ │ │ │ │ ├── addValue.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── view.js │ │ │ │ ├── brands │ │ │ │ │ ├── add.js │ │ │ │ │ ├── addresses │ │ │ │ │ │ └── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── view.js │ │ │ │ ├── categories │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── discounts │ │ │ │ │ ├── add.js │ │ │ │ │ ├── catalogPriceRules │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── features │ │ │ │ │ ├── index.js │ │ │ │ │ └── view.js │ │ │ │ ├── files │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── monitoring │ │ │ │ │ └── index.js │ │ │ │ ├── products │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── stocks │ │ │ │ │ ├── index.js │ │ │ │ │ └── movements │ │ │ │ │ │ └── index.js │ │ │ │ └── suppliers │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── view.js │ │ │ ├── customerService │ │ │ │ ├── customerService │ │ │ │ │ ├── index.js │ │ │ │ │ └── view.js │ │ │ │ ├── merchandiseReturns │ │ │ │ │ └── index.js │ │ │ │ └── orderMessages │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ ├── customers │ │ │ │ ├── add.js │ │ │ │ ├── addresses │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── view.js │ │ │ ├── dashboard │ │ │ │ └── index.js │ │ │ ├── design │ │ │ │ ├── emailThemes │ │ │ │ │ ├── index.js │ │ │ │ │ └── preview.js │ │ │ │ ├── imageSettings │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── linkWidgets │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── pages │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── pageCategory │ │ │ │ │ │ └── add.js │ │ │ │ └── positions │ │ │ │ │ └── index.js │ │ │ ├── international │ │ │ │ ├── currencies │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── languages │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── localization │ │ │ │ │ ├── index.js │ │ │ │ │ └── localizationBasePage.js │ │ │ │ ├── locations │ │ │ │ │ ├── add.js │ │ │ │ │ ├── countries │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── states │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── taxes │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── taxRules │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ └── index.js │ │ │ │ └── translations │ │ │ │ │ └── index.js │ │ │ ├── login │ │ │ │ └── index.js │ │ │ ├── modules │ │ │ │ ├── moduleCatalog │ │ │ │ │ └── index.js │ │ │ │ ├── moduleConfiguration │ │ │ │ │ └── index.js │ │ │ │ ├── moduleManager │ │ │ │ │ └── index.js │ │ │ │ └── psEmailSubscription │ │ │ │ │ └── index.js │ │ │ ├── orders │ │ │ │ ├── add.js │ │ │ │ ├── creditSlips │ │ │ │ │ └── index.js │ │ │ │ ├── deliverySlips │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── invoices │ │ │ │ │ └── index.js │ │ │ │ ├── shoppingCarts │ │ │ │ │ ├── index.js │ │ │ │ │ └── view.js │ │ │ │ └── view.js │ │ │ ├── payment │ │ │ │ └── preferences │ │ │ │ │ └── index.js │ │ │ ├── shipping │ │ │ │ ├── carriers │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ └── preferences │ │ │ │ │ └── index.js │ │ │ └── shopParameters │ │ │ │ ├── contact │ │ │ │ ├── add.js │ │ │ │ └── index.js │ │ │ │ ├── customerSettings │ │ │ │ ├── groups │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── options.js │ │ │ │ └── titles │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── general │ │ │ │ ├── index.js │ │ │ │ └── maintenance │ │ │ │ │ └── index.js │ │ │ │ ├── orderSettings │ │ │ │ ├── index.js │ │ │ │ └── statuses │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── returnStatus │ │ │ │ │ └── add.js │ │ │ │ ├── productSettings │ │ │ │ └── index.js │ │ │ │ ├── search │ │ │ │ ├── add.js │ │ │ │ ├── index.js │ │ │ │ └── tags │ │ │ │ │ ├── add.js │ │ │ │ │ └── index.js │ │ │ │ ├── stores │ │ │ │ ├── add.js │ │ │ │ └── index.js │ │ │ │ └── trafficAndSeo │ │ │ │ ├── searchEngines │ │ │ │ ├── add.js │ │ │ │ └── index.js │ │ │ │ └── seoAndUrls │ │ │ │ ├── add.js │ │ │ │ └── index.js │ │ ├── CONVENTIONS.md │ │ ├── FO │ │ │ ├── FObasePage.js │ │ │ ├── aboutUs │ │ │ │ └── index.js │ │ │ ├── bestSales │ │ │ │ └── index.js │ │ │ ├── cart │ │ │ │ └── index.js │ │ │ ├── category │ │ │ │ └── index.js │ │ │ ├── checkout │ │ │ │ ├── index.js │ │ │ │ └── orderConfirmation.js │ │ │ ├── cms │ │ │ │ └── index.js │ │ │ ├── contactUs │ │ │ │ └── index.js │ │ │ ├── delivery │ │ │ │ └── index.js │ │ │ ├── home │ │ │ │ └── index.js │ │ │ ├── legalNotice │ │ │ │ └── index.js │ │ │ ├── login │ │ │ │ └── index.js │ │ │ ├── myAccount │ │ │ │ ├── add.js │ │ │ │ ├── addAddress.js │ │ │ │ ├── addresses.js │ │ │ │ ├── creditSlips.js │ │ │ │ ├── identity.js │ │ │ │ ├── index.js │ │ │ │ ├── orderDetails.js │ │ │ │ ├── orderHistory.js │ │ │ │ └── vouchers.js │ │ │ ├── newProducts │ │ │ │ └── index.js │ │ │ ├── pricesDrop │ │ │ │ └── index.js │ │ │ ├── product │ │ │ │ └── index.js │ │ │ ├── searchResults │ │ │ │ └── index.js │ │ │ ├── securePayment │ │ │ │ └── index.js │ │ │ ├── siteMap │ │ │ │ └── index.js │ │ │ ├── stores │ │ │ │ └── index.js │ │ │ └── termsAndConditionsOfUse │ │ │ │ └── index.js │ │ ├── commonPage.js │ │ └── install │ │ │ └── index.js │ └── scripts │ │ ├── combine-reports.py │ │ ├── run-nightly-reports.sh │ │ └── run-nightly-tests.sh ├── Unit │ ├── Adapter │ │ ├── Cart │ │ │ └── Comparator │ │ │ │ └── CartProductsComparatorTest.php │ │ ├── ContainerFinderTest.php │ │ ├── ContextStateManagerTest.php │ │ ├── Hook │ │ │ └── HookDispatcherTest.php │ │ ├── MailTemplate │ │ │ ├── MailPartialTemplateRendererTest.php │ │ │ └── MailTemplateTwigRendererTest.php │ │ ├── News │ │ │ └── NewsDataProviderTest.php │ │ └── Routing │ │ │ ├── AdminLinkBuilderTest.php │ │ │ └── LegacyHelperLinkBuilderTest.php │ ├── Classes │ │ └── ModuleGraphTest.php │ ├── Core │ │ ├── Checkout │ │ │ └── TermsAndConditionsTest.php │ │ ├── CommandBus │ │ │ ├── Parser │ │ │ │ ├── CommandDefinitionParserTest.php │ │ │ │ └── CommandDefinitionTest.php │ │ │ └── TacticianCommandBusAdapterTest.php │ │ ├── ConstraintValidator │ │ │ ├── CleanHtmlValidatorTest.php │ │ │ ├── CustomerNameValidatorTest.php │ │ │ ├── DefaultLanguageValidatorTest.php │ │ │ ├── IsUrlRewriteValidatorTest.php │ │ │ └── TypedRegexValidatorTest.php │ │ ├── Crypto │ │ │ └── HashingTest.php │ │ ├── Currency │ │ │ └── ExchangeRateProviderTest.php │ │ ├── Data │ │ │ └── AbstractTypedCollectionTest.php │ │ ├── Domain │ │ │ ├── CartRule │ │ │ │ └── ValueObject │ │ │ │ │ └── CartRuleAction │ │ │ │ │ └── CartRuleActionBuilderTest.php │ │ │ ├── CmsPageCategory │ │ │ │ └── Command │ │ │ │ │ ├── AddCmsPageCategoryCommandTest.php │ │ │ │ │ └── EditCmsPageCategoryCommandTest.php │ │ │ ├── Contact │ │ │ │ └── Command │ │ │ │ │ ├── AddContactCommandTest.php │ │ │ │ │ └── EditContactCommandTest.php │ │ │ ├── Country │ │ │ │ └── ZipCodePatternResolverTest.php │ │ │ ├── Currency │ │ │ │ └── ValueObject │ │ │ │ │ ├── CurrencyExchangeRateTest.php │ │ │ │ │ ├── CurrencyIsoCodeTest.php │ │ │ │ │ ├── CurrencyNumericIsoCodeTest.php │ │ │ │ │ └── CurrencyPrecisionTest.php │ │ │ ├── Customer │ │ │ │ └── ValueObject │ │ │ │ │ ├── ApeCodeTest.php │ │ │ │ │ ├── BirthdayTest.php │ │ │ │ │ ├── FirstNameTest.php │ │ │ │ │ └── PasswordTest.php │ │ │ ├── CustomerService │ │ │ │ └── ValueObject │ │ │ │ │ └── CustomerThreadStatusTest.php │ │ │ ├── Employee │ │ │ │ └── ValueObject │ │ │ │ │ └── EmployeeIdTest.php │ │ │ ├── Language │ │ │ │ └── ValueObject │ │ │ │ │ ├── IsoCodeTest.php │ │ │ │ │ └── TagIETFTest.php │ │ │ ├── Meta │ │ │ │ ├── AddMetaCommandTest.php │ │ │ │ └── EditMetaCommandTest.php │ │ │ ├── Order │ │ │ │ ├── Payment │ │ │ │ │ └── Command │ │ │ │ │ │ └── AddPaymentCommandTest.php │ │ │ │ └── QueryResult │ │ │ │ │ ├── OrderCustomerForViewingTest.php │ │ │ │ │ ├── OrderForViewingTest.php │ │ │ │ │ ├── OrderInvoiceAddressForViewingTest.php │ │ │ │ │ ├── OrderPreviewInvoiceDetailsTest.php │ │ │ │ │ ├── OrderPreviewShippingDetailsTest.php │ │ │ │ │ ├── OrderPreviewTest.php │ │ │ │ │ └── OrderShippingAddressForViewingTest.php │ │ │ ├── Product │ │ │ │ └── Query │ │ │ │ │ └── SearchProductsTest.php │ │ │ ├── Profile │ │ │ │ └── ValueObject │ │ │ │ │ └── ProfileIdTest.php │ │ │ └── ValueObject │ │ │ │ └── EmailTest.php │ │ ├── Form │ │ │ └── IdentifiableObject │ │ │ │ ├── Builder │ │ │ │ ├── FormBuilderFactoryTest.php │ │ │ │ └── FormBuilderTest.php │ │ │ │ ├── DataProvider │ │ │ │ ├── CustomerFormDataProviderTest.php │ │ │ │ └── LanguageFormDataProviderTest.php │ │ │ │ └── Handler │ │ │ │ ├── FormHandlerFactoryTest.php │ │ │ │ └── FormHandlerTest.php │ │ ├── Foundation │ │ │ └── VersionTest.php │ │ ├── Hook │ │ │ └── Generator │ │ │ │ └── HookDescriptionGeneratorTest.php │ │ ├── Image │ │ │ ├── Deleter │ │ │ │ └── ImageFileDeleterTest.php │ │ │ └── Parser │ │ │ │ └── ImageTagSourceParserTest.php │ │ ├── Kpi │ │ │ ├── HookableKpiRowFactoryTest.php │ │ │ ├── KpiRowFactoryTest.php │ │ │ ├── KpiRowPresenterTest.php │ │ │ └── KpiRowTest.php │ │ ├── Language │ │ │ └── LanguageDefaultFontsCatalogTest.php │ │ ├── Localization │ │ │ ├── CLDR │ │ │ │ └── ComputingPrecisionTest.php │ │ │ └── Currency │ │ │ │ └── PatternTransformerTest.php │ │ ├── MailTemplate │ │ │ ├── CSSInlineTransformationTest.php │ │ │ ├── FolderThemeCatalogTest.php │ │ │ ├── HTMLToTextTransformationTest.php │ │ │ ├── LayoutVariablesBuilderTest.php │ │ │ ├── MailVariablesTransformationTest.php │ │ │ └── ThemeCollectionTest.php │ │ ├── Product │ │ │ └── Search │ │ │ │ ├── FacetTest.php │ │ │ │ └── FilterTest.php │ │ ├── Routing │ │ │ └── EntityLinkBuilderFactoryTest.php │ │ ├── Search │ │ │ ├── Builder │ │ │ │ ├── ChainedFiltersBuilderTest.php │ │ │ │ ├── ClassFiltersBuilderTest.php │ │ │ │ ├── RepositoryFiltersBuilderTest.php │ │ │ │ └── RequestFiltersBuilderTest.php │ │ │ └── SearchParametersTest.php │ │ ├── Security │ │ │ └── HtaccessFolderGuardTest.php │ │ ├── Util │ │ │ ├── BoolParserTest.php │ │ │ ├── ColorBrightnessCalculatorTest.php │ │ │ ├── File │ │ │ │ └── FileSizeConverterTest.php │ │ │ ├── HelperCard │ │ │ │ └── DocumentationLinkProviderTest.php │ │ │ ├── String │ │ │ │ ├── StringModifierTest.php │ │ │ │ └── StringValidatorTest.php │ │ │ ├── Url │ │ │ │ ├── BackUrlProviderTest.php │ │ │ │ └── UrlFileCheckerTest.php │ │ │ └── YamlParserTest.php │ │ └── Webservice │ │ │ └── ServerRequirementsCheckerTest.php │ ├── PrestaShopBundle │ │ ├── Cache │ │ │ └── ModuleTemplateCacheWarmerTest.php │ │ ├── Controller │ │ │ └── ArgumentResolver │ │ │ │ └── SearchParametersResolverTest.php │ │ ├── Entity │ │ │ └── Repository │ │ │ │ └── LangRepositoryTest.php │ │ ├── EventListener │ │ │ └── BackUrlRedirectResponseListenerTest.php │ │ ├── Form │ │ │ └── DataTransformer │ │ │ │ ├── ArabicToLatinDigitDataTransformerTest.php │ │ │ │ ├── DefaultLanguageToFilledArrayDataTransformerTest.php │ │ │ │ └── StringArrayToIntegerArrayDataTransformerTest.php │ │ ├── Routing │ │ │ ├── Converter │ │ │ │ ├── CacheProviderTest.php │ │ │ │ ├── LegacyParametersConverterTest.php │ │ │ │ ├── LegacyRouteTest.php │ │ │ │ ├── LegacyUrlConverterTest.php │ │ │ │ ├── RouterProviderTest.php │ │ │ │ └── RoutingCacheKeyGeneratorTest.php │ │ │ └── Linter │ │ │ │ └── NamingConventionLinterTest.php │ │ ├── Service │ │ │ ├── DataProvider │ │ │ │ └── Admin │ │ │ │ │ ├── CategoriesProviderTest.php │ │ │ │ │ └── fixtures │ │ │ │ │ └── categories.yml │ │ │ └── Hook │ │ │ │ └── HookFinderTest.php │ │ ├── Translation │ │ │ └── Loader │ │ │ │ ├── LegacyFileLoaderTest.php │ │ │ │ └── LegacyTranslationKeyTest.php │ │ └── Twig │ │ │ ├── Extension │ │ │ └── PathWithBackUrlExtensionTest.php │ │ │ ├── Fixtures │ │ │ └── modules │ │ │ │ ├── dummy.md │ │ │ │ └── template.html.twig │ │ │ └── Locator │ │ │ └── ModuleTemplateIteratorTest.php │ ├── README.md │ ├── Resources │ │ ├── assets │ │ │ └── css │ │ │ │ ├── override.css │ │ │ │ ├── sizes.css │ │ │ │ └── titles.css │ │ ├── currencies-feed │ │ │ ├── currencies-usd.xml │ │ │ └── currencies.xml │ │ ├── mails │ │ │ ├── html │ │ │ │ └── account.html │ │ │ ├── templates │ │ │ │ └── account.html.twig │ │ │ └── txt │ │ │ │ └── account.txt │ │ ├── rss │ │ │ └── blog-fr.xml │ │ └── security │ │ │ └── htaccess │ ├── bootstrap.php │ └── phpunit.xml ├── check_e2e.sh ├── check_file_syntax.sh ├── check_integration.sh ├── check_sanity.sh ├── check_unit.sh ├── index.php └── travis-ci-apache-vhost ├── themes ├── .htaccess ├── _core │ └── js │ │ ├── address.js │ │ ├── cart.js │ │ ├── checkout-address.js │ │ ├── checkout-delivery.js │ │ ├── checkout-payment.js │ │ ├── checkout-steps.js │ │ ├── checkout.js │ │ ├── common.js │ │ ├── email-idn.js │ │ ├── facets.js │ │ ├── listing.js │ │ ├── migrate-mute.js │ │ ├── product.js │ │ └── theme.js ├── _libraries │ └── font-awesome │ │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── classic │ ├── CONTRIBUTING.md │ ├── README.md │ ├── _dev │ │ ├── .htaccess │ │ ├── css │ │ │ ├── components │ │ │ │ ├── alert.scss │ │ │ │ ├── block-reassurance.scss │ │ │ │ ├── brands.scss │ │ │ │ ├── cart.scss │ │ │ │ ├── categories.scss │ │ │ │ ├── checkout.scss │ │ │ │ ├── contact.scss │ │ │ │ ├── custom-text.scss │ │ │ │ ├── customer.scss │ │ │ │ ├── customization-modal.scss │ │ │ │ ├── drop-down.scss │ │ │ │ ├── errors.scss │ │ │ │ ├── featuredproducts.scss │ │ │ │ ├── footer.scss │ │ │ │ ├── forgotten-password.scss │ │ │ │ ├── imageslider.scss │ │ │ │ ├── mainmenu.scss │ │ │ │ ├── newsletter.scss │ │ │ │ ├── products.scss │ │ │ │ ├── quickview.scss │ │ │ │ ├── renew-password.scss │ │ │ │ ├── search-widget.scss │ │ │ │ ├── sitemap.scss │ │ │ │ └── stores.scss │ │ │ ├── partials │ │ │ │ ├── _commons.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _mixins.scss │ │ │ │ └── _variables.scss │ │ │ └── theme.scss │ │ ├── img │ │ │ ├── facebook-blue.svg │ │ │ ├── facebook-gray.svg │ │ │ ├── facebook.svg │ │ │ ├── gplus-blue.svg │ │ │ ├── gplus-gray.svg │ │ │ ├── gplus.svg │ │ │ ├── instagram.svg │ │ │ ├── pinterest-blue.svg │ │ │ ├── pinterest-gray.svg │ │ │ ├── pinterest.svg │ │ │ ├── rss.svg │ │ │ ├── twitter-blue.svg │ │ │ ├── twitter-gray.svg │ │ │ ├── twitter.svg │ │ │ ├── vimeo.svg │ │ │ └── youtube.svg │ │ ├── js │ │ │ ├── cart.js │ │ │ ├── checkout.js │ │ │ ├── components │ │ │ │ ├── block-cart.js │ │ │ │ ├── drop-down.js │ │ │ │ ├── form.js │ │ │ │ ├── product-miniature.js │ │ │ │ ├── product-select.js │ │ │ │ └── top-menu.js │ │ │ ├── customer.js │ │ │ ├── lib │ │ │ │ ├── bootstrap-filestyle.min.js │ │ │ │ └── jquery.scrollbox.min.js │ │ │ ├── listing.js │ │ │ ├── product.js │ │ │ ├── responsive.js │ │ │ └── theme.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ └── webpack.config.js │ ├── assets │ │ ├── css │ │ │ ├── 012cf6a10129e2275d79d6adac7f3b02.woff │ │ │ ├── 0266b05265f317a7409560b751cd61e8.svg │ │ │ ├── 0509ab09c1b0d2200a4135803c91d6ce.woff2 │ │ │ ├── 082a71677e756fb75817e8f262a07cb4.svg │ │ │ ├── 154da4697acc779b55af0a67f1241e4e.ttf │ │ │ ├── 16a2e274512a3e5f752ee83b66ed0d9d.woff │ │ │ ├── 199038f07312bfc6f0aabd3ed6a2b64d.woff2 │ │ │ ├── 19c1b868764c0e4d15a45d3f61250488.woff2 │ │ │ ├── 22c0528acb6d9cd5bf4c8f96381bc05c.svg │ │ │ ├── 29b882f018fa6fe75fd338aaae6235b8.woff │ │ │ ├── 2fd9c16b805724d590c0cff96da070a4.ttf │ │ │ ├── 31973fa52e481ba490f242d2ab896fd2.otf │ │ │ ├── 332f555bb44cdc394d6c799df0c03389.woff │ │ │ ├── 36bff72dcba3098b4b70b482b22c29ab.svg │ │ │ ├── 37c00b97e26ac9fe903a6ccc9ea48644.woff2 │ │ │ ├── 3935e107ea61866e60d7946dc6a962f1.svg │ │ │ ├── 3a2aeeba930cc29e4d31ebfa1b7cdaa2.svg │ │ │ ├── 3c100c613625f06a5e00ddbba18b7f61.woff2 │ │ │ ├── 3cea6e29c4001d672667a93775cb061e.woff │ │ │ ├── 3d34be670a7f15086e512282b97ae35e.svg │ │ │ ├── 3d4a907b1b7a232654324a3dd7ae4aa3.eot │ │ │ ├── 3f81521029cc8a9a703419c4a74704a0.woff │ │ │ ├── 441244cf44090a0ff88abc33fbbca97d.woff2 │ │ │ ├── 484b6c5b3a6f889b62b1985d44467096.woff │ │ │ ├── 4f6ff3639c1e5728b905b650c1a06e75.ttf │ │ │ ├── 570eb83859dc23dd0eec423a49e147fe.woff2 │ │ │ ├── 5dc400bcedda37b13f35cb44623193cf.svg │ │ │ ├── 5ea9fdf2293930126fa9c544968009ae.svg │ │ │ ├── 5f25f98ad449e14f35dbe987e0d090e8.woff │ │ │ ├── 6b7897c9d28b17fce51b4b20052bf93f.otf │ │ │ ├── 6c9f93a2edff065d81710586bf74fbe3.woff2 │ │ │ ├── 7988be8b63edf9c4accebf94d5db7927.svg │ │ │ ├── 7a3ebca0cba2e2c6090e84e1d77e0f94.woff2 │ │ │ ├── 7af88092dbd37f08241da9f416dee798.woff2 │ │ │ ├── 7c24d4275efcbe8891f78378b7c808e0.svg │ │ │ ├── 80e74ff9406650e53bbec1e292c2c094.svg │ │ │ ├── 8325e7ea6f0adcae48d1dbc6e45d1951.woff │ │ │ ├── 846c191efd3d0aacde5a916cf2ebf1a4.woff │ │ │ ├── 85b96796bdaef0c326c1bbb18f0222ea.otf │ │ │ ├── 860d372f9b96d1b53a5b82a6cec33878.woff │ │ │ ├── 8b05d51ede908907d65695558974d86f.svg │ │ │ ├── 96c476804d7a788cc1c05351b287ee41.eot │ │ │ ├── 99db8adec61e4fcf5586e1afa549b432.svg │ │ │ ├── a00289fe0098f0dc10fcc3ece8073bb6.woff2 │ │ │ ├── a165a42685795361b25593effb32fdb1.ttf │ │ │ ├── a37b0c01c0baf1888ca812cc0508f6e2.ttf │ │ │ ├── a67175d1ea11389d9107bd8c08f9d7d7.svg │ │ │ ├── a68cfe9d548950edf5df102269877edd.woff2 │ │ │ ├── a6fa3bd125ff6df3f77ce6c4203e4282.woff2 │ │ │ ├── a77ade19de3d3762dfbf1fe553b293cc.eot │ │ │ ├── ab2fd20ee1acaabb676ee6fd2432437b.otf │ │ │ ├── ae7c5af0c35d94dbcd1c599fc7b400b7.otf │ │ │ ├── afb2ed6d67613a724a420a39b4fe5b0d.svg │ │ │ ├── b0a4a6ccf7d97d473f4590541a20f950.otf │ │ │ ├── b1db819132e64a3e01911a1413c33acf.svg │ │ │ ├── b467416c449eb823029e16347b2ea510.eot │ │ │ ├── c135a20aa76cea4876a24bf50c7c821d.svg │ │ │ ├── c1a65805f759901a39d10eb854c1dcf2.svg │ │ │ ├── c2183257e7a697769df4200c547551f1.woff │ │ │ ├── c246dc6aecd6b7007b935466d04e3082.woff │ │ │ ├── cb519ea75f9f92a1ed78efdf2f4fdfef.otf │ │ │ ├── cf2f3c1d5c7cb02c29f61964313148e1.svg │ │ │ ├── custom.css │ │ │ ├── custom_rtl.css │ │ │ ├── d1a435fd2571e67858a31ee954b52278.svg │ │ │ ├── d3fbae74a276a9f6cf1d6241f29b61a3.svg │ │ │ ├── da4ea5cdfca6b3baab285741f5ccb59f.ttf │ │ │ ├── e049aeb07a2ae1627933e8e58d3886d2.svg │ │ │ ├── e79bfd88537def476913f3ed52f4f4b3.eot │ │ │ ├── eeb9224f85430652fd070e4e64129aa4.eot │ │ │ ├── error.css │ │ │ ├── error_rtl.css │ │ │ ├── f255af0bbbe837e79f7821827f9c6f10.svg │ │ │ ├── ffddcb3736980b23405b31142a324b62.svg │ │ │ ├── theme.css │ │ │ ├── theme.css.map │ │ │ ├── theme.rtlfix │ │ │ └── theme_rtl.css │ │ └── js │ │ │ ├── custom.js │ │ │ ├── theme.js │ │ │ └── theme.js.map │ ├── config │ │ ├── .htaccess │ │ └── theme.yml │ ├── modules │ │ ├── blockreassurance │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ └── blockreassurance.tpl │ │ ├── contactform │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── widget │ │ │ │ └── contactform.tpl │ │ ├── ps_advertising │ │ │ ├── index.php │ │ │ └── ps_advertising.tpl │ │ ├── ps_banner │ │ │ └── ps_banner.tpl │ │ ├── ps_bestsellers │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_bestsellers.tpl │ │ │ │ └── index.php │ │ ├── ps_brandlist │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── _partials │ │ │ │ ├── brand_form.tpl │ │ │ │ ├── brand_text.tpl │ │ │ │ └── index.php │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_brandlist.tpl │ │ │ │ └── index.php │ │ ├── ps_categoryproducts │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_categoryproducts.tpl │ │ │ │ └── index.php │ │ ├── ps_categorytree │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ └── ps_categorytree.tpl │ │ ├── ps_contactinfo │ │ │ ├── nav.tpl │ │ │ ├── ps_contactinfo-rich.tpl │ │ │ └── ps_contactinfo.tpl │ │ ├── ps_crossselling │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_crossselling.tpl │ │ │ │ └── index.php │ │ ├── ps_currencyselector │ │ │ └── ps_currencyselector.tpl │ │ ├── ps_customeraccountlinks │ │ │ └── ps_customeraccountlinks.tpl │ │ ├── ps_customersignin │ │ │ └── ps_customersignin.tpl │ │ ├── ps_emailalerts │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ ├── my-account-footer.tpl │ │ │ │ └── my-account.tpl │ │ │ │ └── index.php │ │ ├── ps_emailsubscription │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ ├── ps_emailsubscription-column.tpl │ │ │ │ └── ps_emailsubscription.tpl │ │ ├── ps_facetedsearch │ │ │ └── ps_facetedsearch.tpl │ │ ├── ps_featuredproducts │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ └── ps_featuredproducts.tpl │ │ ├── ps_imageslider │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ └── slider.tpl │ │ ├── ps_languageselector │ │ │ └── ps_languageselector.tpl │ │ ├── ps_legalcompliance │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ └── hookDisplayFooter.tpl │ │ ├── ps_linklist │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ └── linkblock.tpl │ │ ├── ps_mainmenu │ │ │ └── ps_mainmenu.tpl │ │ ├── ps_newproducts │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_newproducts.tpl │ │ │ │ └── index.php │ │ ├── ps_productinfo │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_productinfo.tpl │ │ │ │ └── index.php │ │ ├── ps_rssfeed │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_rssfeed.tpl │ │ │ │ └── index.php │ │ ├── ps_searchbar │ │ │ └── ps_searchbar.tpl │ │ ├── ps_sharebuttons │ │ │ └── views │ │ │ │ └── templates │ │ │ │ └── hook │ │ │ │ └── ps_sharebuttons.tpl │ │ ├── ps_shoppingcart │ │ │ ├── modal.tpl │ │ │ ├── ps_shoppingcart-product-line.tpl │ │ │ └── ps_shoppingcart.tpl │ │ ├── ps_socialfollow │ │ │ └── ps_socialfollow.tpl │ │ ├── ps_specials │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_specials.tpl │ │ │ │ └── index.php │ │ ├── ps_supplierlist │ │ │ └── views │ │ │ │ ├── index.php │ │ │ │ └── templates │ │ │ │ ├── _partials │ │ │ │ ├── index.php │ │ │ │ ├── supplier_form.tpl │ │ │ │ └── supplier_text.tpl │ │ │ │ ├── hook │ │ │ │ ├── index.php │ │ │ │ └── ps_supplierlist.tpl │ │ │ │ └── index.php │ │ └── ps_viewedproduct │ │ │ └── views │ │ │ ├── index.php │ │ │ └── templates │ │ │ ├── hook │ │ │ ├── index.php │ │ │ └── ps_viewedproduct.tpl │ │ │ └── index.php │ ├── plugins │ │ └── .gitignore │ ├── preview.png │ └── templates │ │ ├── _partials │ │ ├── breadcrumb.tpl │ │ ├── footer.tpl │ │ ├── form-errors.tpl │ │ ├── form-fields.tpl │ │ ├── head.tpl │ │ ├── header.tpl │ │ ├── javascript.tpl │ │ ├── notifications.tpl │ │ ├── pagination.tpl │ │ └── stylesheets.tpl │ │ ├── catalog │ │ ├── _partials │ │ │ ├── active_filters.tpl │ │ │ ├── category-header.tpl │ │ │ ├── facets.tpl │ │ │ ├── miniatures │ │ │ │ ├── brand.tpl │ │ │ │ ├── category.tpl │ │ │ │ ├── pack-product.tpl │ │ │ │ └── product.tpl │ │ │ ├── product-activation.tpl │ │ │ ├── product-add-to-cart.tpl │ │ │ ├── product-additional-info.tpl │ │ │ ├── product-cover-thumbnails.tpl │ │ │ ├── product-customization.tpl │ │ │ ├── product-details.tpl │ │ │ ├── product-discounts.tpl │ │ │ ├── product-flags.tpl │ │ │ ├── product-images-modal.tpl │ │ │ ├── product-prices.tpl │ │ │ ├── product-variants.tpl │ │ │ ├── productlist.tpl │ │ │ ├── products-bottom.tpl │ │ │ ├── products-top.tpl │ │ │ ├── products.tpl │ │ │ ├── quickview.tpl │ │ │ ├── sort-orders.tpl │ │ │ └── variant-links.tpl │ │ ├── brands.tpl │ │ ├── listing │ │ │ ├── best-sales.tpl │ │ │ ├── category.tpl │ │ │ ├── manufacturer.tpl │ │ │ ├── new-products.tpl │ │ │ ├── prices-drop.tpl │ │ │ ├── product-list.tpl │ │ │ ├── search.tpl │ │ │ └── supplier.tpl │ │ ├── manufacturers.tpl │ │ ├── product.tpl │ │ └── suppliers.tpl │ │ ├── checkout │ │ ├── _partials │ │ │ ├── address-form.tpl │ │ │ ├── address-selector-block.tpl │ │ │ ├── cart-detailed-actions.tpl │ │ │ ├── cart-detailed-product-line.tpl │ │ │ ├── cart-detailed-totals.tpl │ │ │ ├── cart-detailed.tpl │ │ │ ├── cart-summary-items-subtotal.tpl │ │ │ ├── cart-summary-product-line.tpl │ │ │ ├── cart-summary-subtotals.tpl │ │ │ ├── cart-summary-totals.tpl │ │ │ ├── cart-summary.tpl │ │ │ ├── cart-voucher.tpl │ │ │ ├── customer-form.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── login-form.tpl │ │ │ ├── order-confirmation-table.tpl │ │ │ ├── order-final-summary-table.tpl │ │ │ ├── order-final-summary.tpl │ │ │ └── steps │ │ │ │ ├── addresses.tpl │ │ │ │ ├── checkout-step.tpl │ │ │ │ ├── payment.tpl │ │ │ │ ├── personal-information.tpl │ │ │ │ ├── shipping.tpl │ │ │ │ └── unreachable.tpl │ │ ├── cart-empty.tpl │ │ ├── cart.tpl │ │ ├── checkout-process.tpl │ │ ├── checkout.tpl │ │ └── order-confirmation.tpl │ │ ├── cms │ │ ├── _partials │ │ │ └── sitemap-nested-list.tpl │ │ ├── category.tpl │ │ ├── page.tpl │ │ ├── sitemap.tpl │ │ └── stores.tpl │ │ ├── contact.tpl │ │ ├── customer │ │ ├── _partials │ │ │ ├── address-form.tpl │ │ │ ├── block-address.tpl │ │ │ ├── customer-form.tpl │ │ │ ├── login-form.tpl │ │ │ ├── my-account-links.tpl │ │ │ ├── order-detail-no-return.tpl │ │ │ ├── order-detail-return.tpl │ │ │ └── order-messages.tpl │ │ ├── address.tpl │ │ ├── addresses.tpl │ │ ├── authentication.tpl │ │ ├── discount.tpl │ │ ├── guest-login.tpl │ │ ├── guest-tracking.tpl │ │ ├── history.tpl │ │ ├── identity.tpl │ │ ├── my-account.tpl │ │ ├── order-detail.tpl │ │ ├── order-follow.tpl │ │ ├── order-return.tpl │ │ ├── order-slip.tpl │ │ ├── page.tpl │ │ ├── password-email.tpl │ │ ├── password-infos.tpl │ │ ├── password-new.tpl │ │ └── registration.tpl │ │ ├── errors │ │ ├── 404.tpl │ │ ├── forbidden.tpl │ │ ├── maintenance.tpl │ │ ├── not-found.tpl │ │ ├── restricted-country.tpl │ │ └── static │ │ │ ├── 500.html │ │ │ └── 503.html │ │ ├── index.tpl │ │ ├── layouts │ │ ├── layout-both-columns.tpl │ │ ├── layout-content-only.tpl │ │ ├── layout-error.tpl │ │ ├── layout-full-width.tpl │ │ ├── layout-left-column.tpl │ │ └── layout-right-column.tpl │ │ └── page.tpl ├── core.js ├── core.js.map ├── debug.tpl ├── index.php ├── javascript.tpl ├── package-lock.json ├── package.json └── webpack.config.js ├── tools ├── .htaccess ├── assets │ └── build.sh ├── build │ ├── .gitignore │ ├── CreateRelease.php │ ├── Exception │ │ └── BuildException.php │ ├── Library │ │ ├── ConsoleWriter.php │ │ ├── InstallUnpacker │ │ │ ├── classes │ │ │ │ ├── BasicFileCache.php │ │ │ │ ├── ConfigurationValidator.php │ │ │ │ ├── Download.php │ │ │ │ ├── InstallManager.php │ │ │ │ ├── PrestashopCouldNotDownloadLatestVersionException.php │ │ │ │ ├── PrestashopCouldNotInstallLatestVersionException.php │ │ │ │ ├── PrestashopCouldNotUnzipLatestVersionException.php │ │ │ │ ├── Unzip.php │ │ │ │ └── VersionNumber.php │ │ │ ├── compile.php │ │ │ ├── content │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── installer-static.png │ │ │ │ ├── installer.gif │ │ │ │ ├── jquery-2.2.3.min.js │ │ │ │ ├── js-runner.js │ │ │ │ └── style.css │ │ │ └── index_template.php │ │ ├── ReleaseCreator.php │ │ └── Version.php │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── doc │ │ └── Install_PrestaShop.html │ ├── phpunit.xml │ ├── pre-installer-diagram-src.xml │ ├── pre-installer-diagram.jpg │ ├── releases │ │ └── .gitkeep │ └── tests │ │ └── Unit │ │ └── Library │ │ └── InstallUnpacker │ │ └── classes │ │ └── VersionNumberTest.php ├── foreignkeyGenerator │ ├── README.md │ ├── changes.php │ ├── foreign.php │ └── relations.php ├── index.php └── profiling │ ├── .htaccess │ ├── Controller.php │ ├── Db.php │ ├── ObjectModel.php │ ├── Tools.php │ └── index.php ├── translations ├── cldr │ └── .htaccess ├── export │ └── index.php └── index.php ├── travis-scripts ├── .composer-auth.json ├── install-prestashop ├── run-functional-tests ├── run-sanity-tests ├── setup-apache.sh ├── setup-node-js.sh ├── setup-php-fpm.sh └── start-xvfb ├── upload ├── .htaccess └── index.php ├── var ├── .htaccess ├── SymfonyRequirements.php ├── cache │ └── .gitkeep ├── logs │ └── .gitkeep └── sessions │ └── .gitkeep ├── vendor └── .htaccess └── webservice ├── dispatcher.php └── index.php /.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.docker/Dockerfile -------------------------------------------------------------------------------- /.docker/docker_run_git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.docker/docker_run_git.sh -------------------------------------------------------------------------------- /.docker/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.docker/wait-for-it.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/contrib/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/contrib/install.php -------------------------------------------------------------------------------- /.github/contrib/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/contrib/pre-commit -------------------------------------------------------------------------------- /.github/contrib/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/contrib/uninstall.php -------------------------------------------------------------------------------- /.github/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/release/README.md -------------------------------------------------------------------------------- /.github/release/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/release/package.json -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.prettyci.composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.prettyci.composer.json -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.t9n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.t9n.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/README.md -------------------------------------------------------------------------------- /admin-dev/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/.htaccess -------------------------------------------------------------------------------- /admin-dev/ajax-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/ajax-tab.php -------------------------------------------------------------------------------- /admin-dev/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/ajax.php -------------------------------------------------------------------------------- /admin-dev/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/backup.php -------------------------------------------------------------------------------- /admin-dev/backups/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/backups/.htaccess -------------------------------------------------------------------------------- /admin-dev/backups/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/backups/index.php -------------------------------------------------------------------------------- /admin-dev/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/bootstrap.php -------------------------------------------------------------------------------- /admin-dev/displayImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/displayImage.php -------------------------------------------------------------------------------- /admin-dev/drawer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/drawer.php -------------------------------------------------------------------------------- /admin-dev/export/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/export/.htaccess -------------------------------------------------------------------------------- /admin-dev/export/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/export/index.php -------------------------------------------------------------------------------- /admin-dev/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/favicon.ico -------------------------------------------------------------------------------- /admin-dev/footer.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/footer.inc.php -------------------------------------------------------------------------------- /admin-dev/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/functions.php -------------------------------------------------------------------------------- /admin-dev/grider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/grider.php -------------------------------------------------------------------------------- /admin-dev/header.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/header.inc.php -------------------------------------------------------------------------------- /admin-dev/import/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/import/.htaccess -------------------------------------------------------------------------------- /admin-dev/import/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/import/index.php -------------------------------------------------------------------------------- /admin-dev/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/index.php -------------------------------------------------------------------------------- /admin-dev/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/init.php -------------------------------------------------------------------------------- /admin-dev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/package.json -------------------------------------------------------------------------------- /admin-dev/pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/pdf.php -------------------------------------------------------------------------------- /admin-dev/public/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/public/bundle.js -------------------------------------------------------------------------------- /admin-dev/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/robots.txt -------------------------------------------------------------------------------- /admin-dev/searchcron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/searchcron.php -------------------------------------------------------------------------------- /admin-dev/themes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/admin-dev/themes/index.php -------------------------------------------------------------------------------- /admin-dev/themes/new-theme/scss/pages/_error.scss: -------------------------------------------------------------------------------- 1 | .error-header { 2 | font-size: 1.5rem; 3 | } 4 | -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/translations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_legacy_dev.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: config_legacy.yml } 3 | -------------------------------------------------------------------------------- /app/config/config_legacy_test.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: config_legacy.yml } 3 | -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/doctrine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/doctrine.yml -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/config/services.yml -------------------------------------------------------------------------------- /app/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/app/phpunit.xml.dist -------------------------------------------------------------------------------- /app/test/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/autoload.php -------------------------------------------------------------------------------- /bin/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/bin/.htaccess -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/bin/console -------------------------------------------------------------------------------- /bin/symfony_requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/bin/symfony_requirements -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/.htaccess -------------------------------------------------------------------------------- /cache/cachefs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/cachefs/index.php -------------------------------------------------------------------------------- /cache/deprecated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/deprecated.txt -------------------------------------------------------------------------------- /cache/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/index.php -------------------------------------------------------------------------------- /cache/purifier/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/purifier/index.php -------------------------------------------------------------------------------- /cache/push/activity: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/push/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/push/index.php -------------------------------------------------------------------------------- /cache/push/trends: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/sandbox/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/sandbox/index.php -------------------------------------------------------------------------------- /cache/smarty/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/smarty/index.php -------------------------------------------------------------------------------- /cache/tcpdf/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/cache/tcpdf/index.php -------------------------------------------------------------------------------- /classes/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/.htaccess -------------------------------------------------------------------------------- /classes/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Access.php -------------------------------------------------------------------------------- /classes/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Address.php -------------------------------------------------------------------------------- /classes/AddressFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/AddressFormat.php -------------------------------------------------------------------------------- /classes/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Alias.php -------------------------------------------------------------------------------- /classes/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Attachment.php -------------------------------------------------------------------------------- /classes/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Attribute.php -------------------------------------------------------------------------------- /classes/AttributeGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/AttributeGroup.php -------------------------------------------------------------------------------- /classes/CMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/CMS.php -------------------------------------------------------------------------------- /classes/CMSCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/CMSCategory.php -------------------------------------------------------------------------------- /classes/CMSRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/CMSRole.php -------------------------------------------------------------------------------- /classes/CSV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/CSV.php -------------------------------------------------------------------------------- /classes/Carrier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Carrier.php -------------------------------------------------------------------------------- /classes/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Cart.php -------------------------------------------------------------------------------- /classes/CartRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/CartRule.php -------------------------------------------------------------------------------- /classes/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Category.php -------------------------------------------------------------------------------- /classes/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Chart.php -------------------------------------------------------------------------------- /classes/Combination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Combination.php -------------------------------------------------------------------------------- /classes/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Configuration.php -------------------------------------------------------------------------------- /classes/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Connection.php -------------------------------------------------------------------------------- /classes/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Contact.php -------------------------------------------------------------------------------- /classes/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Context.php -------------------------------------------------------------------------------- /classes/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Cookie.php -------------------------------------------------------------------------------- /classes/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Country.php -------------------------------------------------------------------------------- /classes/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Currency.php -------------------------------------------------------------------------------- /classes/Curve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Curve.php -------------------------------------------------------------------------------- /classes/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Customer.php -------------------------------------------------------------------------------- /classes/CustomerThread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/CustomerThread.php -------------------------------------------------------------------------------- /classes/Customization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Customization.php -------------------------------------------------------------------------------- /classes/DateRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/DateRange.php -------------------------------------------------------------------------------- /classes/Delivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Delivery.php -------------------------------------------------------------------------------- /classes/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Dispatcher.php -------------------------------------------------------------------------------- /classes/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Employee.php -------------------------------------------------------------------------------- /classes/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Feature.php -------------------------------------------------------------------------------- /classes/FeatureValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/FeatureValue.php -------------------------------------------------------------------------------- /classes/FileUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/FileUploader.php -------------------------------------------------------------------------------- /classes/Gender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Gender.php -------------------------------------------------------------------------------- /classes/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Group.php -------------------------------------------------------------------------------- /classes/GroupReduction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/GroupReduction.php -------------------------------------------------------------------------------- /classes/Guest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Guest.php -------------------------------------------------------------------------------- /classes/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Hook.php -------------------------------------------------------------------------------- /classes/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Image.php -------------------------------------------------------------------------------- /classes/ImageManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/ImageManager.php -------------------------------------------------------------------------------- /classes/ImageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/ImageType.php -------------------------------------------------------------------------------- /classes/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Language.php -------------------------------------------------------------------------------- /classes/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Link.php -------------------------------------------------------------------------------- /classes/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Mail.php -------------------------------------------------------------------------------- /classes/Manufacturer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Manufacturer.php -------------------------------------------------------------------------------- /classes/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Media.php -------------------------------------------------------------------------------- /classes/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Message.php -------------------------------------------------------------------------------- /classes/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Meta.php -------------------------------------------------------------------------------- /classes/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Notification.php -------------------------------------------------------------------------------- /classes/ObjectModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/ObjectModel.php -------------------------------------------------------------------------------- /classes/Pack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Pack.php -------------------------------------------------------------------------------- /classes/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Page.php -------------------------------------------------------------------------------- /classes/PaymentFree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/PaymentFree.php -------------------------------------------------------------------------------- /classes/PaymentModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/PaymentModule.php -------------------------------------------------------------------------------- /classes/PhpEncryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/PhpEncryption.php -------------------------------------------------------------------------------- /classes/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Product.php -------------------------------------------------------------------------------- /classes/ProductSale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/ProductSale.php -------------------------------------------------------------------------------- /classes/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Profile.php -------------------------------------------------------------------------------- /classes/QuickAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/QuickAccess.php -------------------------------------------------------------------------------- /classes/Referrer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Referrer.php -------------------------------------------------------------------------------- /classes/RequestSql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/RequestSql.php -------------------------------------------------------------------------------- /classes/Risk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Risk.php -------------------------------------------------------------------------------- /classes/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Search.php -------------------------------------------------------------------------------- /classes/SearchEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/SearchEngine.php -------------------------------------------------------------------------------- /classes/SpecificPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/SpecificPrice.php -------------------------------------------------------------------------------- /classes/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/State.php -------------------------------------------------------------------------------- /classes/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Store.php -------------------------------------------------------------------------------- /classes/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Supplier.php -------------------------------------------------------------------------------- /classes/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Tab.php -------------------------------------------------------------------------------- /classes/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Tag.php -------------------------------------------------------------------------------- /classes/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Tools.php -------------------------------------------------------------------------------- /classes/Translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Translate.php -------------------------------------------------------------------------------- /classes/Upgrader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Upgrader.php -------------------------------------------------------------------------------- /classes/Uploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Uploader.php -------------------------------------------------------------------------------- /classes/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Validate.php -------------------------------------------------------------------------------- /classes/Windows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Windows.php -------------------------------------------------------------------------------- /classes/Zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/Zone.php -------------------------------------------------------------------------------- /classes/cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/cache/Cache.php -------------------------------------------------------------------------------- /classes/cache/CacheApc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/cache/CacheApc.php -------------------------------------------------------------------------------- /classes/cache/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/cache/index.php -------------------------------------------------------------------------------- /classes/db/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/db/Db.php -------------------------------------------------------------------------------- /classes/db/DbMySQLi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/db/DbMySQLi.php -------------------------------------------------------------------------------- /classes/db/DbPDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/db/DbPDO.php -------------------------------------------------------------------------------- /classes/db/DbQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/db/DbQuery.php -------------------------------------------------------------------------------- /classes/db/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/db/index.php -------------------------------------------------------------------------------- /classes/form/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/form/FormField.php -------------------------------------------------------------------------------- /classes/helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/helper/Helper.php -------------------------------------------------------------------------------- /classes/helper/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/helper/index.php -------------------------------------------------------------------------------- /classes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/index.php -------------------------------------------------------------------------------- /classes/lang/DataLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/lang/DataLang.php -------------------------------------------------------------------------------- /classes/lang/GroupLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/lang/GroupLang.php -------------------------------------------------------------------------------- /classes/lang/MetaLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/lang/MetaLang.php -------------------------------------------------------------------------------- /classes/lang/RiskLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/lang/RiskLang.php -------------------------------------------------------------------------------- /classes/lang/TabLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/lang/TabLang.php -------------------------------------------------------------------------------- /classes/lang/ThemeLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/lang/ThemeLang.php -------------------------------------------------------------------------------- /classes/log/FileLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/log/FileLogger.php -------------------------------------------------------------------------------- /classes/log/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/log/index.php -------------------------------------------------------------------------------- /classes/module/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/module/Module.php -------------------------------------------------------------------------------- /classes/module/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/module/index.php -------------------------------------------------------------------------------- /classes/order/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/order/Order.php -------------------------------------------------------------------------------- /classes/order/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/order/index.php -------------------------------------------------------------------------------- /classes/pdf/PDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/pdf/PDF.php -------------------------------------------------------------------------------- /classes/pdf/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/pdf/index.php -------------------------------------------------------------------------------- /classes/range/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/range/index.php -------------------------------------------------------------------------------- /classes/shop/Shop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/shop/Shop.php -------------------------------------------------------------------------------- /classes/shop/ShopGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/shop/ShopGroup.php -------------------------------------------------------------------------------- /classes/shop/ShopUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/shop/ShopUrl.php -------------------------------------------------------------------------------- /classes/shop/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/shop/index.php -------------------------------------------------------------------------------- /classes/stock/Stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/stock/Stock.php -------------------------------------------------------------------------------- /classes/stock/StockMvt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/stock/StockMvt.php -------------------------------------------------------------------------------- /classes/stock/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/stock/index.php -------------------------------------------------------------------------------- /classes/tax/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/tax/Tax.php -------------------------------------------------------------------------------- /classes/tax/TaxRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/tax/TaxRule.php -------------------------------------------------------------------------------- /classes/tax/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/tax/index.php -------------------------------------------------------------------------------- /classes/tree/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/tree/Tree.php -------------------------------------------------------------------------------- /classes/tree/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/classes/tree/index.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/.htaccess -------------------------------------------------------------------------------- /config/alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/alias.php -------------------------------------------------------------------------------- /config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/autoload.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/config.inc.php -------------------------------------------------------------------------------- /config/defines.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/defines.inc.php -------------------------------------------------------------------------------- /config/defines_uri.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/defines_uri.inc.php -------------------------------------------------------------------------------- /config/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/index.php -------------------------------------------------------------------------------- /config/services/admin/services_dev.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services_prod.yml } 3 | -------------------------------------------------------------------------------- /config/services/admin/services_test.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services_dev.yml } 3 | -------------------------------------------------------------------------------- /config/services/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/services/common.yml -------------------------------------------------------------------------------- /config/services/front/services_dev.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services_prod.yml } 3 | -------------------------------------------------------------------------------- /config/services/front/services_test.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services_dev.yml } 3 | -------------------------------------------------------------------------------- /config/services/webservice/services_dev.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services_prod.yml } 3 | -------------------------------------------------------------------------------- /config/services/webservice/services_prod.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../common.yml } 3 | -------------------------------------------------------------------------------- /config/services/webservice/services_test.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services_dev.yml } 3 | -------------------------------------------------------------------------------- /config/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/xml/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/xml/.htaccess -------------------------------------------------------------------------------- /config/xml/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/config/xml/index.php -------------------------------------------------------------------------------- /controllers/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/controllers/.htaccess -------------------------------------------------------------------------------- /controllers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/controllers/index.php -------------------------------------------------------------------------------- /diff-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/diff-hooks.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/.htaccess -------------------------------------------------------------------------------- /docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /docs/csv_import/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/csv_import/.htaccess -------------------------------------------------------------------------------- /docs/csv_import/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/csv_import/README.md -------------------------------------------------------------------------------- /docs/csv_import/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/csv_import/index.php -------------------------------------------------------------------------------- /docs/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/docker/.gitignore -------------------------------------------------------------------------------- /docs/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/docker/README.md -------------------------------------------------------------------------------- /docs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/index.php -------------------------------------------------------------------------------- /docs/licenses/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/licenses/LICENSE.txt -------------------------------------------------------------------------------- /docs/licenses/cropper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/licenses/cropper.txt -------------------------------------------------------------------------------- /docs/licenses/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/docs/licenses/index.php -------------------------------------------------------------------------------- /download/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/download/.htaccess -------------------------------------------------------------------------------- /download/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/download/index.php -------------------------------------------------------------------------------- /error500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/error500.html -------------------------------------------------------------------------------- /images.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/images.inc.php -------------------------------------------------------------------------------- /img/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/.htaccess -------------------------------------------------------------------------------- /img/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/404.gif -------------------------------------------------------------------------------- /img/admin/___info-ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/___info-ca.gif -------------------------------------------------------------------------------- /img/admin/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/add.gif -------------------------------------------------------------------------------- /img/admin/add_stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/add_stock.png -------------------------------------------------------------------------------- /img/admin/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/ajax-loader.gif -------------------------------------------------------------------------------- /img/admin/arrow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/arrow2.gif -------------------------------------------------------------------------------- /img/admin/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/arrow_down.png -------------------------------------------------------------------------------- /img/admin/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/arrow_up.png -------------------------------------------------------------------------------- /img/admin/asterisk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/asterisk.gif -------------------------------------------------------------------------------- /img/admin/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/blank.gif -------------------------------------------------------------------------------- /img/admin/cart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/cart.gif -------------------------------------------------------------------------------- /img/admin/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/close.png -------------------------------------------------------------------------------- /img/admin/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/color.png -------------------------------------------------------------------------------- /img/admin/color_swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/color_swatch.png -------------------------------------------------------------------------------- /img/admin/colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/colorpicker.png -------------------------------------------------------------------------------- /img/admin/contact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/contact.gif -------------------------------------------------------------------------------- /img/admin/coupon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/coupon.gif -------------------------------------------------------------------------------- /img/admin/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/date.png -------------------------------------------------------------------------------- /img/admin/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/delete.gif -------------------------------------------------------------------------------- /img/admin/details.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/details.gif -------------------------------------------------------------------------------- /img/admin/disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/disabled.gif -------------------------------------------------------------------------------- /img/admin/duplicate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/duplicate.gif -------------------------------------------------------------------------------- /img/admin/duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/duplicate.png -------------------------------------------------------------------------------- /img/admin/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/edit.gif -------------------------------------------------------------------------------- /img/admin/edit_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/edit_2.gif -------------------------------------------------------------------------------- /img/admin/enabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/enabled.gif -------------------------------------------------------------------------------- /img/admin/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/error.png -------------------------------------------------------------------------------- /img/admin/error2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/error2.png -------------------------------------------------------------------------------- /img/admin/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/folder.gif -------------------------------------------------------------------------------- /img/admin/graybar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/graybar.jpg -------------------------------------------------------------------------------- /img/admin/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/grid.gif -------------------------------------------------------------------------------- /img/admin/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/help.png -------------------------------------------------------------------------------- /img/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/index.php -------------------------------------------------------------------------------- /img/admin/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/info.png -------------------------------------------------------------------------------- /img/admin/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/information.png -------------------------------------------------------------------------------- /img/admin/invoice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/invoice.gif -------------------------------------------------------------------------------- /img/admin/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/less.png -------------------------------------------------------------------------------- /img/admin/list-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/list-next.gif -------------------------------------------------------------------------------- /img/admin/list-next2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/list-next2.gif -------------------------------------------------------------------------------- /img/admin/list-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/list-prev.gif -------------------------------------------------------------------------------- /img/admin/list-prev2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/list-prev2.gif -------------------------------------------------------------------------------- /img/admin/lv1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/lv1.gif -------------------------------------------------------------------------------- /img/admin/lv2_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/lv2_b.gif -------------------------------------------------------------------------------- /img/admin/meta100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/meta100.png -------------------------------------------------------------------------------- /img/admin/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/more.png -------------------------------------------------------------------------------- /img/admin/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/next.gif -------------------------------------------------------------------------------- /img/admin/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/play.png -------------------------------------------------------------------------------- /img/admin/remove_stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/remove_stock.png -------------------------------------------------------------------------------- /img/admin/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/search.gif -------------------------------------------------------------------------------- /img/admin/tab-invoice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/tab-invoice.gif -------------------------------------------------------------------------------- /img/admin/unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/unknown.gif -------------------------------------------------------------------------------- /img/admin/warn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/warn2.png -------------------------------------------------------------------------------- /img/admin/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/admin/warning.gif -------------------------------------------------------------------------------- /img/bg_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/bg_500.png -------------------------------------------------------------------------------- /img/bg_loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/bg_loader.png -------------------------------------------------------------------------------- /img/c/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/c/index.php -------------------------------------------------------------------------------- /img/cms/cms-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/cms/cms-img.jpg -------------------------------------------------------------------------------- /img/cms/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/cms/index.php -------------------------------------------------------------------------------- /img/co/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/co/index.php -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/flags/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ad.jpg -------------------------------------------------------------------------------- /img/flags/ae.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ae.jpg -------------------------------------------------------------------------------- /img/flags/af.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/af.jpg -------------------------------------------------------------------------------- /img/flags/ag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ag.jpg -------------------------------------------------------------------------------- /img/flags/ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ai.jpg -------------------------------------------------------------------------------- /img/flags/al.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/al.jpg -------------------------------------------------------------------------------- /img/flags/am.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/am.jpg -------------------------------------------------------------------------------- /img/flags/an.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/an.jpg -------------------------------------------------------------------------------- /img/flags/ao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ao.jpg -------------------------------------------------------------------------------- /img/flags/ar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ar.jpg -------------------------------------------------------------------------------- /img/flags/as.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/as.jpg -------------------------------------------------------------------------------- /img/flags/at.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/at.jpg -------------------------------------------------------------------------------- /img/flags/au.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/au.jpg -------------------------------------------------------------------------------- /img/flags/aw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/aw.jpg -------------------------------------------------------------------------------- /img/flags/ax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ax.jpg -------------------------------------------------------------------------------- /img/flags/az.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/az.jpg -------------------------------------------------------------------------------- /img/flags/ba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ba.jpg -------------------------------------------------------------------------------- /img/flags/bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bb.jpg -------------------------------------------------------------------------------- /img/flags/bd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bd.jpg -------------------------------------------------------------------------------- /img/flags/be.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/be.jpg -------------------------------------------------------------------------------- /img/flags/bf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bf.jpg -------------------------------------------------------------------------------- /img/flags/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bg.jpg -------------------------------------------------------------------------------- /img/flags/bh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bh.jpg -------------------------------------------------------------------------------- /img/flags/bi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bi.jpg -------------------------------------------------------------------------------- /img/flags/bj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bj.jpg -------------------------------------------------------------------------------- /img/flags/bm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bm.jpg -------------------------------------------------------------------------------- /img/flags/bn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bn.jpg -------------------------------------------------------------------------------- /img/flags/bo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bo.jpg -------------------------------------------------------------------------------- /img/flags/br.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/br.jpg -------------------------------------------------------------------------------- /img/flags/bs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bs.jpg -------------------------------------------------------------------------------- /img/flags/bt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bt.jpg -------------------------------------------------------------------------------- /img/flags/bv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bv.jpg -------------------------------------------------------------------------------- /img/flags/bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bw.jpg -------------------------------------------------------------------------------- /img/flags/by.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/by.jpg -------------------------------------------------------------------------------- /img/flags/bz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/bz.jpg -------------------------------------------------------------------------------- /img/flags/ca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ca.jpg -------------------------------------------------------------------------------- /img/flags/catalonia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/catalonia.jpg -------------------------------------------------------------------------------- /img/flags/cc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cc.jpg -------------------------------------------------------------------------------- /img/flags/cd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cd.jpg -------------------------------------------------------------------------------- /img/flags/cf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cf.jpg -------------------------------------------------------------------------------- /img/flags/cg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cg.jpg -------------------------------------------------------------------------------- /img/flags/ch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ch.jpg -------------------------------------------------------------------------------- /img/flags/ci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ci.jpg -------------------------------------------------------------------------------- /img/flags/ck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ck.jpg -------------------------------------------------------------------------------- /img/flags/cl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cl.jpg -------------------------------------------------------------------------------- /img/flags/cm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cm.jpg -------------------------------------------------------------------------------- /img/flags/cn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cn.jpg -------------------------------------------------------------------------------- /img/flags/co.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/co.jpg -------------------------------------------------------------------------------- /img/flags/cr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cr.jpg -------------------------------------------------------------------------------- /img/flags/cs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cs.jpg -------------------------------------------------------------------------------- /img/flags/cu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cu.jpg -------------------------------------------------------------------------------- /img/flags/cv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cv.jpg -------------------------------------------------------------------------------- /img/flags/cx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cx.jpg -------------------------------------------------------------------------------- /img/flags/cy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cy.jpg -------------------------------------------------------------------------------- /img/flags/cz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/cz.jpg -------------------------------------------------------------------------------- /img/flags/de.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/de.jpg -------------------------------------------------------------------------------- /img/flags/dj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/dj.jpg -------------------------------------------------------------------------------- /img/flags/dk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/dk.jpg -------------------------------------------------------------------------------- /img/flags/dm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/dm.jpg -------------------------------------------------------------------------------- /img/flags/do.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/do.jpg -------------------------------------------------------------------------------- /img/flags/dz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/dz.jpg -------------------------------------------------------------------------------- /img/flags/ec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ec.jpg -------------------------------------------------------------------------------- /img/flags/ee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ee.jpg -------------------------------------------------------------------------------- /img/flags/eg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/eg.jpg -------------------------------------------------------------------------------- /img/flags/eh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/eh.jpg -------------------------------------------------------------------------------- /img/flags/england.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/england.jpg -------------------------------------------------------------------------------- /img/flags/er.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/er.jpg -------------------------------------------------------------------------------- /img/flags/es.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/es.jpg -------------------------------------------------------------------------------- /img/flags/et.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/et.jpg -------------------------------------------------------------------------------- /img/flags/fam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/fam.jpg -------------------------------------------------------------------------------- /img/flags/fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/fi.jpg -------------------------------------------------------------------------------- /img/flags/fj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/fj.jpg -------------------------------------------------------------------------------- /img/flags/fk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/fk.jpg -------------------------------------------------------------------------------- /img/flags/fm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/fm.jpg -------------------------------------------------------------------------------- /img/flags/fo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/fo.jpg -------------------------------------------------------------------------------- /img/flags/fr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/fr.jpg -------------------------------------------------------------------------------- /img/flags/ga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ga.jpg -------------------------------------------------------------------------------- /img/flags/gb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gb.jpg -------------------------------------------------------------------------------- /img/flags/gd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gd.jpg -------------------------------------------------------------------------------- /img/flags/ge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ge.jpg -------------------------------------------------------------------------------- /img/flags/gf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gf.jpg -------------------------------------------------------------------------------- /img/flags/gh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gh.jpg -------------------------------------------------------------------------------- /img/flags/gi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gi.jpg -------------------------------------------------------------------------------- /img/flags/gl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gl.jpg -------------------------------------------------------------------------------- /img/flags/gm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gm.jpg -------------------------------------------------------------------------------- /img/flags/gn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gn.jpg -------------------------------------------------------------------------------- /img/flags/gp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gp.jpg -------------------------------------------------------------------------------- /img/flags/gq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gq.jpg -------------------------------------------------------------------------------- /img/flags/gr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gr.jpg -------------------------------------------------------------------------------- /img/flags/gs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gs.jpg -------------------------------------------------------------------------------- /img/flags/gt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gt.jpg -------------------------------------------------------------------------------- /img/flags/gu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gu.jpg -------------------------------------------------------------------------------- /img/flags/gw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gw.jpg -------------------------------------------------------------------------------- /img/flags/gy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/gy.jpg -------------------------------------------------------------------------------- /img/flags/hk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/hk.jpg -------------------------------------------------------------------------------- /img/flags/hm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/hm.jpg -------------------------------------------------------------------------------- /img/flags/hn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/hn.jpg -------------------------------------------------------------------------------- /img/flags/hr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/hr.jpg -------------------------------------------------------------------------------- /img/flags/ht.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ht.jpg -------------------------------------------------------------------------------- /img/flags/hu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/hu.jpg -------------------------------------------------------------------------------- /img/flags/id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/id.jpg -------------------------------------------------------------------------------- /img/flags/ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ie.jpg -------------------------------------------------------------------------------- /img/flags/il.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/il.jpg -------------------------------------------------------------------------------- /img/flags/in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/in.jpg -------------------------------------------------------------------------------- /img/flags/io.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/io.jpg -------------------------------------------------------------------------------- /img/flags/iq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/iq.jpg -------------------------------------------------------------------------------- /img/flags/ir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ir.jpg -------------------------------------------------------------------------------- /img/flags/is.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/is.jpg -------------------------------------------------------------------------------- /img/flags/it.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/it.jpg -------------------------------------------------------------------------------- /img/flags/jm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/jm.jpg -------------------------------------------------------------------------------- /img/flags/jo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/jo.jpg -------------------------------------------------------------------------------- /img/flags/jp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/jp.jpg -------------------------------------------------------------------------------- /img/flags/ke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ke.jpg -------------------------------------------------------------------------------- /img/flags/kg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/kg.jpg -------------------------------------------------------------------------------- /img/flags/kh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/kh.jpg -------------------------------------------------------------------------------- /img/flags/ki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ki.jpg -------------------------------------------------------------------------------- /img/flags/km.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/km.jpg -------------------------------------------------------------------------------- /img/flags/kn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/kn.jpg -------------------------------------------------------------------------------- /img/flags/kp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/kp.jpg -------------------------------------------------------------------------------- /img/flags/kr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/kr.jpg -------------------------------------------------------------------------------- /img/flags/kw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/kw.jpg -------------------------------------------------------------------------------- /img/flags/ky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ky.jpg -------------------------------------------------------------------------------- /img/flags/kz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/kz.jpg -------------------------------------------------------------------------------- /img/flags/la.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/la.jpg -------------------------------------------------------------------------------- /img/flags/lb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/lb.jpg -------------------------------------------------------------------------------- /img/flags/lc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/lc.jpg -------------------------------------------------------------------------------- /img/flags/li.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/li.jpg -------------------------------------------------------------------------------- /img/flags/lk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/lk.jpg -------------------------------------------------------------------------------- /img/flags/lr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/lr.jpg -------------------------------------------------------------------------------- /img/flags/ls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ls.jpg -------------------------------------------------------------------------------- /img/flags/lt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/lt.jpg -------------------------------------------------------------------------------- /img/flags/lu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/lu.jpg -------------------------------------------------------------------------------- /img/flags/lv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/lv.jpg -------------------------------------------------------------------------------- /img/flags/ly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ly.jpg -------------------------------------------------------------------------------- /img/flags/ma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ma.jpg -------------------------------------------------------------------------------- /img/flags/mc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mc.jpg -------------------------------------------------------------------------------- /img/flags/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/md.jpg -------------------------------------------------------------------------------- /img/flags/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/me.jpg -------------------------------------------------------------------------------- /img/flags/mg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mg.jpg -------------------------------------------------------------------------------- /img/flags/mh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mh.jpg -------------------------------------------------------------------------------- /img/flags/mk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mk.jpg -------------------------------------------------------------------------------- /img/flags/ml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ml.jpg -------------------------------------------------------------------------------- /img/flags/mm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mm.jpg -------------------------------------------------------------------------------- /img/flags/mn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mn.jpg -------------------------------------------------------------------------------- /img/flags/mo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mo.jpg -------------------------------------------------------------------------------- /img/flags/mp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mp.jpg -------------------------------------------------------------------------------- /img/flags/mq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mq.jpg -------------------------------------------------------------------------------- /img/flags/mr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mr.jpg -------------------------------------------------------------------------------- /img/flags/ms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ms.jpg -------------------------------------------------------------------------------- /img/flags/mt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mt.jpg -------------------------------------------------------------------------------- /img/flags/mu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mu.jpg -------------------------------------------------------------------------------- /img/flags/mv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mv.jpg -------------------------------------------------------------------------------- /img/flags/mw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mw.jpg -------------------------------------------------------------------------------- /img/flags/mx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mx.jpg -------------------------------------------------------------------------------- /img/flags/my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/my.jpg -------------------------------------------------------------------------------- /img/flags/mz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/mz.jpg -------------------------------------------------------------------------------- /img/flags/na.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/na.jpg -------------------------------------------------------------------------------- /img/flags/nc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/nc.jpg -------------------------------------------------------------------------------- /img/flags/ne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ne.jpg -------------------------------------------------------------------------------- /img/flags/nf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/nf.jpg -------------------------------------------------------------------------------- /img/flags/ng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ng.jpg -------------------------------------------------------------------------------- /img/flags/ni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ni.jpg -------------------------------------------------------------------------------- /img/flags/nl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/nl.jpg -------------------------------------------------------------------------------- /img/flags/no.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/no.jpg -------------------------------------------------------------------------------- /img/flags/np.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/np.jpg -------------------------------------------------------------------------------- /img/flags/nr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/nr.jpg -------------------------------------------------------------------------------- /img/flags/nu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/nu.jpg -------------------------------------------------------------------------------- /img/flags/nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/nz.jpg -------------------------------------------------------------------------------- /img/flags/om.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/om.jpg -------------------------------------------------------------------------------- /img/flags/pa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pa.jpg -------------------------------------------------------------------------------- /img/flags/pe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pe.jpg -------------------------------------------------------------------------------- /img/flags/pf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pf.jpg -------------------------------------------------------------------------------- /img/flags/pg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pg.jpg -------------------------------------------------------------------------------- /img/flags/ph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ph.jpg -------------------------------------------------------------------------------- /img/flags/pk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pk.jpg -------------------------------------------------------------------------------- /img/flags/pl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pl.jpg -------------------------------------------------------------------------------- /img/flags/pm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pm.jpg -------------------------------------------------------------------------------- /img/flags/pn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pn.jpg -------------------------------------------------------------------------------- /img/flags/pr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pr.jpg -------------------------------------------------------------------------------- /img/flags/ps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ps.jpg -------------------------------------------------------------------------------- /img/flags/pt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pt.jpg -------------------------------------------------------------------------------- /img/flags/pw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/pw.jpg -------------------------------------------------------------------------------- /img/flags/py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/py.jpg -------------------------------------------------------------------------------- /img/flags/qa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/qa.jpg -------------------------------------------------------------------------------- /img/flags/re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/re.jpg -------------------------------------------------------------------------------- /img/flags/ro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ro.jpg -------------------------------------------------------------------------------- /img/flags/rs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/rs.jpg -------------------------------------------------------------------------------- /img/flags/ru.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ru.jpg -------------------------------------------------------------------------------- /img/flags/rw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/rw.jpg -------------------------------------------------------------------------------- /img/flags/sa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sa.jpg -------------------------------------------------------------------------------- /img/flags/sb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sb.jpg -------------------------------------------------------------------------------- /img/flags/sc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sc.jpg -------------------------------------------------------------------------------- /img/flags/scotland.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/scotland.jpg -------------------------------------------------------------------------------- /img/flags/sd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sd.jpg -------------------------------------------------------------------------------- /img/flags/se.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/se.jpg -------------------------------------------------------------------------------- /img/flags/sg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sg.jpg -------------------------------------------------------------------------------- /img/flags/sh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sh.jpg -------------------------------------------------------------------------------- /img/flags/si.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/si.jpg -------------------------------------------------------------------------------- /img/flags/sj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sj.jpg -------------------------------------------------------------------------------- /img/flags/sk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sk.jpg -------------------------------------------------------------------------------- /img/flags/sl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sl.jpg -------------------------------------------------------------------------------- /img/flags/sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sm.jpg -------------------------------------------------------------------------------- /img/flags/sn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sn.jpg -------------------------------------------------------------------------------- /img/flags/so.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/so.jpg -------------------------------------------------------------------------------- /img/flags/sr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sr.jpg -------------------------------------------------------------------------------- /img/flags/st.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/st.jpg -------------------------------------------------------------------------------- /img/flags/sv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sv.jpg -------------------------------------------------------------------------------- /img/flags/sy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sy.jpg -------------------------------------------------------------------------------- /img/flags/sz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/sz.jpg -------------------------------------------------------------------------------- /img/flags/tc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tc.jpg -------------------------------------------------------------------------------- /img/flags/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/td.jpg -------------------------------------------------------------------------------- /img/flags/tf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tf.jpg -------------------------------------------------------------------------------- /img/flags/tg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tg.jpg -------------------------------------------------------------------------------- /img/flags/th.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/th.jpg -------------------------------------------------------------------------------- /img/flags/tj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tj.jpg -------------------------------------------------------------------------------- /img/flags/tk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tk.jpg -------------------------------------------------------------------------------- /img/flags/tl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tl.jpg -------------------------------------------------------------------------------- /img/flags/tm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tm.jpg -------------------------------------------------------------------------------- /img/flags/tn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tn.jpg -------------------------------------------------------------------------------- /img/flags/to.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/to.jpg -------------------------------------------------------------------------------- /img/flags/tr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tr.jpg -------------------------------------------------------------------------------- /img/flags/tt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tt.jpg -------------------------------------------------------------------------------- /img/flags/tv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tv.jpg -------------------------------------------------------------------------------- /img/flags/tw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tw.jpg -------------------------------------------------------------------------------- /img/flags/tz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/tz.jpg -------------------------------------------------------------------------------- /img/flags/ua.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ua.jpg -------------------------------------------------------------------------------- /img/flags/ug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ug.jpg -------------------------------------------------------------------------------- /img/flags/um.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/um.jpg -------------------------------------------------------------------------------- /img/flags/us.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/us.jpg -------------------------------------------------------------------------------- /img/flags/uy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/uy.jpg -------------------------------------------------------------------------------- /img/flags/uz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/uz.jpg -------------------------------------------------------------------------------- /img/flags/va.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/va.jpg -------------------------------------------------------------------------------- /img/flags/vc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/vc.jpg -------------------------------------------------------------------------------- /img/flags/ve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ve.jpg -------------------------------------------------------------------------------- /img/flags/vg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/vg.jpg -------------------------------------------------------------------------------- /img/flags/vi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/vi.jpg -------------------------------------------------------------------------------- /img/flags/vn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/vn.jpg -------------------------------------------------------------------------------- /img/flags/vu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/vu.jpg -------------------------------------------------------------------------------- /img/flags/wales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/wales.jpg -------------------------------------------------------------------------------- /img/flags/wf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/wf.jpg -------------------------------------------------------------------------------- /img/flags/ws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ws.jpg -------------------------------------------------------------------------------- /img/flags/ye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/ye.jpg -------------------------------------------------------------------------------- /img/flags/yt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/yt.jpg -------------------------------------------------------------------------------- /img/flags/za.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/za.jpg -------------------------------------------------------------------------------- /img/flags/zm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/zm.jpg -------------------------------------------------------------------------------- /img/flags/zw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/flags/zw.jpg -------------------------------------------------------------------------------- /img/genders/Unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/genders/Unknown.jpg -------------------------------------------------------------------------------- /img/genders/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/genders/index.php -------------------------------------------------------------------------------- /img/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/index.php -------------------------------------------------------------------------------- /img/jquery-ui/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/jquery-ui/index.php -------------------------------------------------------------------------------- /img/l/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/l/index.php -------------------------------------------------------------------------------- /img/l/none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/l/none.jpg -------------------------------------------------------------------------------- /img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/loader.gif -------------------------------------------------------------------------------- /img/loadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/loadingAnimation.gif -------------------------------------------------------------------------------- /img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/logo.jpg -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/logo_invoice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/logo_invoice.jpg -------------------------------------------------------------------------------- /img/logo_stores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/logo_stores.png -------------------------------------------------------------------------------- /img/m/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/m/index.php -------------------------------------------------------------------------------- /img/macFFBgHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/macFFBgHack.png -------------------------------------------------------------------------------- /img/os/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/os/index.php -------------------------------------------------------------------------------- /img/p/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/p/index.php -------------------------------------------------------------------------------- /img/prestashop-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/prestashop-avatar.png -------------------------------------------------------------------------------- /img/prestashop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/prestashop@2x.png -------------------------------------------------------------------------------- /img/preston-login@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/preston-login@2x.png -------------------------------------------------------------------------------- /img/questionmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/questionmark.png -------------------------------------------------------------------------------- /img/s/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/s/2.jpg -------------------------------------------------------------------------------- /img/s/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/s/index.php -------------------------------------------------------------------------------- /img/scenes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/scenes/index.php -------------------------------------------------------------------------------- /img/st/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/st/index.php -------------------------------------------------------------------------------- /img/su/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/su/index.php -------------------------------------------------------------------------------- /img/t/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/t/0.gif -------------------------------------------------------------------------------- /img/t/AdminMobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/t/AdminMobile.gif -------------------------------------------------------------------------------- /img/t/AdminRequestSql.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/t/AdminRequestSql.gif -------------------------------------------------------------------------------- /img/t/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/t/index.php -------------------------------------------------------------------------------- /img/tmp/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/img/tmp/index.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/index.php -------------------------------------------------------------------------------- /init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/init.php -------------------------------------------------------------------------------- /install-dev/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/install-dev/autoload.php -------------------------------------------------------------------------------- /install-dev/data/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/install-dev/data/index.php -------------------------------------------------------------------------------- /install-dev/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/install-dev/index.php -------------------------------------------------------------------------------- /install-dev/index_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/install-dev/index_cli.php -------------------------------------------------------------------------------- /install-dev/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/install-dev/init.php -------------------------------------------------------------------------------- /install-dev/theme/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/install-dev/theme/rtl.css -------------------------------------------------------------------------------- /install-dev/theme/view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/install-dev/theme/view.css -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.2.4.0.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.2.5.0.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.0.5.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.0.6.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.0.7.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | 3 | /* PHP:setAllGroupsOnHomeCategory(); */; 4 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.0.9.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.1.1.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.2.1.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | 3 | 4 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.2.3.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.4.0.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.5.0.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.6.0.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | 3 | /* PHP:update_products_ecotax_v133(); */; 4 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.3.7.0.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.4.0.1.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | 3 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.4.0.13.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.4.4.1.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.4.5.1.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.4.7.1.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | 3 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.4.7.2.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | 3 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.5.0.11.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; 2 | 3 | 4 | -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.5.6.2.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8'; -------------------------------------------------------------------------------- /install-dev/upgrade/sql/1.7.6.3.sql: -------------------------------------------------------------------------------- 1 | /* PHP:ps_1763_update_tabs(); */; 2 | -------------------------------------------------------------------------------- /js/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/.eslintrc.js -------------------------------------------------------------------------------- /js/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/.htaccess -------------------------------------------------------------------------------- /js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin.js -------------------------------------------------------------------------------- /js/admin/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/addons.js -------------------------------------------------------------------------------- /js/admin/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/attachments.js -------------------------------------------------------------------------------- /js/admin/carrier_wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/carrier_wizard.js -------------------------------------------------------------------------------- /js/admin/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/dashboard.js -------------------------------------------------------------------------------- /js/admin/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/dnd.js -------------------------------------------------------------------------------- /js/admin/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/email.js -------------------------------------------------------------------------------- /js/admin/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/import.js -------------------------------------------------------------------------------- /js/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/index.php -------------------------------------------------------------------------------- /js/admin/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/login.js -------------------------------------------------------------------------------- /js/admin/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/notifications.js -------------------------------------------------------------------------------- /js/admin/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/price.js -------------------------------------------------------------------------------- /js/admin/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/products.js -------------------------------------------------------------------------------- /js/admin/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/themes.js -------------------------------------------------------------------------------- /js/admin/tinymce.inc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/tinymce.inc.js -------------------------------------------------------------------------------- /js/admin/tinymce_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/admin/tinymce_loader.js -------------------------------------------------------------------------------- /js/cropper/builder.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/builder.LICENSE -------------------------------------------------------------------------------- /js/cropper/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/builder.js -------------------------------------------------------------------------------- /js/cropper/cropper.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/cropper.LICENSE -------------------------------------------------------------------------------- /js/cropper/cropper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/cropper.css -------------------------------------------------------------------------------- /js/cropper/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/cropper.js -------------------------------------------------------------------------------- /js/cropper/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/dragdrop.js -------------------------------------------------------------------------------- /js/cropper/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/index.php -------------------------------------------------------------------------------- /js/cropper/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/loader.js -------------------------------------------------------------------------------- /js/cropper/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/cropper/prototype.js -------------------------------------------------------------------------------- /js/date.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/date.LICENSE -------------------------------------------------------------------------------- /js/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/date.js -------------------------------------------------------------------------------- /js/fileuploader.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/fileuploader.LICENSE -------------------------------------------------------------------------------- /js/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/fileuploader.js -------------------------------------------------------------------------------- /js/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/index.php -------------------------------------------------------------------------------- /js/jquery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/jquery/LICENSE -------------------------------------------------------------------------------- /js/jquery/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/jquery/index.php -------------------------------------------------------------------------------- /js/jquery/ui/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/jquery/ui/index.php -------------------------------------------------------------------------------- /js/jquery/ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/jquery/ui/jquery-ui.js -------------------------------------------------------------------------------- /js/retro-compat.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/retro-compat.js.php -------------------------------------------------------------------------------- /js/rtl.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/rtl.LICENSE -------------------------------------------------------------------------------- /js/rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/rtl.js -------------------------------------------------------------------------------- /js/tiny_mce/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/index.php -------------------------------------------------------------------------------- /js/tiny_mce/langs/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ar.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/az.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/be.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/bg.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/br.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/bs.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ca.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/cs.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/cy.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/da.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/de.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/dv.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/el.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/en.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/es.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/et.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/eu.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/fa.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/fi.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/fo.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/fr.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/gd.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/gl.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/he.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/hr.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/hu.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/hy.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/id.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/is.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/it.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ja.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ka.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/kk.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/km.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ko.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/lb.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/lt.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/lv.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ml.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/nb.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/nl.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/pl.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/pt.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ro.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ru.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/si.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/sk.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/sl.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/sr.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/sv.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ta.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/tg.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/th.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/tr.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/ug.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/uk.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/vi.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/langs/zh.js -------------------------------------------------------------------------------- /js/tiny_mce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/license.txt -------------------------------------------------------------------------------- /js/tiny_mce/tiny_mce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/tiny_mce.js -------------------------------------------------------------------------------- /js/tiny_mce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tiny_mce/tinymce.min.js -------------------------------------------------------------------------------- /js/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/tools.js -------------------------------------------------------------------------------- /js/unicode_hack.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/unicode_hack.LICENSE -------------------------------------------------------------------------------- /js/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/validate.js -------------------------------------------------------------------------------- /js/vendor/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/vendor/bower.json -------------------------------------------------------------------------------- /js/vendor/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/vendor/d3.v3.min.js -------------------------------------------------------------------------------- /js/vendor/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/vendor/index.php -------------------------------------------------------------------------------- /js/vendor/ladda.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/vendor/ladda.LICENSE -------------------------------------------------------------------------------- /js/vendor/ladda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/vendor/ladda.js -------------------------------------------------------------------------------- /js/vendor/spin.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/vendor/spin.LICENSE -------------------------------------------------------------------------------- /js/vendor/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/js/vendor/spin.js -------------------------------------------------------------------------------- /localization/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/.htaccess -------------------------------------------------------------------------------- /localization/ae.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ae.xml -------------------------------------------------------------------------------- /localization/ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ar.xml -------------------------------------------------------------------------------- /localization/at.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/at.xml -------------------------------------------------------------------------------- /localization/au.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/au.xml -------------------------------------------------------------------------------- /localization/az.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/az.xml -------------------------------------------------------------------------------- /localization/ba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ba.xml -------------------------------------------------------------------------------- /localization/bd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/bd.xml -------------------------------------------------------------------------------- /localization/be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/be.xml -------------------------------------------------------------------------------- /localization/bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/bg.xml -------------------------------------------------------------------------------- /localization/bo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/bo.xml -------------------------------------------------------------------------------- /localization/br.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/br.xml -------------------------------------------------------------------------------- /localization/by.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/by.xml -------------------------------------------------------------------------------- /localization/ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ca.xml -------------------------------------------------------------------------------- /localization/ch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ch.xml -------------------------------------------------------------------------------- /localization/ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ci.xml -------------------------------------------------------------------------------- /localization/cl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/cl.xml -------------------------------------------------------------------------------- /localization/cm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/cm.xml -------------------------------------------------------------------------------- /localization/cn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/cn.xml -------------------------------------------------------------------------------- /localization/co.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/co.xml -------------------------------------------------------------------------------- /localization/cr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/cr.xml -------------------------------------------------------------------------------- /localization/cy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/cy.xml -------------------------------------------------------------------------------- /localization/cz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/cz.xml -------------------------------------------------------------------------------- /localization/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/de.xml -------------------------------------------------------------------------------- /localization/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/default.xml -------------------------------------------------------------------------------- /localization/dk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/dk.xml -------------------------------------------------------------------------------- /localization/do.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/do.xml -------------------------------------------------------------------------------- /localization/dz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/dz.xml -------------------------------------------------------------------------------- /localization/ec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ec.xml -------------------------------------------------------------------------------- /localization/ee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ee.xml -------------------------------------------------------------------------------- /localization/eg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/eg.xml -------------------------------------------------------------------------------- /localization/es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/es.xml -------------------------------------------------------------------------------- /localization/fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/fi.xml -------------------------------------------------------------------------------- /localization/fj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/fj.xml -------------------------------------------------------------------------------- /localization/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/fr.xml -------------------------------------------------------------------------------- /localization/gb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/gb.xml -------------------------------------------------------------------------------- /localization/ge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ge.xml -------------------------------------------------------------------------------- /localization/gr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/gr.xml -------------------------------------------------------------------------------- /localization/gt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/gt.xml -------------------------------------------------------------------------------- /localization/gy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/gy.xml -------------------------------------------------------------------------------- /localization/hk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/hk.xml -------------------------------------------------------------------------------- /localization/hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/hr.xml -------------------------------------------------------------------------------- /localization/hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/hu.xml -------------------------------------------------------------------------------- /localization/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/id.xml -------------------------------------------------------------------------------- /localization/ie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ie.xml -------------------------------------------------------------------------------- /localization/il.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/il.xml -------------------------------------------------------------------------------- /localization/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/in.xml -------------------------------------------------------------------------------- /localization/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/index.php -------------------------------------------------------------------------------- /localization/ir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ir.xml -------------------------------------------------------------------------------- /localization/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/it.xml -------------------------------------------------------------------------------- /localization/je.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/je.xml -------------------------------------------------------------------------------- /localization/jp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/jp.xml -------------------------------------------------------------------------------- /localization/ke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ke.xml -------------------------------------------------------------------------------- /localization/kr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/kr.xml -------------------------------------------------------------------------------- /localization/li.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/li.xml -------------------------------------------------------------------------------- /localization/lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/lt.xml -------------------------------------------------------------------------------- /localization/lu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/lu.xml -------------------------------------------------------------------------------- /localization/lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/lv.xml -------------------------------------------------------------------------------- /localization/ma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ma.xml -------------------------------------------------------------------------------- /localization/md.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/md.xml -------------------------------------------------------------------------------- /localization/mg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/mg.xml -------------------------------------------------------------------------------- /localization/mt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/mt.xml -------------------------------------------------------------------------------- /localization/mx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/mx.xml -------------------------------------------------------------------------------- /localization/my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/my.xml -------------------------------------------------------------------------------- /localization/ng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ng.xml -------------------------------------------------------------------------------- /localization/nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/nl.xml -------------------------------------------------------------------------------- /localization/no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/no.xml -------------------------------------------------------------------------------- /localization/nz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/nz.xml -------------------------------------------------------------------------------- /localization/pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/pa.xml -------------------------------------------------------------------------------- /localization/pe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/pe.xml -------------------------------------------------------------------------------- /localization/ph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ph.xml -------------------------------------------------------------------------------- /localization/pk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/pk.xml -------------------------------------------------------------------------------- /localization/pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/pl.xml -------------------------------------------------------------------------------- /localization/pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/pt.xml -------------------------------------------------------------------------------- /localization/py.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/py.xml -------------------------------------------------------------------------------- /localization/ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ro.xml -------------------------------------------------------------------------------- /localization/rs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/rs.xml -------------------------------------------------------------------------------- /localization/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ru.xml -------------------------------------------------------------------------------- /localization/sa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/sa.xml -------------------------------------------------------------------------------- /localization/se.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/se.xml -------------------------------------------------------------------------------- /localization/sg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/sg.xml -------------------------------------------------------------------------------- /localization/si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/si.xml -------------------------------------------------------------------------------- /localization/sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/sk.xml -------------------------------------------------------------------------------- /localization/sn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/sn.xml -------------------------------------------------------------------------------- /localization/sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/sv.xml -------------------------------------------------------------------------------- /localization/th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/th.xml -------------------------------------------------------------------------------- /localization/tn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/tn.xml -------------------------------------------------------------------------------- /localization/tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/tr.xml -------------------------------------------------------------------------------- /localization/tw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/tw.xml -------------------------------------------------------------------------------- /localization/tz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/tz.xml -------------------------------------------------------------------------------- /localization/ua.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ua.xml -------------------------------------------------------------------------------- /localization/us.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/us.xml -------------------------------------------------------------------------------- /localization/uy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/uy.xml -------------------------------------------------------------------------------- /localization/ve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/ve.xml -------------------------------------------------------------------------------- /localization/vn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/vn.xml -------------------------------------------------------------------------------- /localization/za.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/localization/za.xml -------------------------------------------------------------------------------- /mails/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/mails/.htaccess -------------------------------------------------------------------------------- /mails/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/mails/index.php -------------------------------------------------------------------------------- /mails/themes/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/mails/themes/.htaccess -------------------------------------------------------------------------------- /mails/themes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/mails/themes/index.php -------------------------------------------------------------------------------- /modules/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/modules/.htaccess -------------------------------------------------------------------------------- /modules/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/modules/index.php -------------------------------------------------------------------------------- /override/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/override/.htaccess -------------------------------------------------------------------------------- /override/classes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/override/classes/index.php -------------------------------------------------------------------------------- /override/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/override/index.php -------------------------------------------------------------------------------- /override/modules/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/override/modules/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/package.json -------------------------------------------------------------------------------- /pdf/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/.htaccess -------------------------------------------------------------------------------- /pdf/delivery-slip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/delivery-slip.tpl -------------------------------------------------------------------------------- /pdf/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/footer.tpl -------------------------------------------------------------------------------- /pdf/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/header.tpl -------------------------------------------------------------------------------- /pdf/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/index.php -------------------------------------------------------------------------------- /pdf/invoice-b2b.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/invoice-b2b.tpl -------------------------------------------------------------------------------- /pdf/invoice.note-tab.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/invoice.note-tab.tpl -------------------------------------------------------------------------------- /pdf/invoice.style-tab.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/invoice.style-tab.tpl -------------------------------------------------------------------------------- /pdf/invoice.tax-tab.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/invoice.tax-tab.tpl -------------------------------------------------------------------------------- /pdf/invoice.total-tab.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/invoice.total-tab.tpl -------------------------------------------------------------------------------- /pdf/invoice.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/invoice.tpl -------------------------------------------------------------------------------- /pdf/order-return.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/order-return.tpl -------------------------------------------------------------------------------- /pdf/order-slip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/order-slip.tpl -------------------------------------------------------------------------------- /pdf/pagination.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/pagination.tpl -------------------------------------------------------------------------------- /pdf/supply-order.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/pdf/supply-order.tpl -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/Adapter/ClassLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Adapter/ClassLang.php -------------------------------------------------------------------------------- /src/Adapter/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Adapter/Database.php -------------------------------------------------------------------------------- /src/Adapter/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Adapter/Tools.php -------------------------------------------------------------------------------- /src/Adapter/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Adapter/Validate.php -------------------------------------------------------------------------------- /src/Core/Cart/CartRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Core/Cart/CartRow.php -------------------------------------------------------------------------------- /src/Core/Cart/Fees.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Core/Cart/Fees.php -------------------------------------------------------------------------------- /src/Core/Grid/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Core/Grid/Grid.php -------------------------------------------------------------------------------- /src/Core/Hook/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Core/Hook/Hook.php -------------------------------------------------------------------------------- /src/Core/Import/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/src/Core/Import/Entity.php -------------------------------------------------------------------------------- /src/PrestaShopBundle/Resources/config/doctrine/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/PrestaShopBundle/Resources/config/services/core/form.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: form/*.yml } 3 | -------------------------------------------------------------------------------- /tests-legacy/PrestaShopBundle/Twig/Fixtures/module2/views/PrestaShop/test.html.twig: -------------------------------------------------------------------------------- 1 | module2 2 | -------------------------------------------------------------------------------- /tests-legacy/PrestaShopBundle/resources/themes/fake-theme/preview.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests-legacy/README.md -------------------------------------------------------------------------------- /tests-legacy/Unit/Core/Foundation/FileSystem/fixtures/a/a.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/Unit/Core/Foundation/FileSystem/fixtures/a/b/b.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/Unit/Core/Foundation/FileSystem/fixtures/toplevel.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/Unit/Core/Foundation/VersionTest.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests-legacy/bootstrap.php -------------------------------------------------------------------------------- /tests-legacy/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests-legacy/index.php -------------------------------------------------------------------------------- /tests-legacy/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests-legacy/phpunit.xml -------------------------------------------------------------------------------- /tests-legacy/resources/minimal-missconfig-theme/preview.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/resources/minimal-missfiles-theme/preview.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/resources/minimal-valid-theme/preview.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests-legacy/resources/module-self-config-files/emptyModuleConfExample.yml: -------------------------------------------------------------------------------- 1 | configuration: -------------------------------------------------------------------------------- /tests-legacy/resources/module-self-config-files/sql/file1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `ps_doge` SET `wow` = 1 2 | -------------------------------------------------------------------------------- /tests-legacy/resources/module/demo/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests-legacy/resources/modules/bankwire/self_config.yml: -------------------------------------------------------------------------------- 1 | configuration: -------------------------------------------------------------------------------- /tests-legacy/resources/modules/cronjobs/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests-legacy/resources/modules/gamification/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests-legacy/sf-tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests-legacy/sf-tests.xml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/Resources/modules/ps_banner/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/Resources/modules/translationtest/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/Resources/themes/fakeThemeForTranslations/preview.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/UI/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/UI/.eslintrc.js -------------------------------------------------------------------------------- /tests/UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/UI/.gitignore -------------------------------------------------------------------------------- /tests/UI/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/UI/.mocharc.json -------------------------------------------------------------------------------- /tests/UI/DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/UI/DOCKER.md -------------------------------------------------------------------------------- /tests/UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/UI/README.md -------------------------------------------------------------------------------- /tests/UI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/UI/package-lock.json -------------------------------------------------------------------------------- /tests/UI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/UI/package.json -------------------------------------------------------------------------------- /tests/Unit/PrestaShopBundle/Twig/Fixtures/modules/dummy.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/Unit/README.md -------------------------------------------------------------------------------- /tests/Unit/Resources/assets/css/override.css: -------------------------------------------------------------------------------- 1 | .promo_code { 2 | background-color: #00ff00; 3 | } 4 | -------------------------------------------------------------------------------- /tests/Unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/Unit/bootstrap.php -------------------------------------------------------------------------------- /tests/Unit/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/Unit/phpunit.xml -------------------------------------------------------------------------------- /tests/check_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/check_e2e.sh -------------------------------------------------------------------------------- /tests/check_file_syntax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/check_file_syntax.sh -------------------------------------------------------------------------------- /tests/check_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/check_integration.sh -------------------------------------------------------------------------------- /tests/check_sanity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/check_sanity.sh -------------------------------------------------------------------------------- /tests/check_unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/check_unit.sh -------------------------------------------------------------------------------- /tests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tests/index.php -------------------------------------------------------------------------------- /themes/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/.htaccess -------------------------------------------------------------------------------- /themes/_core/js/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/_core/js/address.js -------------------------------------------------------------------------------- /themes/_core/js/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/_core/js/cart.js -------------------------------------------------------------------------------- /themes/_core/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/_core/js/common.js -------------------------------------------------------------------------------- /themes/_core/js/facets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/_core/js/facets.js -------------------------------------------------------------------------------- /themes/_core/js/listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/_core/js/listing.js -------------------------------------------------------------------------------- /themes/_core/js/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/_core/js/product.js -------------------------------------------------------------------------------- /themes/_core/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/_core/js/theme.js -------------------------------------------------------------------------------- /themes/classic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/classic/README.md -------------------------------------------------------------------------------- /themes/classic/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/classic/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/classic/preview.png -------------------------------------------------------------------------------- /themes/classic/templates/errors/static/500.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/classic/templates/errors/static/503.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/core.js -------------------------------------------------------------------------------- /themes/core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/core.js.map -------------------------------------------------------------------------------- /themes/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/debug.tpl -------------------------------------------------------------------------------- /themes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/index.php -------------------------------------------------------------------------------- /themes/javascript.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/javascript.tpl -------------------------------------------------------------------------------- /themes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/package-lock.json -------------------------------------------------------------------------------- /themes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/package.json -------------------------------------------------------------------------------- /themes/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/themes/webpack.config.js -------------------------------------------------------------------------------- /tools/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/.htaccess -------------------------------------------------------------------------------- /tools/assets/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/assets/build.sh -------------------------------------------------------------------------------- /tools/build/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.phar 3 | vendor/ 4 | -------------------------------------------------------------------------------- /tools/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/build/README.md -------------------------------------------------------------------------------- /tools/build/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/build/composer.json -------------------------------------------------------------------------------- /tools/build/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/build/composer.lock -------------------------------------------------------------------------------- /tools/build/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/build/phpunit.xml -------------------------------------------------------------------------------- /tools/build/releases/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/index.php -------------------------------------------------------------------------------- /tools/profiling/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/profiling/.htaccess -------------------------------------------------------------------------------- /tools/profiling/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/profiling/Db.php -------------------------------------------------------------------------------- /tools/profiling/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/profiling/Tools.php -------------------------------------------------------------------------------- /tools/profiling/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/tools/profiling/index.php -------------------------------------------------------------------------------- /translations/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/translations/index.php -------------------------------------------------------------------------------- /travis-scripts/start-xvfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/travis-scripts/start-xvfb -------------------------------------------------------------------------------- /upload/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/upload/.htaccess -------------------------------------------------------------------------------- /upload/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/upload/index.php -------------------------------------------------------------------------------- /var/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/var/.htaccess -------------------------------------------------------------------------------- /var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | # Keep cache folder 2 | -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | # Keep Log folder 2 | -------------------------------------------------------------------------------- /var/sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | # Keep sessions folder 2 | -------------------------------------------------------------------------------- /vendor/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/vendor/.htaccess -------------------------------------------------------------------------------- /webservice/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/webservice/dispatcher.php -------------------------------------------------------------------------------- /webservice/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/PrestaShop/HEAD/webservice/index.php --------------------------------------------------------------------------------