├── .bowerrc ├── .gitignore ├── LICENSE.md ├── README.md ├── Vagrantfile ├── addons └── .gitignore ├── appadmin ├── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ ├── .gitignore │ │ └── Fecadmin.php │ ├── fecshop_local_services │ │ ├── Admin.php │ │ ├── FecshopLang.php │ │ └── Page.php │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── languages │ ├── .gitignore │ ├── de-DE │ │ └── appadmin.php │ ├── en-US │ │ └── appadmin.php │ ├── es-ES │ │ └── appadmin.php │ ├── fr-FR │ │ └── appadmin.php │ ├── it-IT │ │ └── appadmin.php │ ├── nl-NL │ │ └── appadmin.php │ ├── pt-PT │ │ └── appadmin.php │ ├── ru-RU │ │ └── appadmin.php │ └── zh-CN │ │ └── appadmin.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ ├── .gitignore │ │ └── mongodb │ │ │ └── Category.php │ ├── local_modules │ │ └── .gitignore │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ └── upload │ │ └── .gitignore ├── theme │ └── local │ │ └── theme01 │ │ ├── .gitignore │ │ └── layouts │ │ └── .gitignore ├── uploads │ └── product │ │ ├── product_1492501121_product.xlsx │ │ └── product_1492501160_product.xlsx ├── views │ └── layouts │ │ └── main_ajax.php └── web │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── download │ ├── fecshop_category_upload.zip │ └── fecshop_product_upload.zip │ ├── favicon.ico │ └── skin │ ├── .gitignore │ └── default │ ├── .gitignore │ └── images │ ├── .gitignore │ └── blue_logo.png ├── appapi ├── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ ├── .gitignore │ │ └── V1.php │ ├── fecshop_local_services │ │ ├── .gitignore │ │ └── Session.php │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ └── .gitignore │ ├── local_modules │ │ ├── .gitignore │ │ └── V1 │ │ │ └── controllers │ │ │ └── CustomerController.php │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ └── cache │ │ └── .gitignore └── web │ ├── .gitignore │ ├── .htaccess │ └── assets │ └── .gitignore ├── appbdmin ├── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ ├── .gitignore │ │ └── Fecbdmin.php │ ├── fecshop_local_services │ │ ├── FecshopLang.php │ │ └── Page.php │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── languages │ ├── .gitignore │ ├── de-DE │ │ └── appbdmin.php │ ├── en-US │ │ └── appbdmin.php │ ├── es-ES │ │ └── appbdmin.php │ ├── fr-FR │ │ └── appbdmin.php │ ├── it-IT │ │ └── appbdmin.php │ ├── nl-NL │ │ └── appbdmin.php │ ├── pt-PT │ │ └── appbdmin.php │ ├── ru-RU │ │ └── appbdmin.php │ └── zh-CN │ │ └── appbdmin.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ ├── .gitignore │ │ └── mongodb │ │ │ └── Category.php │ ├── local_modules │ │ └── .gitignore │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ └── cache │ │ └── .gitignore ├── theme │ └── local │ │ └── theme01 │ │ ├── .gitignore │ │ └── layouts │ │ └── .gitignore ├── uploads │ └── product │ │ └── .gitignore ├── views │ └── layouts │ │ └── main_ajax.php └── web │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── favicon.ico │ ├── index.php │ └── skin │ ├── .gitignore │ └── default │ ├── .gitignore │ └── images │ ├── .gitignore │ └── blue_logo.png ├── apperp ├── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ └── .gitignore │ ├── fecshop_local_services │ │ └── .gitignore │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── languages │ ├── .gitignore │ ├── de-DE │ │ └── apperp.php │ ├── en-US │ │ └── apperp.php │ ├── es-ES │ │ └── apperp.php │ ├── fr-FR │ │ └── apperp.php │ ├── it-IT │ │ └── apperp.php │ ├── nl_NL │ │ └── apperp.php │ ├── pt-PT │ │ └── apperp.php │ ├── ru-RU │ │ └── apperp.php │ └── zh-CN │ │ └── apperp.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ ├── .gitignore │ │ └── mongodb │ │ │ └── Category.php │ ├── local_modules │ │ └── .gitignore │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ └── cache │ │ └── .gitignore ├── theme │ └── local │ │ └── theme01 │ │ ├── .gitignore │ │ └── layouts │ │ └── .gitignore ├── uploads │ └── product │ │ └── .gitignore ├── views │ └── layouts │ │ └── main_ajax.php └── web │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── favicon.ico │ └── index.php ├── appfa ├── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ └── .gitignore │ ├── fecshop_local_services │ │ └── .gitignore │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── languages │ ├── .gitignore │ ├── de-DE │ │ └── appfa.php │ ├── en-US │ │ └── appfa.php │ ├── es-ES │ │ └── appfa.php │ ├── fr-FR │ │ └── appfa.php │ ├── it-IT │ │ └── appfa.php │ ├── nl_NL │ │ └── appfa.php │ ├── pt-PT │ │ └── appfa.php │ ├── ru-RU │ │ └── appfa.php │ └── zh-CN │ │ └── appfa.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ ├── .gitignore │ │ └── mongodb │ │ │ └── Category.php │ ├── local_modules │ │ └── .gitignore │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ └── cache │ │ └── .gitignore ├── theme │ └── local │ │ └── theme01 │ │ ├── .gitignore │ │ └── layouts │ │ └── .gitignore ├── uploads │ └── product │ │ └── .gitignore ├── views │ └── layouts │ │ └── main_ajax.php └── web │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── favicon.ico │ ├── fec_trace.js │ └── index.php ├── appfront ├── .gitignore ├── components │ └── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ ├── .gitignore │ │ ├── Catalog.php │ │ ├── Catalogsearch.php │ │ ├── Cms.php │ │ └── Mytest.php │ ├── fecshop_local_services │ │ ├── .gitignore │ │ ├── Cache.php │ │ ├── Event.php │ │ ├── FecshopLang.php │ │ ├── Page.php │ │ ├── Payment.php │ │ ├── Search.php │ │ ├── Store.php │ │ └── Url.php │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── languages │ ├── .gitignore │ ├── ar-AE │ │ └── appfront.php │ ├── de-DE │ │ └── appfront.php │ ├── en-US │ │ └── appfront.php │ ├── es-ES │ │ └── appfront.php │ ├── fr-FR │ │ └── appfront.php │ ├── it-IT │ │ └── appfront.php │ ├── ja-JP │ │ └── appfront.php │ ├── ko-KR │ │ └── appfront.php │ ├── nl-NL │ │ └── appfront.php │ ├── pt-PT │ │ └── appfront.php │ ├── ru-RU │ │ └── appfront.php │ ├── zh-CN │ │ └── appfront.php │ └── zh-TW │ │ └── appfront.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ ├── .gitignore │ │ └── mongodb │ │ │ └── Category.php │ ├── local_modules │ │ ├── .gitignore │ │ ├── Catalog │ │ │ ├── block │ │ │ │ └── product │ │ │ │ │ └── CustomOption.php │ │ │ └── controllers │ │ │ │ └── CategoryController.php │ │ ├── Cms │ │ │ └── block │ │ │ │ └── home │ │ │ │ └── Index.php │ │ └── Mytest │ │ │ ├── Module.php │ │ │ ├── block │ │ │ └── customer │ │ │ │ └── Test.php │ │ │ └── controllers │ │ │ └── CustomerController.php │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ └── fecshop_logs │ │ └── .gitignore ├── theme │ └── terry │ │ └── theme01 │ │ ├── assets │ │ ├── css │ │ │ └── .gitignore │ │ ├── image │ │ │ └── .gitignore │ │ └── js │ │ │ └── .gitignore │ │ ├── cms │ │ └── home │ │ │ └── .gitignore │ │ ├── layouts │ │ └── .gitignore │ │ └── mytest │ │ └── customer │ │ └── test.php └── web │ ├── .gitignore │ ├── .htaccess │ ├── ar │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── assets │ └── .gitignore │ ├── cn │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── de │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── en │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── es │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── favicon.ico │ ├── fr │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── gss.xsl │ ├── install │ ├── assets │ │ └── .gitignore │ └── index.php │ ├── it │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── jp │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── kr │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── nl │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── pt │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── ru │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ └── tw │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl ├── apphtml5 ├── .gitignore ├── components │ └── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ ├── .gitignore │ │ ├── Catalog.php │ │ ├── CatalogSearch.php │ │ └── Cms.php │ ├── fecshop_local_services │ │ ├── .gitignore │ │ ├── Cache.php │ │ ├── Event.php │ │ ├── FecshopLang.php │ │ ├── Page.php │ │ ├── Payment.php │ │ ├── Search.php │ │ ├── Store.php │ │ └── Url.php │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── languages │ ├── .gitignore │ ├── ar-AE │ │ └── appfront.php │ ├── de-DE │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── en-US │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── es-ES │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── fr-FR │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── it-IT │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── ja-JP │ │ └── appfront.php │ ├── ko-KR │ │ └── appfront.php │ ├── nl-NL │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── pt-PT │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── ru-RU │ │ ├── appfront.php │ │ └── apphtml5.php │ ├── zh-CN │ │ └── apphtml5.php │ └── zh-TW │ │ └── appfront.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ └── .gitignore │ ├── local_modules │ │ └── .gitignore │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ └── fecshop_logs │ │ └── .gitignore ├── theme │ └── terry │ │ └── theme01 │ │ ├── assets │ │ ├── css │ │ │ └── .gitignore │ │ ├── image │ │ │ └── .gitignore │ │ └── js │ │ │ └── .gitignore │ │ ├── cms │ │ └── home │ │ │ └── .gitignore │ │ └── layouts │ │ └── .gitignore └── web │ ├── .gitignore │ ├── .htaccess │ ├── ar │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── assets │ └── .gitignore │ ├── cn │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── de │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── en │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── es │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── favicon.ico │ ├── fr │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── gss.xsl │ ├── it │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── jp │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── kr │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── nl │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── pt │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ ├── ru │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl │ └── tw │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── favicon.ico │ └── gss.xsl ├── appimage ├── common │ ├── addons │ │ └── .gitignore │ ├── appadmin │ │ ├── custom │ │ │ └── .gitignore │ │ └── media │ │ │ └── catalog │ │ │ ├── category │ │ │ └── .gitignore │ │ │ └── product │ │ │ └── .gitignore │ ├── appfront │ │ ├── custom │ │ │ ├── logo-fecshop.png │ │ │ └── logo.png │ │ ├── images │ │ │ ├── 1.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 404.png │ │ │ ├── creditcard48.jpg │ │ │ ├── en_.jpg │ │ │ ├── en_1.jpg │ │ │ ├── en_2.jpg │ │ │ ├── en_3.jpg │ │ │ ├── en_a.jpg │ │ │ ├── fb.png │ │ │ ├── footer_fixed.png │ │ │ ├── free_en.jpg │ │ │ ├── googole.png │ │ │ ├── lazyload1.gif │ │ │ ├── loader.gif │ │ │ ├── new.jpg │ │ │ ├── paypal48.jpg │ │ │ ├── pinter.png │ │ │ ├── pp.png │ │ │ ├── sammy.jpg │ │ │ ├── toptip.png │ │ │ ├── twitter.png │ │ │ └── vip.jpg │ │ ├── mail │ │ │ └── logo.png │ │ └── media │ │ │ └── .gitignore │ ├── apphtml5 │ │ ├── custom │ │ │ ├── home_img_1.jpg │ │ │ ├── home_img_2.jpg │ │ │ ├── home_img_3.jpg │ │ │ ├── home_img_4.jpg │ │ │ ├── home_small_1.jpg │ │ │ ├── home_small_2.jpg │ │ │ └── product │ │ │ │ ├── product_1.jpg │ │ │ │ ├── product_2.jpg │ │ │ │ ├── product_3.jpg │ │ │ │ ├── product_4.jpg │ │ │ │ ├── product_5.jpg │ │ │ │ ├── product_6.jpg │ │ │ │ └── product_7.jpg │ │ ├── images │ │ │ ├── 404.png │ │ │ └── loader.gif │ │ └── media │ │ │ └── .gitignore │ ├── custom │ │ └── .gitignore │ ├── email │ │ └── logo.png │ ├── images │ │ ├── AjaxLoader.gif │ │ ├── ajax-loader.gif │ │ ├── bkg_btn-close2.gif │ │ ├── facebook.jpg │ │ ├── google.jpg │ │ ├── lazyload.gif │ │ ├── lazyload1.gif │ │ ├── mastercard.png │ │ ├── opc-ajax-loader.gif │ │ ├── pay.png │ │ └── paypal_standard.png │ ├── mail │ │ └── logo.png │ ├── media │ │ ├── catalog │ │ │ ├── category │ │ │ │ ├── 1 │ │ │ │ │ ├── 6 │ │ │ │ │ │ └── 16.jpg │ │ │ │ │ ├── 7 │ │ │ │ │ │ ├── 17.jpg │ │ │ │ │ │ └── 17147195378641527.jpg │ │ │ │ │ ├── 8 │ │ │ │ │ │ ├── 18.jpg │ │ │ │ │ │ ├── 18147195378154277.jpg │ │ │ │ │ │ ├── 18147195384223454.jpg │ │ │ │ │ │ └── 18147195384681247.jpg │ │ │ │ │ └── 14 │ │ │ │ │ │ ├── 11471953728210.jpg │ │ │ │ │ │ └── 11471954725411.jpg │ │ │ │ ├── 2 │ │ │ │ │ └── 14 │ │ │ │ │ │ └── 21471954882347.jpg │ │ │ │ ├── .gitignore │ │ │ │ └── e │ │ │ │ │ └── n_ │ │ │ │ │ ├── en_a.jpg │ │ │ │ │ ├── en_a147195370511748.jpg │ │ │ │ │ └── en_a147195486868057.jpg │ │ │ └── product │ │ │ │ ├── .gitignore │ │ │ │ ├── default.jpg │ │ │ │ └── product_water.jpg │ │ ├── review │ │ │ └── .gitignore │ │ ├── upload │ │ │ ├── 3 │ │ │ │ └── 14 │ │ │ │ │ ├── 31471773090442.jpg │ │ │ │ │ └── 31471774073672.jpg │ │ │ ├── .gitignore │ │ │ └── e │ │ │ │ └── n_ │ │ │ │ ├── en_a.jpg │ │ │ │ └── en_a147177412985490.jpg │ │ └── wxmicroqrcode │ │ │ └── .gitignore │ └── wx │ │ ├── 2829495b358a87480dcf0abf4b77c9b7.jpg │ │ ├── 6480b6574ab76caf1d86a9fc327a62e8.jpg │ │ ├── 6a202e5f215489f5082b5293476f301c (1).jpg │ │ ├── 6a202e5f215489f5082b5293476f301c.jpg │ │ ├── 868b8a0e1065f7123c949fb404049ce0.jpg │ │ ├── a7658f2456e708e6be03d393cef0d368.jpg │ │ ├── f9d34e8258cdef1dbcb5e1de65bdb404.jpg │ │ ├── start.jpg │ │ └── start.png └── zip_upload │ └── .gitignore ├── appserver ├── .gitignore ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ ├── .gitignore │ │ ├── Catagory.php │ │ ├── CatalogSearch.php │ │ ├── Cms.php │ │ └── Wx.php │ ├── fecshop_local_services │ │ ├── .gitignore │ │ ├── Cache.php │ │ ├── FecshopLang.php │ │ ├── Helper.php │ │ ├── Page.php │ │ ├── Payment.php │ │ └── Store.php │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── languages │ ├── .gitignore │ ├── ar-AE │ │ └── appfront.php │ ├── de-DE │ │ ├── appfront.php │ │ └── appserver.php │ ├── en-US │ │ ├── appfront.php │ │ └── appserver.php │ ├── es-ES │ │ ├── appfront.php │ │ └── appserver.php │ ├── fr-FR │ │ ├── appfront.php │ │ └── appserver.php │ ├── it-IT │ │ ├── appfront.php │ │ └── appserver.php │ ├── ja-JP │ │ └── appfront.php │ ├── ko-KR │ │ └── appfront.php │ ├── nl-NL │ │ ├── appfront.php │ │ └── appserver.php │ ├── pt-PT │ │ ├── appfront.php │ │ └── appserver.php │ ├── ru-RU │ │ ├── appfront.php │ │ └── appserver.php │ ├── zh-CN │ │ └── appserver.php │ └── zh-TW │ │ └── appfront.php ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ └── .gitignore │ ├── local_modules │ │ └── .gitignore │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── runtime │ ├── .gitignore │ └── cache │ │ └── .gitignore └── web │ ├── .gitignore │ ├── .htaccess │ └── assets │ └── .gitignore ├── common ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_modules │ │ └── .gitignore │ ├── fecshop_local_services │ │ ├── .gitignore │ │ ├── Email.php │ │ ├── FecshopLang.php │ │ ├── Image.php │ │ ├── Order.php │ │ ├── Page.php │ │ ├── Payment.php │ │ ├── Product.php │ │ ├── Search.php │ │ ├── Shipping.php │ │ └── Url.php │ ├── fecshop_third.php │ ├── fecshop_third_extensions │ │ ├── .gitignore │ │ └── fecshop_example.php │ ├── main.php │ ├── params.php │ ├── payment │ │ ├── paypal │ │ │ └── cert │ │ │ │ └── .gitignore │ │ └── wxpay │ │ │ ├── cert │ │ │ ├── apiclient_cert.pem │ │ │ └── apiclient_key.pem │ │ │ └── lib │ │ │ ├── WxPay.Config.php │ │ │ └── WxPay.Micro.Config.php │ └── shipping │ │ └── fast_shipping.csv ├── local │ ├── local_components │ │ └── .gitignore │ ├── local_events │ │ └── .gitignore │ ├── local_interfaces │ │ └── .gitignore │ ├── local_migrations │ │ └── .gitignore │ ├── local_models │ │ ├── .gitignore │ │ ├── mongodb │ │ │ └── .gitignore │ │ └── mysqldb │ │ │ └── .gitignore │ ├── local_services │ │ └── .gitignore │ └── local_yii │ │ └── .gitignore ├── mail │ ├── layouts │ │ ├── html.php │ │ └── text.php │ ├── passwordResetToken-html.php │ └── passwordResetToken-text.php ├── models │ ├── LoginForm.php │ └── User.php └── widgets │ └── Alert.php ├── composer.json ├── console ├── config │ ├── .gitignore │ ├── bootstrap.php │ ├── fecshop_local.php │ ├── fecshop_local_services │ │ └── Sitemap.php │ ├── fecshop_third.php │ ├── main.php │ └── params.php ├── controllers │ └── .gitkeep ├── migrations │ └── m130524_201442_init.php ├── models │ └── .gitkeep └── runtime │ └── .gitignore ├── environments ├── dev │ ├── appadmin │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ └── index.php │ ├── appapi │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ └── index.php │ ├── appbdmin │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ └── index.php │ ├── apperp │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ └── index.php │ ├── appfa │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ └── index.php │ ├── appfront │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── ar │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── cn │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── de │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── en │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── es │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── fr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── google_shopping_feed.xml │ │ │ ├── in │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ ├── index.php │ │ │ ├── it │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── jp │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── kr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── nl │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── pt │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── robots.txt │ │ │ ├── ru │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── sitemap.xml │ │ │ ├── sitemap_es.xml │ │ │ └── tw │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ ├── apphtml5 │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── ar │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── cn │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── de │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── en │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── es │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── fr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── in │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ ├── index.php │ │ │ ├── it │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── jp │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── kr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── nl │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── pt │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── robots.txt │ │ │ ├── ru │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── sitemap.xml │ │ │ ├── sitemap_es.xml │ │ │ └── tw │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ ├── appserver │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ └── index.php │ ├── common │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── console │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── tests │ │ └── codeception │ │ │ └── config │ │ │ └── config-local.php │ └── yii ├── index.php ├── prod │ ├── appadmin │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ └── web │ │ │ ├── index-test.php │ │ │ └── index.php │ ├── appapi │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ └── index.php │ ├── appbdmin │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ └── index.php │ ├── apperp │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ └── index.php │ ├── appfa │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ └── index.php │ ├── appfront │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── ar │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── cn │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── de │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── en │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── es │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── fr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── google_shopping_feed.xml │ │ │ ├── in │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ ├── index.php │ │ │ ├── it │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── jp │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── kr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── nl │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── pt │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── robots.txt │ │ │ ├── ru │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── sitemap.xml │ │ │ ├── sitemap_es.xml │ │ │ └── tw │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ ├── apphtml5 │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── ar │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── cn │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── de │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── en │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── es │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── fr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── in │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ ├── index.php │ │ │ ├── it │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── jp │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── kr │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── nl │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── pt │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── robots.txt │ │ │ ├── ru │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── sitemap.xml │ │ │ ├── sitemap_es.xml │ │ │ └── tw │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ ├── appserver │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ ├── merge_config.php │ │ └── web │ │ │ ├── index-merge-config.php │ │ │ ├── index-test.php │ │ │ └── index.php │ ├── common │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── console │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── tests │ │ └── codeception │ │ │ └── config │ │ │ └── config-local.php │ └── yii └── test_data │ ├── appimage │ └── common │ │ └── media │ │ └── catalog │ │ └── product │ │ ├── 1 │ │ ├── 7 │ │ │ └── 17147202419675158.jpg │ │ ├── 8 │ │ │ └── 18147202419689046.jpg │ │ ├── 11 │ │ │ ├── 111.jpg │ │ │ └── 111147807271192428.jpg │ │ ├── 14 │ │ │ └── 11471858072718.jpg │ │ └── 22 │ │ │ ├── 12229472_1.jpg │ │ │ ├── 12229472_2.jpg │ │ │ ├── 12229472_3147185361598497.jpg │ │ │ ├── 12229472_4147185361565585.jpg │ │ │ └── 12229472_5147185361565976.jpg │ │ ├── 2 │ │ ├── 14 │ │ │ └── 21471858107441.jpg │ │ ├── 22 │ │ │ ├── 222.jpg │ │ │ └── 222147807273862010.jpg │ │ ├── 01 │ │ │ ├── 20160418182628_30828.jpg │ │ │ ├── 20160418182629_96454.jpg │ │ │ ├── 20160425122144_71146.jpg │ │ │ ├── 20160425122145_68014.jpg │ │ │ ├── 20160525142537_74758.jpg │ │ │ ├── 20160525142538_87169.jpg │ │ │ ├── 20160525142538_87187.jpg │ │ │ ├── 20160606112453_71094147323202778861.JPG │ │ │ ├── 20160617104826_13427.jpg │ │ │ ├── 20160617104826_51885.jpg │ │ │ ├── 20160624120255_80096.jpg │ │ │ ├── 20160707145717_31266.jpg │ │ │ ├── 20160707145717_54076.jpg │ │ │ ├── 20160707145718_97803.jpg │ │ │ ├── 20160715121751_13739.jpg │ │ │ ├── 20160715121751_31875.jpg │ │ │ ├── 20160715121751_38104.jpg │ │ │ ├── 20160722142719_52348.jpg │ │ │ ├── 20160722142719_96573.jpg │ │ │ ├── 20160723113745_77121.jpg │ │ │ ├── 20160723113746_87739.jpg │ │ │ ├── 20160723113749_21685.jpg │ │ │ ├── 20160723113749_93066.jpg │ │ │ ├── 20160727121110_30054.jpg │ │ │ ├── 20160804090311_12690.jpg │ │ │ ├── 20160804090312_10635.jpg │ │ │ ├── 20160804090312_12114.jpg │ │ │ ├── 20160805120339_64824.jpg │ │ │ ├── 20160805120340_38755.jpg │ │ │ ├── 20160805120340_99192.jpg │ │ │ ├── 20160810112221_48220.jpg │ │ │ ├── 20160810112221_72266.jpg │ │ │ ├── 20160810112221_81491.jpg │ │ │ ├── 20160820092721_36812.JPG │ │ │ ├── 20160820092721_61725.JPG │ │ │ ├── 20160905101021_28071.jpg │ │ │ ├── 20160905101021_28071147710702992998.jpg │ │ │ ├── 20160905101021_28071147710703579813.jpg │ │ │ ├── 20160905101021_56532.jpg │ │ │ ├── 20160905101022_25969.jpg │ │ │ ├── 20160905101022_79159.jpg │ │ │ ├── 20161007110608_50811.jpg │ │ │ ├── 20161007110608_78124.jpg │ │ │ ├── 20161024170457_10036.jpg │ │ │ ├── 20161024170457_13851.jpg │ │ │ ├── 20161024170457_21098.jpg │ │ │ ├── 20161101155240_26690.jpg │ │ │ ├── 20161101155240_56328.jpg │ │ │ └── 20161101155240_94256.jpg │ │ └── yu │ │ │ └── 2yurs1qv2vxqcys1514518851.jpg │ │ ├── 6 │ │ └── dr │ │ │ └── 6dr4md310s9xv5o1543252419.png │ │ ├── 9 │ │ └── y1 │ │ │ └── 9y1hszrk5w1bsoa1500863714.jpg │ │ ├── a │ │ └── sm │ │ │ └── asmybdt6jgjrm9d1518145517.jpg │ │ ├── b │ │ └── gx │ │ │ └── bgx6l4yypb4qjdb1522372595.jpeg │ │ ├── e │ │ ├── lc │ │ │ └── elc1lxhoex5glri1560829415.jpg │ │ └── n_ │ │ │ ├── en_147202419693721.jpg │ │ │ └── en_a147202419684540.jpg │ │ ├── f │ │ └── gh │ │ │ └── fghocd1467608103115.jpg │ │ ├── h │ │ └── eh │ │ │ └── hehnw3kwu1zkjm81522372595.jpg │ │ ├── j │ │ └── wf │ │ │ └── jwfsius8edxhy5a1521251062.jpg │ │ ├── m │ │ └── uf │ │ │ └── mufpokvc1xocqc31522372595.gif │ │ ├── o │ │ └── pp │ │ │ └── oppyzxlwfx6a86b1521251063.jpg │ │ ├── p │ │ └── ya │ │ │ └── pyaehyse5h8zp501522372595.jpg │ │ ├── r │ │ ├── 8a │ │ │ └── r8ax68n4qi1xa4j1521251062.jpg │ │ └── nu │ │ │ └── rnunew1467608090223.jpg │ │ ├── x │ │ └── wl │ │ │ └── xwlxzn1467608134156.jpg │ │ └── z │ │ ├── 77 │ │ └── z770if3btz2m0041514451740.jpg │ │ └── x1 │ │ └── zx1hss99jzvwqr21500863714.jpg │ └── fecshop.sql ├── iconv_shell.sh ├── init ├── init.bat ├── nohup.out ├── requirements.php ├── tests ├── README.md ├── codeception.yml └── codeception │ ├── _output │ └── .gitignore │ ├── backend │ ├── .gitignore │ ├── _bootstrap.php │ ├── _output │ │ └── .gitignore │ ├── acceptance.suite.yml │ ├── acceptance │ │ ├── LoginCept.php │ │ └── _bootstrap.php │ ├── codeception.yml │ ├── functional.suite.yml │ ├── functional │ │ ├── LoginCept.php │ │ └── _bootstrap.php │ ├── unit.suite.yml │ └── unit │ │ ├── DbTestCase.php │ │ ├── TestCase.php │ │ ├── _bootstrap.php │ │ └── fixtures │ │ └── data │ │ └── .gitkeep │ ├── bin │ ├── _bootstrap.php │ ├── yii │ └── yii.bat │ ├── common │ ├── .gitignore │ ├── _bootstrap.php │ ├── _output │ │ └── .gitignore │ ├── _pages │ │ └── LoginPage.php │ ├── _support │ │ └── FixtureHelper.php │ ├── codeception.yml │ ├── fixtures │ │ ├── UserFixture.php │ │ └── data │ │ │ └── init_login.php │ ├── templates │ │ └── fixtures │ │ │ └── user.php │ ├── unit.suite.yml │ └── unit │ │ ├── DbTestCase.php │ │ ├── TestCase.php │ │ ├── _bootstrap.php │ │ ├── fixtures │ │ └── data │ │ │ └── models │ │ │ └── user.php │ │ └── models │ │ └── LoginFormTest.php │ ├── config │ ├── .gitignore │ ├── acceptance.php │ ├── backend │ │ ├── acceptance.php │ │ ├── config.php │ │ ├── functional.php │ │ └── unit.php │ ├── common │ │ └── unit.php │ ├── config.php │ ├── console │ │ └── unit.php │ ├── frontend │ │ ├── acceptance.php │ │ ├── config.php │ │ ├── functional.php │ │ └── unit.php │ ├── functional.php │ └── unit.php │ ├── console │ ├── .gitignore │ ├── _bootstrap.php │ ├── _output │ │ └── .gitignore │ ├── codeception.yml │ ├── unit.suite.yml │ └── unit │ │ ├── DbTestCase.php │ │ ├── TestCase.php │ │ ├── _bootstrap.php │ │ └── fixtures │ │ └── data │ │ └── .gitkeep │ └── frontend │ ├── .gitignore │ ├── _bootstrap.php │ ├── _output │ └── .gitignore │ ├── _pages │ ├── AboutPage.php │ ├── ContactPage.php │ └── SignupPage.php │ ├── acceptance.suite.yml │ ├── acceptance │ ├── AboutCept.php │ ├── ContactCept.php │ ├── HomeCept.php │ ├── LoginCept.php │ ├── SignupCest.php │ └── _bootstrap.php │ ├── codeception.yml │ ├── functional.suite.yml │ ├── functional │ ├── AboutCept.php │ ├── ContactCept.php │ ├── HomeCept.php │ ├── LoginCept.php │ ├── SignupCest.php │ └── _bootstrap.php │ ├── unit.suite.yml │ └── unit │ ├── DbTestCase.php │ ├── TestCase.php │ ├── _bootstrap.php │ ├── fixtures │ └── data │ │ └── models │ │ └── user.php │ └── models │ ├── ContactFormTest.php │ ├── PasswordResetRequestFormTest.php │ ├── ResetPasswordFormTest.php │ └── SignupFormTest.php ├── vagrant ├── config │ ├── .gitignore │ └── vagrant-local.example.yml ├── nginx │ ├── app.conf │ └── log │ │ └── .gitignore └── provision │ ├── always-as-root.sh │ ├── once-as-root.sh │ └── once-as-vagrant.sh ├── wx_xiaochengxu_fecmall.png └── yii.bat /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/Vagrantfile -------------------------------------------------------------------------------- /addons/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /appadmin/.gitignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | controllers/ -------------------------------------------------------------------------------- /appadmin/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appadmin/config/.gitignore -------------------------------------------------------------------------------- /appadmin/config/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appfront/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/.gitignore -------------------------------------------------------------------------------- /appfront/web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/.htaccess -------------------------------------------------------------------------------- /appfront/web/ar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ar/.gitignore -------------------------------------------------------------------------------- /appfront/web/ar/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ar/.htaccess -------------------------------------------------------------------------------- /appfront/web/ar/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/ar/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ar/favicon.ico -------------------------------------------------------------------------------- /appfront/web/ar/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ar/gss.xsl -------------------------------------------------------------------------------- /appfront/web/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/cn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/cn/.gitignore -------------------------------------------------------------------------------- /appfront/web/cn/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/cn/.htaccess -------------------------------------------------------------------------------- /appfront/web/cn/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/cn/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/cn/favicon.ico -------------------------------------------------------------------------------- /appfront/web/cn/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/cn/gss.xsl -------------------------------------------------------------------------------- /appfront/web/de/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/de/.gitignore -------------------------------------------------------------------------------- /appfront/web/de/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/de/.htaccess -------------------------------------------------------------------------------- /appfront/web/de/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/de/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/de/favicon.ico -------------------------------------------------------------------------------- /appfront/web/de/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/de/gss.xsl -------------------------------------------------------------------------------- /appfront/web/en/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/en/.gitignore -------------------------------------------------------------------------------- /appfront/web/en/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/en/.htaccess -------------------------------------------------------------------------------- /appfront/web/en/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/en/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/en/favicon.ico -------------------------------------------------------------------------------- /appfront/web/en/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/en/gss.xsl -------------------------------------------------------------------------------- /appfront/web/es/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/es/.gitignore -------------------------------------------------------------------------------- /appfront/web/es/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/es/.htaccess -------------------------------------------------------------------------------- /appfront/web/es/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/es/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/es/favicon.ico -------------------------------------------------------------------------------- /appfront/web/es/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/es/gss.xsl -------------------------------------------------------------------------------- /appfront/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/favicon.ico -------------------------------------------------------------------------------- /appfront/web/fr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/fr/.gitignore -------------------------------------------------------------------------------- /appfront/web/fr/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/fr/.htaccess -------------------------------------------------------------------------------- /appfront/web/fr/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/fr/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/fr/favicon.ico -------------------------------------------------------------------------------- /appfront/web/fr/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/fr/gss.xsl -------------------------------------------------------------------------------- /appfront/web/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/gss.xsl -------------------------------------------------------------------------------- /appfront/web/install/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/install/index.php -------------------------------------------------------------------------------- /appfront/web/it/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/it/.gitignore -------------------------------------------------------------------------------- /appfront/web/it/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/it/.htaccess -------------------------------------------------------------------------------- /appfront/web/it/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/it/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/it/favicon.ico -------------------------------------------------------------------------------- /appfront/web/it/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/it/gss.xsl -------------------------------------------------------------------------------- /appfront/web/jp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/jp/.gitignore -------------------------------------------------------------------------------- /appfront/web/jp/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/jp/.htaccess -------------------------------------------------------------------------------- /appfront/web/jp/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/jp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/jp/favicon.ico -------------------------------------------------------------------------------- /appfront/web/jp/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/jp/gss.xsl -------------------------------------------------------------------------------- /appfront/web/kr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/kr/.gitignore -------------------------------------------------------------------------------- /appfront/web/kr/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/kr/.htaccess -------------------------------------------------------------------------------- /appfront/web/kr/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/kr/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/kr/favicon.ico -------------------------------------------------------------------------------- /appfront/web/kr/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/kr/gss.xsl -------------------------------------------------------------------------------- /appfront/web/nl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/nl/.gitignore -------------------------------------------------------------------------------- /appfront/web/nl/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/nl/.htaccess -------------------------------------------------------------------------------- /appfront/web/nl/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/nl/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/nl/favicon.ico -------------------------------------------------------------------------------- /appfront/web/nl/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/nl/gss.xsl -------------------------------------------------------------------------------- /appfront/web/pt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/pt/.gitignore -------------------------------------------------------------------------------- /appfront/web/pt/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/pt/.htaccess -------------------------------------------------------------------------------- /appfront/web/pt/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/pt/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/pt/favicon.ico -------------------------------------------------------------------------------- /appfront/web/pt/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/pt/gss.xsl -------------------------------------------------------------------------------- /appfront/web/ru/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ru/.gitignore -------------------------------------------------------------------------------- /appfront/web/ru/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ru/.htaccess -------------------------------------------------------------------------------- /appfront/web/ru/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/ru/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ru/favicon.ico -------------------------------------------------------------------------------- /appfront/web/ru/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/ru/gss.xsl -------------------------------------------------------------------------------- /appfront/web/tw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/tw/.gitignore -------------------------------------------------------------------------------- /appfront/web/tw/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/tw/.htaccess -------------------------------------------------------------------------------- /appfront/web/tw/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /appfront/web/tw/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/tw/favicon.ico -------------------------------------------------------------------------------- /appfront/web/tw/gss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/appfront/web/tw/gss.xsl -------------------------------------------------------------------------------- /apphtml5/.gitignore: -------------------------------------------------------------------------------- 1 | merge_config.php -------------------------------------------------------------------------------- /apphtml5/components/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /apphtml5/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/yii2_fecshop_app_advanced/HEAD/apphtml5/config/.gitignore -------------------------------------------------------------------------------- /apphtml5/config/bootstrap.php: -------------------------------------------------------------------------------- 1 |