https://github.com/gilacms/shop-package
A package to built a simple eshop
https://github.com/gilacms/shop-package
Last synced: 5 months 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-28T00:22:54.000Z (about 5 years ago)
- Last Synced: 2024-12-26T11:07:38.767Z (7 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');
});
```