forked from vufind-org/vufind
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a transaction event log for online payment.
- Loading branch information
1 parent
97374ee
commit 4514acf
Showing
19 changed files
with
401 additions
and
65 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
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
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
|
||
/** | ||
* Row definition for online payment transaction event log | ||
* | ||
* PHP version 8 | ||
* | ||
* Copyright (C) The National Library of Finland 2023. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
* @category VuFind | ||
* @package Db_Table | ||
* @author Ere Maijala <[email protected]> | ||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License | ||
* @link http://vufind.org Main Site | ||
*/ | ||
|
||
namespace Finna\Db\Row; | ||
|
||
/** | ||
* Row definition for online payment transaction event log | ||
* | ||
* @category VuFind | ||
* @package Db_Table | ||
* @author Ere Maijala <[email protected]> | ||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License | ||
* @link http://vufind.org Main Site | ||
* | ||
* @property int $id | ||
* @property int $finna_transaction_id | ||
* @property string $date | ||
* @property string $status | ||
* @property string $data | ||
*/ | ||
class TransactionEventLog extends \VuFind\Db\Row\RowGateway implements \VuFind\Db\Table\DbTableAwareInterface | ||
{ | ||
use \VuFind\Db\Table\DbTableAwareTrait; | ||
|
||
/** | ||
* Constructor | ||
* | ||
* @param \Laminas\Db\Adapter\Adapter $adapter Database adapter | ||
*/ | ||
public function __construct($adapter) | ||
{ | ||
parent::__construct('id', 'finna_transaction_event_log', $adapter); | ||
} | ||
} |
Oops, something went wrong.