├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── Plugin.php ├── README.md ├── api ├── CartApi.php ├── CategoriesApi.php └── ProductsApi.php ├── assets ├── js │ ├── boot.js │ ├── components │ │ ├── button │ │ │ └── button.vue │ │ ├── checkbox │ │ │ └── checkbox.vue │ │ ├── form_input │ │ │ └── form_input.vue │ │ ├── global.js │ │ ├── modal │ │ │ ├── modal.vue │ │ │ ├── modal_body.vue │ │ │ ├── modal_footer.vue │ │ │ └── modal_header.vue │ │ ├── select │ │ │ └── select.vue │ │ └── spinner │ │ │ └── spinner.vue │ ├── constants.js │ ├── directives │ │ └── sortable.js │ ├── filters │ │ ├── global.js │ │ └── trans │ │ │ └── trans.js │ ├── plugins │ │ └── flash_message.js │ ├── shop.js │ ├── store │ │ ├── index.js │ │ ├── modules │ │ │ └── inventories │ │ │ │ ├── actions.js │ │ │ │ ├── factories.js │ │ │ │ ├── getters.js │ │ │ │ ├── index.js │ │ │ │ ├── mutations.js │ │ │ │ ├── state.js │ │ │ │ └── utils.js │ │ └── template │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ ├── utilities │ │ ├── array.js │ │ ├── helpers.js │ │ └── object.js │ └── void.js └── scss │ ├── classes │ ├── colors.scss │ ├── list.scss │ └── transitions.scss │ ├── core.scss │ ├── global.scss │ ├── mixins │ └── bp.scss │ └── variables │ ├── breakpoints.scss │ ├── colors.scss │ └── transitions.scss ├── classes ├── ApiController.php ├── ApiMiddleware.php ├── BackendController.php ├── Driver.php ├── DriverManager.php ├── Factory.php ├── PaymentDriver.php └── Repository.php ├── composer.json ├── composer.lock ├── console └── Abandon.php ├── controllers ├── Carts.php ├── Categories.php ├── Inventories.php ├── Options.php ├── Products.php ├── Statuses.php ├── carts │ ├── _list_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── index.htm │ └── update.htm ├── categories │ ├── _list_toolbar.htm │ ├── _reorder_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_reorder.yaml │ ├── create.htm │ ├── index.htm │ ├── index.js │ ├── preview.htm │ ├── reorder.htm │ └── update.htm ├── products │ ├── _list_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── create.htm │ ├── index.htm │ ├── index.js │ ├── preview.htm │ └── update.htm └── statuses │ ├── _list_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── create.htm │ ├── index.htm │ ├── preview.htm │ └── update.htm ├── drivers ├── NoPayment.php └── nopayment │ ├── fields.yaml │ └── message.htm ├── formwidgets ├── CartHistory.php ├── DriverConfigs.php ├── Inventory.php ├── OptionsInventories.php ├── Relationships.php ├── StatusSelector.php ├── carthistory │ ├── components │ │ ├── cart_history.vue │ │ └── index.js │ └── partials │ │ └── _carthistory.htm ├── driverconfigs │ ├── components │ │ ├── driver_configs.vue │ │ └── index.js │ └── partials │ │ ├── _driverconfigs.htm │ │ └── _popup.htm ├── inventory │ ├── components │ │ ├── index.vue │ │ ├── inventories │ │ │ ├── form │ │ │ │ ├── form.vue │ │ │ │ └── option_selector │ │ │ │ │ └── option_selector.vue │ │ │ ├── inventories.vue │ │ │ └── list │ │ │ │ └── list.vue │ │ ├── options │ │ │ ├── form │ │ │ │ ├── form.vue │ │ │ │ └── values │ │ │ │ │ └── values.vue │ │ │ ├── list │ │ │ │ └── list.vue │ │ │ └── options.vue │ │ └── shared │ │ │ ├── create_button.vue │ │ │ └── list_item.vue │ ├── index.js │ └── partials │ │ └── _inventory.htm ├── optionsinventories │ ├── components │ │ ├── create │ │ │ └── create.vue │ │ ├── helpers.js │ │ ├── index.js │ │ ├── inventory_form │ │ │ ├── inventory_form.vue │ │ │ └── option_selector │ │ │ │ └── option_selector.vue │ │ ├── inventory_list │ │ │ └── inventory_list.vue │ │ ├── list │ │ │ ├── item │ │ │ │ └── item.vue │ │ │ └── list.vue │ │ ├── option_form │ │ │ ├── option_form.vue │ │ │ └── values │ │ │ │ ├── value_input │ │ │ │ └── value_input.vue │ │ │ │ └── values.vue │ │ ├── option_list │ │ │ └── option_list.vue │ │ └── optionsinventories.vue │ └── partials │ │ └── _optionsinventories.htm ├── relationships │ ├── components │ │ ├── index.js │ │ └── relationships.vue │ └── partials │ │ └── _relationships.htm └── statusselector │ ├── components │ └── status_selector.vue │ ├── index.js │ └── partials │ └── _statusselector.htm ├── lang └── en │ └── lang.php ├── models ├── Address.php ├── ApiSettings.php ├── Cart.php ├── CartItem.php ├── Category.php ├── DriverConfig.php ├── Inventory.php ├── Option.php ├── OptionValue.php ├── PaymentDrivers.php ├── Product.php ├── Settings.php ├── Status.php ├── address │ ├── columns.yaml │ └── fields.yaml ├── apisettings │ └── fields.yaml ├── cart │ ├── _column_status.htm │ ├── columns.yaml │ └── fields.yaml ├── category │ ├── _column_product_count.htm │ ├── columns.yaml │ └── fields.yaml ├── paymentdrivers │ └── fields.yaml ├── product │ ├── _column_inventory_count.htm │ ├── _column_price.htm │ ├── _column_status.htm │ ├── columns.yaml │ └── fields.yaml ├── settings │ └── fields.yaml └── status │ ├── _column_color.htm │ ├── _column_icon.htm │ ├── _column_is_abandoned.htm │ ├── _column_is_default.htm │ ├── _column_is_reducing.htm │ ├── columns.yaml │ └── fields.yaml ├── package.json ├── phpunit.xml ├── repositories ├── CartRepository.php ├── CategoryRepository.php └── ProductRepository.php ├── routes.php ├── tests ├── backend │ ├── ShopTestCase.php │ ├── classes │ │ └── DriverManagerTest.php │ ├── drivers │ │ └── DriverTest.php │ ├── models │ │ ├── AddressTest.php │ │ ├── CartItemTest.php │ │ ├── CartTest.php │ │ ├── CategoryTest.php │ │ ├── DriverConfigTest.php │ │ ├── InventoryTest.php │ │ ├── ProductTest.php │ │ └── StatusTest.php │ └── repositories │ │ ├── CartRepositoryTest.php │ │ ├── CategoryRepositoryTest.php │ │ └── ProductRepositoryTest.php └── frontend │ ├── axios_mock.js │ ├── globals.js │ ├── index.js │ ├── jquery_stubs.js │ ├── karma.conf.js │ └── specs │ ├── formwidgets │ └── inventories │ │ ├── formwidget.spec.js │ │ ├── inventories_list.js │ │ ├── inventory_form.js │ │ ├── inventory_validation.js │ │ ├── option_form.js │ │ ├── options_list.js │ │ └── store.js │ ├── ui │ └── button.spec.js │ └── utilities │ ├── array.spec.js │ └── object.spec.js ├── traits └── Subqueryable.php ├── updates ├── 1.0 │ ├── create_address_user_table.php │ ├── create_addresses_table.php │ ├── create_cart_items_table.php │ ├── create_cart_status_table.php │ ├── create_carts_table.php │ ├── create_categories_table.php │ ├── create_category_product_table.php │ ├── create_driver_configs_table.php │ ├── create_inventories_table.php │ ├── create_inventory_option_value_table.php │ ├── create_option_values_table.php │ ├── create_options_table.php │ ├── create_products_table.php │ ├── create_statuses_table.php │ ├── seed_driver_configs.php │ └── seed_statuses_table.php ├── dev_seeds.php └── version.yaml └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/README.md -------------------------------------------------------------------------------- /api/CartApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/api/CartApi.php -------------------------------------------------------------------------------- /api/CategoriesApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/api/CategoriesApi.php -------------------------------------------------------------------------------- /api/ProductsApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/api/ProductsApi.php -------------------------------------------------------------------------------- /assets/js/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/boot.js -------------------------------------------------------------------------------- /assets/js/components/button/button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/button/button.vue -------------------------------------------------------------------------------- /assets/js/components/checkbox/checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/checkbox/checkbox.vue -------------------------------------------------------------------------------- /assets/js/components/form_input/form_input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/form_input/form_input.vue -------------------------------------------------------------------------------- /assets/js/components/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/global.js -------------------------------------------------------------------------------- /assets/js/components/modal/modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/modal/modal.vue -------------------------------------------------------------------------------- /assets/js/components/modal/modal_body.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/modal/modal_body.vue -------------------------------------------------------------------------------- /assets/js/components/modal/modal_footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/modal/modal_footer.vue -------------------------------------------------------------------------------- /assets/js/components/modal/modal_header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/modal/modal_header.vue -------------------------------------------------------------------------------- /assets/js/components/select/select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/select/select.vue -------------------------------------------------------------------------------- /assets/js/components/spinner/spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/components/spinner/spinner.vue -------------------------------------------------------------------------------- /assets/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/constants.js -------------------------------------------------------------------------------- /assets/js/directives/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/directives/sortable.js -------------------------------------------------------------------------------- /assets/js/filters/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/filters/global.js -------------------------------------------------------------------------------- /assets/js/filters/trans/trans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/filters/trans/trans.js -------------------------------------------------------------------------------- /assets/js/plugins/flash_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/plugins/flash_message.js -------------------------------------------------------------------------------- /assets/js/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/shop.js -------------------------------------------------------------------------------- /assets/js/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/index.js -------------------------------------------------------------------------------- /assets/js/store/modules/inventories/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/modules/inventories/actions.js -------------------------------------------------------------------------------- /assets/js/store/modules/inventories/factories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/modules/inventories/factories.js -------------------------------------------------------------------------------- /assets/js/store/modules/inventories/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/modules/inventories/getters.js -------------------------------------------------------------------------------- /assets/js/store/modules/inventories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/modules/inventories/index.js -------------------------------------------------------------------------------- /assets/js/store/modules/inventories/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/modules/inventories/mutations.js -------------------------------------------------------------------------------- /assets/js/store/modules/inventories/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/modules/inventories/state.js -------------------------------------------------------------------------------- /assets/js/store/modules/inventories/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/modules/inventories/utils.js -------------------------------------------------------------------------------- /assets/js/store/template/actions.js: -------------------------------------------------------------------------------- 1 | // 2 | // actions 3 | // 4 | export default { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /assets/js/store/template/getters.js: -------------------------------------------------------------------------------- 1 | // 2 | // getters 3 | // 4 | export default { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /assets/js/store/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/template/index.js -------------------------------------------------------------------------------- /assets/js/store/template/mutations.js: -------------------------------------------------------------------------------- 1 | // 2 | // mutations 3 | // 4 | export default { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /assets/js/store/template/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/store/template/state.js -------------------------------------------------------------------------------- /assets/js/utilities/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/utilities/array.js -------------------------------------------------------------------------------- /assets/js/utilities/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/utilities/helpers.js -------------------------------------------------------------------------------- /assets/js/utilities/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/utilities/object.js -------------------------------------------------------------------------------- /assets/js/void.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/js/void.js -------------------------------------------------------------------------------- /assets/scss/classes/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/classes/colors.scss -------------------------------------------------------------------------------- /assets/scss/classes/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/classes/list.scss -------------------------------------------------------------------------------- /assets/scss/classes/transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/classes/transitions.scss -------------------------------------------------------------------------------- /assets/scss/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/core.scss -------------------------------------------------------------------------------- /assets/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/global.scss -------------------------------------------------------------------------------- /assets/scss/mixins/bp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/mixins/bp.scss -------------------------------------------------------------------------------- /assets/scss/variables/breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/variables/breakpoints.scss -------------------------------------------------------------------------------- /assets/scss/variables/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/variables/colors.scss -------------------------------------------------------------------------------- /assets/scss/variables/transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/assets/scss/variables/transitions.scss -------------------------------------------------------------------------------- /classes/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/ApiController.php -------------------------------------------------------------------------------- /classes/ApiMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/ApiMiddleware.php -------------------------------------------------------------------------------- /classes/BackendController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/BackendController.php -------------------------------------------------------------------------------- /classes/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/Driver.php -------------------------------------------------------------------------------- /classes/DriverManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/DriverManager.php -------------------------------------------------------------------------------- /classes/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/Factory.php -------------------------------------------------------------------------------- /classes/PaymentDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/PaymentDriver.php -------------------------------------------------------------------------------- /classes/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/classes/Repository.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /console/Abandon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/console/Abandon.php -------------------------------------------------------------------------------- /controllers/Carts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/Carts.php -------------------------------------------------------------------------------- /controllers/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/Categories.php -------------------------------------------------------------------------------- /controllers/Inventories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/Inventories.php -------------------------------------------------------------------------------- /controllers/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/Options.php -------------------------------------------------------------------------------- /controllers/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/Products.php -------------------------------------------------------------------------------- /controllers/Statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/Statuses.php -------------------------------------------------------------------------------- /controllers/carts/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/carts/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/carts/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/carts/config_form.yaml -------------------------------------------------------------------------------- /controllers/carts/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/carts/config_list.yaml -------------------------------------------------------------------------------- /controllers/carts/index.htm: -------------------------------------------------------------------------------- 1 | 2 | listRender() ?> 3 | -------------------------------------------------------------------------------- /controllers/carts/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/carts/update.htm -------------------------------------------------------------------------------- /controllers/categories/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/categories/_reorder_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/_reorder_toolbar.htm -------------------------------------------------------------------------------- /controllers/categories/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/config_form.yaml -------------------------------------------------------------------------------- /controllers/categories/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/config_list.yaml -------------------------------------------------------------------------------- /controllers/categories/config_reorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/config_reorder.yaml -------------------------------------------------------------------------------- /controllers/categories/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/create.htm -------------------------------------------------------------------------------- /controllers/categories/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/index.htm -------------------------------------------------------------------------------- /controllers/categories/index.js: -------------------------------------------------------------------------------- 1 | import 'assets/js/shop'; 2 | -------------------------------------------------------------------------------- /controllers/categories/preview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/preview.htm -------------------------------------------------------------------------------- /controllers/categories/reorder.htm: -------------------------------------------------------------------------------- 1 | reorderRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/categories/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/categories/update.htm -------------------------------------------------------------------------------- /controllers/products/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/products/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/products/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/products/config_form.yaml -------------------------------------------------------------------------------- /controllers/products/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/products/config_list.yaml -------------------------------------------------------------------------------- /controllers/products/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/products/create.htm -------------------------------------------------------------------------------- /controllers/products/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/products/index.htm -------------------------------------------------------------------------------- /controllers/products/index.js: -------------------------------------------------------------------------------- 1 | import 'assets/js/shop'; 2 | -------------------------------------------------------------------------------- /controllers/products/preview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/products/preview.htm -------------------------------------------------------------------------------- /controllers/products/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/products/update.htm -------------------------------------------------------------------------------- /controllers/statuses/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/statuses/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/statuses/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/statuses/config_form.yaml -------------------------------------------------------------------------------- /controllers/statuses/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/statuses/config_list.yaml -------------------------------------------------------------------------------- /controllers/statuses/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/statuses/create.htm -------------------------------------------------------------------------------- /controllers/statuses/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/statuses/index.htm -------------------------------------------------------------------------------- /controllers/statuses/preview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/statuses/preview.htm -------------------------------------------------------------------------------- /controllers/statuses/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/controllers/statuses/update.htm -------------------------------------------------------------------------------- /drivers/NoPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/drivers/NoPayment.php -------------------------------------------------------------------------------- /drivers/nopayment/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/drivers/nopayment/fields.yaml -------------------------------------------------------------------------------- /drivers/nopayment/message.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /formwidgets/CartHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/CartHistory.php -------------------------------------------------------------------------------- /formwidgets/DriverConfigs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/DriverConfigs.php -------------------------------------------------------------------------------- /formwidgets/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/Inventory.php -------------------------------------------------------------------------------- /formwidgets/OptionsInventories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/OptionsInventories.php -------------------------------------------------------------------------------- /formwidgets/Relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/Relationships.php -------------------------------------------------------------------------------- /formwidgets/StatusSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/StatusSelector.php -------------------------------------------------------------------------------- /formwidgets/carthistory/components/cart_history.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/carthistory/components/cart_history.vue -------------------------------------------------------------------------------- /formwidgets/carthistory/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/carthistory/components/index.js -------------------------------------------------------------------------------- /formwidgets/carthistory/partials/_carthistory.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/carthistory/partials/_carthistory.htm -------------------------------------------------------------------------------- /formwidgets/driverconfigs/components/driver_configs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/driverconfigs/components/driver_configs.vue -------------------------------------------------------------------------------- /formwidgets/driverconfigs/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/driverconfigs/components/index.js -------------------------------------------------------------------------------- /formwidgets/driverconfigs/partials/_driverconfigs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/driverconfigs/partials/_driverconfigs.htm -------------------------------------------------------------------------------- /formwidgets/driverconfigs/partials/_popup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/driverconfigs/partials/_popup.htm -------------------------------------------------------------------------------- /formwidgets/inventory/components/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/index.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/inventories/form/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/inventories/form/form.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/inventories/form/option_selector/option_selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/inventories/form/option_selector/option_selector.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/inventories/inventories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/inventories/inventories.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/inventories/list/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/inventories/list/list.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/options/form/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/options/form/form.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/options/form/values/values.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/options/form/values/values.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/options/list/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/options/list/list.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/options/options.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/options/options.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/shared/create_button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/shared/create_button.vue -------------------------------------------------------------------------------- /formwidgets/inventory/components/shared/list_item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/components/shared/list_item.vue -------------------------------------------------------------------------------- /formwidgets/inventory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/index.js -------------------------------------------------------------------------------- /formwidgets/inventory/partials/_inventory.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/inventory/partials/_inventory.htm -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/create/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/create/create.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/helpers.js -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/index.js -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/inventory_form/inventory_form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/inventory_form/inventory_form.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/inventory_form/option_selector/option_selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/inventory_form/option_selector/option_selector.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/inventory_list/inventory_list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/inventory_list/inventory_list.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/list/item/item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/list/item/item.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/list/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/list/list.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/option_form/option_form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/option_form/option_form.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/option_form/values/value_input/value_input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/option_form/values/value_input/value_input.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/option_form/values/values.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/option_form/values/values.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/option_list/option_list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/option_list/option_list.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/components/optionsinventories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/components/optionsinventories.vue -------------------------------------------------------------------------------- /formwidgets/optionsinventories/partials/_optionsinventories.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/optionsinventories/partials/_optionsinventories.htm -------------------------------------------------------------------------------- /formwidgets/relationships/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/relationships/components/index.js -------------------------------------------------------------------------------- /formwidgets/relationships/components/relationships.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/relationships/components/relationships.vue -------------------------------------------------------------------------------- /formwidgets/relationships/partials/_relationships.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/relationships/partials/_relationships.htm -------------------------------------------------------------------------------- /formwidgets/statusselector/components/status_selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/statusselector/components/status_selector.vue -------------------------------------------------------------------------------- /formwidgets/statusselector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/statusselector/index.js -------------------------------------------------------------------------------- /formwidgets/statusselector/partials/_statusselector.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/formwidgets/statusselector/partials/_statusselector.htm -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/lang/en/lang.php -------------------------------------------------------------------------------- /models/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Address.php -------------------------------------------------------------------------------- /models/ApiSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/ApiSettings.php -------------------------------------------------------------------------------- /models/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Cart.php -------------------------------------------------------------------------------- /models/CartItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/CartItem.php -------------------------------------------------------------------------------- /models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Category.php -------------------------------------------------------------------------------- /models/DriverConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/DriverConfig.php -------------------------------------------------------------------------------- /models/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Inventory.php -------------------------------------------------------------------------------- /models/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Option.php -------------------------------------------------------------------------------- /models/OptionValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/OptionValue.php -------------------------------------------------------------------------------- /models/PaymentDrivers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/PaymentDrivers.php -------------------------------------------------------------------------------- /models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Product.php -------------------------------------------------------------------------------- /models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Settings.php -------------------------------------------------------------------------------- /models/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/Status.php -------------------------------------------------------------------------------- /models/address/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/address/columns.yaml -------------------------------------------------------------------------------- /models/address/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/address/fields.yaml -------------------------------------------------------------------------------- /models/apisettings/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/apisettings/fields.yaml -------------------------------------------------------------------------------- /models/cart/_column_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/cart/_column_status.htm -------------------------------------------------------------------------------- /models/cart/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/cart/columns.yaml -------------------------------------------------------------------------------- /models/cart/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/cart/fields.yaml -------------------------------------------------------------------------------- /models/category/_column_product_count.htm: -------------------------------------------------------------------------------- 1 | products->count() ?> 2 | -------------------------------------------------------------------------------- /models/category/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/category/columns.yaml -------------------------------------------------------------------------------- /models/category/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/category/fields.yaml -------------------------------------------------------------------------------- /models/paymentdrivers/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/paymentdrivers/fields.yaml -------------------------------------------------------------------------------- /models/product/_column_inventory_count.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/product/_column_inventory_count.htm -------------------------------------------------------------------------------- /models/product/_column_price.htm: -------------------------------------------------------------------------------- 1 | formattedPrice() ?> 2 | -------------------------------------------------------------------------------- /models/product/_column_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/product/_column_status.htm -------------------------------------------------------------------------------- /models/product/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/product/columns.yaml -------------------------------------------------------------------------------- /models/product/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/product/fields.yaml -------------------------------------------------------------------------------- /models/settings/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/settings/fields.yaml -------------------------------------------------------------------------------- /models/status/_column_color.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/status/_column_color.htm -------------------------------------------------------------------------------- /models/status/_column_icon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/status/_column_icon.htm -------------------------------------------------------------------------------- /models/status/_column_is_abandoned.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/status/_column_is_abandoned.htm -------------------------------------------------------------------------------- /models/status/_column_is_default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/status/_column_is_default.htm -------------------------------------------------------------------------------- /models/status/_column_is_reducing.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/status/_column_is_reducing.htm -------------------------------------------------------------------------------- /models/status/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/status/columns.yaml -------------------------------------------------------------------------------- /models/status/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/models/status/fields.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/phpunit.xml -------------------------------------------------------------------------------- /repositories/CartRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/repositories/CartRepository.php -------------------------------------------------------------------------------- /repositories/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/repositories/CategoryRepository.php -------------------------------------------------------------------------------- /repositories/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/repositories/ProductRepository.php -------------------------------------------------------------------------------- /routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/routes.php -------------------------------------------------------------------------------- /tests/backend/ShopTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/ShopTestCase.php -------------------------------------------------------------------------------- /tests/backend/classes/DriverManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/classes/DriverManagerTest.php -------------------------------------------------------------------------------- /tests/backend/drivers/DriverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/drivers/DriverTest.php -------------------------------------------------------------------------------- /tests/backend/models/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/AddressTest.php -------------------------------------------------------------------------------- /tests/backend/models/CartItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/CartItemTest.php -------------------------------------------------------------------------------- /tests/backend/models/CartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/CartTest.php -------------------------------------------------------------------------------- /tests/backend/models/CategoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/CategoryTest.php -------------------------------------------------------------------------------- /tests/backend/models/DriverConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/DriverConfigTest.php -------------------------------------------------------------------------------- /tests/backend/models/InventoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/InventoryTest.php -------------------------------------------------------------------------------- /tests/backend/models/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/ProductTest.php -------------------------------------------------------------------------------- /tests/backend/models/StatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/models/StatusTest.php -------------------------------------------------------------------------------- /tests/backend/repositories/CartRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/repositories/CartRepositoryTest.php -------------------------------------------------------------------------------- /tests/backend/repositories/CategoryRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/repositories/CategoryRepositoryTest.php -------------------------------------------------------------------------------- /tests/backend/repositories/ProductRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/backend/repositories/ProductRepositoryTest.php -------------------------------------------------------------------------------- /tests/frontend/axios_mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/axios_mock.js -------------------------------------------------------------------------------- /tests/frontend/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/globals.js -------------------------------------------------------------------------------- /tests/frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/index.js -------------------------------------------------------------------------------- /tests/frontend/jquery_stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/jquery_stubs.js -------------------------------------------------------------------------------- /tests/frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/karma.conf.js -------------------------------------------------------------------------------- /tests/frontend/specs/formwidgets/inventories/formwidget.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/formwidgets/inventories/formwidget.spec.js -------------------------------------------------------------------------------- /tests/frontend/specs/formwidgets/inventories/inventories_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/formwidgets/inventories/inventories_list.js -------------------------------------------------------------------------------- /tests/frontend/specs/formwidgets/inventories/inventory_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/formwidgets/inventories/inventory_form.js -------------------------------------------------------------------------------- /tests/frontend/specs/formwidgets/inventories/inventory_validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/formwidgets/inventories/inventory_validation.js -------------------------------------------------------------------------------- /tests/frontend/specs/formwidgets/inventories/option_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/formwidgets/inventories/option_form.js -------------------------------------------------------------------------------- /tests/frontend/specs/formwidgets/inventories/options_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/formwidgets/inventories/options_list.js -------------------------------------------------------------------------------- /tests/frontend/specs/formwidgets/inventories/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/formwidgets/inventories/store.js -------------------------------------------------------------------------------- /tests/frontend/specs/ui/button.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/ui/button.spec.js -------------------------------------------------------------------------------- /tests/frontend/specs/utilities/array.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/utilities/array.spec.js -------------------------------------------------------------------------------- /tests/frontend/specs/utilities/object.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/tests/frontend/specs/utilities/object.spec.js -------------------------------------------------------------------------------- /traits/Subqueryable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/traits/Subqueryable.php -------------------------------------------------------------------------------- /updates/1.0/create_address_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_address_user_table.php -------------------------------------------------------------------------------- /updates/1.0/create_addresses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_addresses_table.php -------------------------------------------------------------------------------- /updates/1.0/create_cart_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_cart_items_table.php -------------------------------------------------------------------------------- /updates/1.0/create_cart_status_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_cart_status_table.php -------------------------------------------------------------------------------- /updates/1.0/create_carts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_carts_table.php -------------------------------------------------------------------------------- /updates/1.0/create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_categories_table.php -------------------------------------------------------------------------------- /updates/1.0/create_category_product_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_category_product_table.php -------------------------------------------------------------------------------- /updates/1.0/create_driver_configs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_driver_configs_table.php -------------------------------------------------------------------------------- /updates/1.0/create_inventories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_inventories_table.php -------------------------------------------------------------------------------- /updates/1.0/create_inventory_option_value_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_inventory_option_value_table.php -------------------------------------------------------------------------------- /updates/1.0/create_option_values_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_option_values_table.php -------------------------------------------------------------------------------- /updates/1.0/create_options_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_options_table.php -------------------------------------------------------------------------------- /updates/1.0/create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_products_table.php -------------------------------------------------------------------------------- /updates/1.0/create_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/create_statuses_table.php -------------------------------------------------------------------------------- /updates/1.0/seed_driver_configs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/seed_driver_configs.php -------------------------------------------------------------------------------- /updates/1.0/seed_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/1.0/seed_statuses_table.php -------------------------------------------------------------------------------- /updates/dev_seeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/dev_seeds.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/updates/version.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbedard/oc-shop-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------