Skip to content
This repository was archived by the owner on Jan 25, 2024. It is now read-only.

Commit f63d39a

Browse files
Release 1.0.57
1 parent 43915b2 commit f63d39a

File tree

580 files changed

+3081
-499
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

580 files changed

+3081
-499
lines changed

LICENSE renamed to LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2024 wallee AG
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ This repository contains the OpenCart wallee payment module that enables the sh
1313

1414
## Documentation
1515

16-
* [English](https://plugin-documentation.wallee.com/wallee-payment/opencart-2.0/1.0.56/docs/en/documentation.html)
16+
* [English](https://plugin-documentation.wallee.com/wallee-payment/opencart-2.0/1.0.57/docs/en/documentation.html)
1717

1818
## Support
1919

2020
Support queries can be issued on the [wallee support site](https://app-wallee.com/space/select?target=/support).
2121

2222
## License
2323

24-
Please see the [license file](https://github.com/wallee-payment/opencart-2.0/blob/1.0.56/LICENSE) for more information.
24+
Please see the [license file](https://github.com/wallee-payment/opencart-2.0/blob/1.0.57/LICENSE) for more information.

docs/en/documentation.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
7-
<meta name="keywords" value="wallee, Opencart 2.0, Opencart Module, Opencart Payment, Opencart Extension, Payment, Payment Integration, Documentation"><meta name="description" value="The documentation for the Opencart extension that enables processing payments with wallee."> <link rel="canonical" href="https://plugin-documentation.wallee.com/wallee-payment/opencart-2.0/master/docs/en/documentation.html" />
7+
<meta name="keywords" value="wallee, Opencart 2.0, Opencart Module, Opencart Payment, Opencart Extension, Payment, Payment Integration, Documentation"><meta name="description" value="The documentation for the Opencart extension that enables processing payments with wallee.">
8+
<link rel="canonical" href="https://plugin-documentation.weareplanet.com/weareplanet/opencart-3.0/1.0.57/docs/en/documentation.html" />
89
<title>wallee Opencart 2.0</title>
910
<link href="assets/monokai-sublime.css" rel="stylesheet" />
1011
<link href="assets/base.css" rel="stylesheet" />
@@ -22,7 +23,7 @@ <h2>Documentation</h2> </div>
2223
</a>
2324
</li>
2425
<li>
25-
<a href="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.56/">
26+
<a href="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.57/">
2627
Source
2728
</a>
2829
</li>
@@ -49,7 +50,7 @@ <h1>
4950
<div class="olist arabic">
5051
<ol class="arabic">
5152
<li>
52-
<p><a href="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.56/">Download</a> the extension.</p>
53+
<p><a href="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.57/">Download</a> the extension.</p>
5354
</li>
5455
<li>
5556
<p>Extract the files and upload the content of the <code>Upload</code> directory into the root directory of your store using FTP/SSH.</p>

upload/admin/controller/extension/wallee/alert.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?php
2+
/**
3+
* Wallee OpenCart
4+
*
5+
* This OpenCart module enables to process payments with Wallee (https://www.wallee.com).
6+
*
7+
* @package Whitelabelshortcut\Wallee
8+
* @author wallee AG (https://www.wallee.com)
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
10+
*/
211
require_once modification(DIR_SYSTEM . 'library/wallee/helper.php');
312

413
/**

upload/admin/controller/extension/wallee/completion.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?php
2+
/**
3+
* Wallee OpenCart
4+
*
5+
* This OpenCart module enables to process payments with Wallee (https://www.wallee.com).
6+
*
7+
* @package Whitelabelshortcut\Wallee
8+
* @author wallee AG (https://www.wallee.com)
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
10+
*/
211
require_once modification(DIR_SYSTEM . 'library/wallee/helper.php');
312

413
class ControllerExtensionWalleeCompletion extends \Wallee\Controller\AbstractController {

upload/admin/controller/extension/wallee/event.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?php
2+
/**
3+
* Wallee OpenCart
4+
*
5+
* This OpenCart module enables to process payments with Wallee (https://www.wallee.com).
6+
*
7+
* @package Whitelabelshortcut\Wallee
8+
* @author wallee AG (https://www.wallee.com)
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
10+
*/
211
require_once modification(DIR_SYSTEM . 'library/wallee/helper.php');
312

413
class ControllerExtensionWalleeEvent extends Wallee\Controller\AbstractEvent {

upload/admin/controller/extension/wallee/pdf.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?php
2+
/**
3+
* Wallee OpenCart
4+
*
5+
* This OpenCart module enables to process payments with Wallee (https://www.wallee.com).
6+
*
7+
* @package Whitelabelshortcut\Wallee
8+
* @author wallee AG (https://www.wallee.com)
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
10+
*/
211
require_once modification(DIR_SYSTEM . 'library/wallee/helper.php');
312

413
class ControllerExtensionWalleePdf extends Wallee\Controller\AbstractPdf {

upload/admin/controller/extension/wallee/refund.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?php
2+
/**
3+
* Wallee OpenCart
4+
*
5+
* This OpenCart module enables to process payments with Wallee (https://www.wallee.com).
6+
*
7+
* @package Whitelabelshortcut\Wallee
8+
* @author wallee AG (https://www.wallee.com)
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
10+
*/
211
require_once modification(DIR_SYSTEM . 'library/wallee/helper.php');
312

413
class ControllerExtensionWalleeRefund extends \Wallee\Controller\AbstractController {

upload/admin/controller/extension/wallee/transaction.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?php
2+
/**
3+
* Wallee OpenCart
4+
*
5+
* This OpenCart module enables to process payments with Wallee (https://www.wallee.com).
6+
*
7+
* @package Whitelabelshortcut\Wallee
8+
* @author wallee AG (https://www.wallee.com)
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
10+
*/
211
require_once modification(DIR_SYSTEM . 'library/wallee/helper.php');
312

413
class ControllerExtensionWalleeTransaction extends \Wallee\Controller\AbstractController {

upload/admin/controller/extension/wallee/update.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?php
2+
/**
3+
* Wallee OpenCart
4+
*
5+
* This OpenCart module enables to process payments with Wallee (https://www.wallee.com).
6+
*
7+
* @package Whitelabelshortcut\Wallee
8+
* @author wallee AG (https://www.wallee.com)
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
10+
*/
211
require_once modification(DIR_SYSTEM . 'library/wallee/helper.php');
312

413
class ControllerExtensionWalleeUpdate extends \Wallee\Controller\AbstractController {

0 commit comments

Comments
 (0)