File: /home/confeduphaar/backip-old-files/plugins/vmpayment/amazon/helpers/authorizerequest.php
<?php
defined('_JEXEC') or die('Direct Access to ' . basename(__FILE__) . 'is not allowed.');
/**
*
* @package VirtueMart
* @subpackage vmpayment
* @version $Id: authorizerequest.php 8949 2015-08-12 08:30:57Z alatak $
* @author Valérie Isaksen
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - March 11 2016 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;
}
}