├── .gitignore ├── Plugin.php ├── README.md ├── VERSION ├── assets ├── css │ └── modal-form.css └── js │ └── product-form.js ├── components ├── Basket.php ├── Categories.php ├── Product.php ├── ProductList.php ├── basket │ ├── _item.htm │ └── default.htm ├── categories │ ├── _item.htm │ └── default.htm ├── product │ └── default.htm └── productlist │ ├── default.htm │ └── product.htm ├── composer.json ├── composer.lock ├── controllers ├── Products.php └── products │ ├── _field_categories.htm │ ├── _hint_upgrade_index.htm │ ├── _list_toolbar.htm │ ├── _product_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_relation.yaml │ ├── create.htm │ ├── index.htm │ └── update.htm ├── models ├── Category.php ├── ProdCat.php ├── Product.php ├── category │ ├── columns.yaml │ └── fields.yaml └── product │ ├── columns.yaml │ └── fields.yaml ├── updates ├── create_categories_table.php ├── create_prod_cat_table.php ├── create_products_table.php └── version.yaml └── views └── mail ├── orderconfirm.htm └── orderconfirm_admin.htm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.2 2 | -------------------------------------------------------------------------------- /assets/css/modal-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/assets/css/modal-form.css -------------------------------------------------------------------------------- /assets/js/product-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/assets/js/product-form.js -------------------------------------------------------------------------------- /components/Basket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/Basket.php -------------------------------------------------------------------------------- /components/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/Categories.php -------------------------------------------------------------------------------- /components/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/Product.php -------------------------------------------------------------------------------- /components/ProductList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/ProductList.php -------------------------------------------------------------------------------- /components/basket/_item.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/basket/_item.htm -------------------------------------------------------------------------------- /components/basket/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/basket/default.htm -------------------------------------------------------------------------------- /components/categories/_item.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/categories/_item.htm -------------------------------------------------------------------------------- /components/categories/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/categories/default.htm -------------------------------------------------------------------------------- /components/product/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/product/default.htm -------------------------------------------------------------------------------- /components/productlist/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/productlist/default.htm -------------------------------------------------------------------------------- /components/productlist/product.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/components/productlist/product.htm -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /controllers/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/Products.php -------------------------------------------------------------------------------- /controllers/products/_field_categories.htm: -------------------------------------------------------------------------------- 1 | relationRender('categories') ?> 2 | -------------------------------------------------------------------------------- /controllers/products/_hint_upgrade_index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/_hint_upgrade_index.htm -------------------------------------------------------------------------------- /controllers/products/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/products/_product_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/_product_toolbar.htm -------------------------------------------------------------------------------- /controllers/products/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/config_form.yaml -------------------------------------------------------------------------------- /controllers/products/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/config_list.yaml -------------------------------------------------------------------------------- /controllers/products/config_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/config_relation.yaml -------------------------------------------------------------------------------- /controllers/products/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/create.htm -------------------------------------------------------------------------------- /controllers/products/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/index.htm -------------------------------------------------------------------------------- /controllers/products/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/controllers/products/update.htm -------------------------------------------------------------------------------- /models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/models/Category.php -------------------------------------------------------------------------------- /models/ProdCat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/models/ProdCat.php -------------------------------------------------------------------------------- /models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/models/Product.php -------------------------------------------------------------------------------- /models/category/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/models/category/columns.yaml -------------------------------------------------------------------------------- /models/category/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/models/category/fields.yaml -------------------------------------------------------------------------------- /models/product/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/models/product/columns.yaml -------------------------------------------------------------------------------- /models/product/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/models/product/fields.yaml -------------------------------------------------------------------------------- /updates/create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/updates/create_categories_table.php -------------------------------------------------------------------------------- /updates/create_prod_cat_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/updates/create_prod_cat_table.php -------------------------------------------------------------------------------- /updates/create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/updates/create_products_table.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/updates/version.yaml -------------------------------------------------------------------------------- /views/mail/orderconfirm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/views/mail/orderconfirm.htm -------------------------------------------------------------------------------- /views/mail/orderconfirm_admin.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feegleweb/oc-octoshoplite-plugin/HEAD/views/mail/orderconfirm_admin.htm --------------------------------------------------------------------------------