Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gilacms/shop-package
A package to built a simple eshop
https://github.com/gilacms/shop-package
Last synced: 14 days ago
JSON representation
A package to built a simple eshop
- Host: GitHub
- URL: https://github.com/gilacms/shop-package
- Owner: GilaCMS
- License: gpl-3.0
- Created: 2018-07-22T22:22:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-28T00:22:54.000Z (over 4 years ago)
- Last Synced: 2024-11-06T22:06:53.974Z (2 months ago)
- Language: PHP
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shop-package
A package to built a simple eshop### Events
**placeOrder** Creates order when client have finished the order. The cart session has to be closed here.### Global Lists
**shop_pay_gateway** Renders an alternative page for payment type. It can be selected in a payment method.
```
Gila::addList('pay-on', function($orderId){
View::renderFile('pay-on.php', 'pay-on');
});
```