[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
classes
/
payment
/
[
Home
]
File: QueuedPayment.inc.php
<?php /** * @file classes/payment/QueuedPayment.inc.php * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @class QueuedPayment * @ingroup payment * @see QueuedPaymentDAO * * @brief Queued (unfulfilled) payment data structure * */ import('lib.pkp.classes.payment.Payment'); class QueuedPayment extends Payment { /** * Constructor */ function QueuedPayment($amount, $currencyCode, $userId = null, $assocId = null) { parent::Payment($amount, $currencyCode, $userId, $assocId); } /** * Set the queued payment ID * @param $queuedPaymentId int */ function setQueuedPaymentId($queuedPaymentId) { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return parent::setPaymentId($queuedPaymentId); } /** * Get the queued payment ID * @return int */ function getQueuedPaymentId() { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return parent::getPaymentId(); } } ?>