├── .babelrc ├── .coveralls.yml ├── .dev ├── banner.psd ├── getting-started.md ├── install-wp-tests.sh ├── phpcs.ruleset.xml ├── phpunit.xml.dist ├── sass │ ├── admin.scss │ ├── partials │ │ ├── domain-search.scss │ │ ├── icon-colors.scss │ │ ├── icon.scss │ │ ├── message.scss │ │ ├── pop-up.scss │ │ └── product-post.scss │ └── store.scss ├── src │ ├── blocks │ │ ├── domain-search │ │ │ ├── attributes.js │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── icon.js │ │ │ ├── index.js │ │ │ └── inspector.js │ │ └── product │ │ │ ├── attributes.js │ │ │ ├── components │ │ │ ├── edit.js │ │ │ ├── editor.js │ │ │ ├── inspector.js │ │ │ └── media.js │ │ │ ├── editor.scss │ │ │ ├── icon.js │ │ │ ├── index.js │ │ │ └── selectors.js │ ├── i18n.js │ └── index.js └── wp-org-assets │ ├── banner-1544x500-rtl.png │ ├── banner-1544x500.png │ ├── banner-772x250-rtl.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ └── icon.svg ├── .distignore ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .node-version ├── .styleci.yml ├── .travis.yml ├── Gruntfile.js ├── assets ├── css │ ├── admin-rtl.css │ ├── admin-rtl.min.css │ ├── admin.css │ ├── admin.min.css │ ├── blocks-editor-rtl.css │ ├── blocks-editor-rtl.min.css │ ├── blocks-editor.css │ ├── blocks-editor.css.map │ ├── blocks-editor.min.css │ ├── index.php │ ├── store-rtl.css │ ├── store-rtl.min.css │ ├── store.css │ └── store.min.css ├── images │ ├── index.php │ ├── loading.svg │ └── store.svg ├── index.php └── js │ ├── admin-notice.js │ ├── admin-notice.min.js │ ├── admin-permalinks.js │ ├── admin-permalinks.min.js │ ├── admin-settings.js │ ├── admin-settings.min.js │ ├── admin-setup.js │ ├── admin-setup.min.js │ ├── domain-search.min.js │ ├── editor.blocks.min.js │ ├── index.php │ ├── js-cookie.js │ ├── js-cookie.min.js │ ├── store.js │ └── store.min.js ├── class-plugin.php ├── composer.json ├── composer.lock ├── includes ├── autoload.php ├── butterbean │ ├── controls │ │ ├── class-anchor.php │ │ ├── class-plain-text.php │ │ └── index.php │ ├── index.php │ ├── settings │ │ ├── class-read-only.php │ │ └── index.php │ └── templates │ │ ├── control-anchor.php │ │ ├── control-plain-text.php │ │ └── index.php ├── class-admin-notices.php ├── class-api.php ├── class-blocks.php ├── class-bulk-restore.php ├── class-butterbean.php ├── class-display.php ├── class-embed.php ├── class-import.php ├── class-permalinks.php ├── class-post-type.php ├── class-product-icons.php ├── class-product.php ├── class-restrictions.php ├── class-settings.php ├── class-setup.php ├── class-shortcodes.php ├── class-sync.php ├── class-taxonomy-category.php ├── class-taxonomy-tag.php ├── class-widgets.php ├── cli │ ├── class-reseller-product.php │ ├── class-reseller.php │ └── index.php ├── functions │ ├── admin-functions.php │ ├── helper-functions.php │ ├── index.php │ ├── product-functions.php │ └── template-functions.php ├── index.php ├── modules │ ├── includes │ │ ├── frontend.php │ │ └── index.php │ ├── index.php │ ├── rstore-fl-cart.php │ ├── rstore-fl-domain-search.php │ ├── rstore-fl-domain-simple.php │ ├── rstore-fl-domain-transfer.php │ ├── rstore-fl-login.php │ ├── rstore-fl-product.php │ ├── rstore-vc-cart.php │ ├── rstore-vc-domain-search.php │ ├── rstore-vc-domain-simple.php │ ├── rstore-vc-domain-transfer.php │ ├── rstore-vc-login.php │ └── rstore-vc-product.php ├── trait-data.php ├── trait-helpers.php ├── trait-singleton.php └── widgets │ ├── class-cart.php │ ├── class-domain-search.php │ ├── class-domain-simple.php │ ├── class-domain-transfer.php │ ├── class-login.php │ ├── class-product.php │ ├── class-widget-base.php │ └── index.php ├── index.php ├── languages ├── index.php ├── reseller-store-da_DK.mo ├── reseller-store-da_DK.po ├── reseller-store-de_DE.mo ├── reseller-store-de_DE.po ├── reseller-store-el.mo ├── reseller-store-el.po ├── reseller-store-es_ES.mo ├── reseller-store-es_ES.po ├── reseller-store-es_MX.mo ├── reseller-store-es_MX.po ├── reseller-store-fi.mo ├── reseller-store-fi.po ├── reseller-store-fr_FR.mo ├── reseller-store-fr_FR.po ├── reseller-store-hi_IN.mo ├── reseller-store-hi_IN.po ├── reseller-store-id_ID.mo ├── reseller-store-id_ID.po ├── reseller-store-it_IT.mo ├── reseller-store-it_IT.po ├── reseller-store-ja.mo ├── reseller-store-ja.po ├── reseller-store-ko_KR.mo ├── reseller-store-ko_KR.po ├── reseller-store-mr.mo ├── reseller-store-mr.po ├── reseller-store-ms_MY.mo ├── reseller-store-ms_MY.po ├── reseller-store-nb_NO.mo ├── reseller-store-nb_NO.po ├── reseller-store-nl_NL.mo ├── reseller-store-nl_NL.po ├── reseller-store-pl_PL.mo ├── reseller-store-pl_PL.po ├── reseller-store-pt_BR.mo ├── reseller-store-pt_BR.po ├── reseller-store-pt_PT.mo ├── reseller-store-pt_PT.po ├── reseller-store-ru_RU.mo ├── reseller-store-ru_RU.po ├── reseller-store-sv_SE.mo ├── reseller-store-sv_SE.po ├── reseller-store-th.mo ├── reseller-store-th.po ├── reseller-store-tl.mo ├── reseller-store-tl.po ├── reseller-store-tr_TR.mo ├── reseller-store-tr_TR.po ├── reseller-store-uk.mo ├── reseller-store-uk.po ├── reseller-store-vi.mo ├── reseller-store-vi.po ├── reseller-store-zh_CN.mo ├── reseller-store-zh_CN.po ├── reseller-store-zh_TW.mo ├── reseller-store-zh_TW.po └── reseller-store.pot ├── license.txt ├── package.json ├── readme.md ├── readme.txt ├── reseller-store.php ├── tests ├── bootstrap.php ├── class-helper.php ├── test-admin-notice.php ├── test-api.php ├── test-base.php ├── test-blocks.php ├── test-bulk-restore.php ├── test-butterbean.php ├── test-display.php ├── test-embed.php ├── test-helper-functions.php ├── test-permalinks.php ├── test-plugin.php ├── test-post-type.php ├── test-product-functions.php ├── test-product-icons.php ├── test-product.php ├── test-restrictions.php ├── test-settings-ajax.php ├── test-settings.php ├── test-setup.php ├── test-shortcodes.php ├── test-template-functions.php ├── test-widget-cart.php ├── test-widget-domain-search.php ├── test-widget-domain-simple.php ├── test-widget-domain-transfer.php ├── test-widget-login.php ├── test-widget-product.php ├── test-widgets.php └── testcase.php └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.babelrc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.dev/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/banner.psd -------------------------------------------------------------------------------- /.dev/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/getting-started.md -------------------------------------------------------------------------------- /.dev/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/install-wp-tests.sh -------------------------------------------------------------------------------- /.dev/phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/phpcs.ruleset.xml -------------------------------------------------------------------------------- /.dev/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/phpunit.xml.dist -------------------------------------------------------------------------------- /.dev/sass/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/admin.scss -------------------------------------------------------------------------------- /.dev/sass/partials/domain-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/partials/domain-search.scss -------------------------------------------------------------------------------- /.dev/sass/partials/icon-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/partials/icon-colors.scss -------------------------------------------------------------------------------- /.dev/sass/partials/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/partials/icon.scss -------------------------------------------------------------------------------- /.dev/sass/partials/message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/partials/message.scss -------------------------------------------------------------------------------- /.dev/sass/partials/pop-up.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/partials/pop-up.scss -------------------------------------------------------------------------------- /.dev/sass/partials/product-post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/partials/product-post.scss -------------------------------------------------------------------------------- /.dev/sass/store.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/sass/store.scss -------------------------------------------------------------------------------- /.dev/src/blocks/domain-search/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/domain-search/attributes.js -------------------------------------------------------------------------------- /.dev/src/blocks/domain-search/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/domain-search/edit.js -------------------------------------------------------------------------------- /.dev/src/blocks/domain-search/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/domain-search/editor.scss -------------------------------------------------------------------------------- /.dev/src/blocks/domain-search/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/domain-search/icon.js -------------------------------------------------------------------------------- /.dev/src/blocks/domain-search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/domain-search/index.js -------------------------------------------------------------------------------- /.dev/src/blocks/domain-search/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/domain-search/inspector.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/attributes.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/components/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/components/edit.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/components/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/components/editor.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/components/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/components/inspector.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/components/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/components/media.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/editor.scss -------------------------------------------------------------------------------- /.dev/src/blocks/product/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/icon.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/index.js -------------------------------------------------------------------------------- /.dev/src/blocks/product/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/blocks/product/selectors.js -------------------------------------------------------------------------------- /.dev/src/i18n.js: -------------------------------------------------------------------------------- 1 | wp.i18n.setLocaleData( { '': {} }, 'reseller-store' ); 2 | -------------------------------------------------------------------------------- /.dev/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/src/index.js -------------------------------------------------------------------------------- /.dev/wp-org-assets/banner-1544x500-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/wp-org-assets/banner-1544x500-rtl.png -------------------------------------------------------------------------------- /.dev/wp-org-assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/wp-org-assets/banner-1544x500.png -------------------------------------------------------------------------------- /.dev/wp-org-assets/banner-772x250-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/wp-org-assets/banner-772x250-rtl.png -------------------------------------------------------------------------------- /.dev/wp-org-assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/wp-org-assets/banner-772x250.png -------------------------------------------------------------------------------- /.dev/wp-org-assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/wp-org-assets/icon-128x128.png -------------------------------------------------------------------------------- /.dev/wp-org-assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/wp-org-assets/icon-256x256.png -------------------------------------------------------------------------------- /.dev/wp-org-assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.dev/wp-org-assets/icon.svg -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.distignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json binary 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.gitmodules -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18.16.0 2 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /assets/css/admin-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/admin-rtl.css -------------------------------------------------------------------------------- /assets/css/admin-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/admin-rtl.min.css -------------------------------------------------------------------------------- /assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/admin.css -------------------------------------------------------------------------------- /assets/css/admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/admin.min.css -------------------------------------------------------------------------------- /assets/css/blocks-editor-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/blocks-editor-rtl.css -------------------------------------------------------------------------------- /assets/css/blocks-editor-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/blocks-editor-rtl.min.css -------------------------------------------------------------------------------- /assets/css/blocks-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/blocks-editor.css -------------------------------------------------------------------------------- /assets/css/blocks-editor.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/blocks-editor.css.map -------------------------------------------------------------------------------- /assets/css/blocks-editor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godaddy/wp-reseller-store/HEAD/assets/css/blocks-editor.min.css -------------------------------------------------------------------------------- /assets/css/index.php: -------------------------------------------------------------------------------- 1 |