| Current Path : /proc/1908984/root/proc/2603263/cwd/ |
| Current File : //proc/1908984/root/proc/2603263/cwd/authorizerequest.php.tar |
home/digilove/public_html/110/plugins/vmpayment/amazon/handlers/authorizerequest.php 0000644 00000001613 15242050111 0025013 0 ustar 00 <?php
defined('_JEXEC') or die('Direct Access to ' . basename(__FILE__) . 'is not allowed.');
/**
*
* @package VirtueMart
* @subpackage vmpayment
* @version $Id: authorizerequest.php 10649 2022-05-05 14:29:44Z Milbo $
* @author Valérie Isaksen
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - April 26 2022 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
*
*/
class amazonHelperAuthorizeRequest extends amazonHelper {
public function __construct (OffAmazonPaymentsService_Model_AuthorizeRequest $authorizationRequest, $method) {
parent::__construct($authorizationRequest, $method);
}
function getContents () {
$contents = $this->tableStart("AuthorizeRequest");
$contents .= $this->getRow("Dump: ", var_export($this->amazonData, true));
$contents .= $this->tableEnd();
return $contents;
}
}