-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
1,714 additions
and
1,150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.exvim* | ||
dist/ | ||
tempcache/ | ||
tests/coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
<?php | ||
|
||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ | ||
|
||
/** | ||
* Configuration file for Paypal plugin | ||
* | ||
* PHP version 5 | ||
* | ||
* Copyright © 2011-2014 The Galette Team | ||
* Copyright © 2003-2024 The Galette Team | ||
* | ||
* This file is part of Galette (http://galette.tuxfamily.org). | ||
* This file is part of Galette (https://galette.eu). | ||
* | ||
* Galette is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -23,16 +17,8 @@ | |
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Galette. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* @category Plugins | ||
* @package GalettePaypal | ||
* | ||
* @author Johan Cwiklinski <[email protected]> | ||
* @copyright 2011-2014 The Galette Team | ||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version | ||
* @version SVN: $Id$ | ||
* @link http://galette.tuxfamily.org | ||
* @since Available since 0.7dev - 2011-06-01 | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
define('PAYPAL_PREFIX', 'paypal_'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
<?php | ||
|
||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ | ||
|
||
/** | ||
* Configuration file for Paypal plugin | ||
* | ||
* PHP version 5 | ||
* | ||
* Copyright © 2011-2023 The Galette Team | ||
* Copyright © 2003-2024 The Galette Team | ||
* | ||
* This file is part of Galette (https://galette.eu). | ||
* | ||
|
@@ -23,24 +17,18 @@ | |
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Galette. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* @category Plugins | ||
* @package GalettePaypal | ||
* | ||
* @author Johan Cwiklinski <[email protected]> | ||
* @copyright 2011-2023 The Galette Team | ||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version | ||
* @link https://galette.eu | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
$this->register( | ||
'Galette Paypal', //Name | ||
'Paypal integration', //Short description | ||
'Johan Cwiklinski', //Author | ||
'2.0.0', //Version | ||
'1.0.0', //Galette compatible version | ||
'2.1.0', //Version | ||
'1.1.0', //Galette compatible version | ||
'paypal', //routing name and translation domain | ||
'2023-12-07', //Release date | ||
'2024-06-08', //Release date | ||
[ //Permissions needed | ||
'paypal_preferences' => 'staff', | ||
'store_paypal_preferences' => 'staff', | ||
|
Oops, something went wrong.