File: /home/confeduphaar/backip-old-files/plugins/vmpayment/amazon/fields/getamazon.php
<?php
/**
* @version $Id: getamazon.php 9292 2016-09-19 08:07:15Z Milbo $
*
* @author Valérie Isaksen
* @package VirtueMart
* @copyright Copyright (c) 2004 - 2012 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
*/
defined('JPATH_BASE') or die();
jimport('joomla.form.formfield');
class JFormFieldGetAmazon extends JFormField {
/**
* Element name
*
* @access protected
* @var string
*/
var $type = 'getAmazon';
protected function getInput() {
$jlang = JFactory::getLanguage();
$lang = $jlang->getTag();
$langArray = explode("-", $lang);
$lang = strtolower($langArray[1]);
if ($lang == 'de') {
$domain = 'de';
} else {
$domain = 'co.uk';
}
$url = "https://payments.amazon." . $domain . "/business/api-integration?ld=SPEXUKAPAVirtueMart";
$logo = '<p></p><img src="https://images-na.ssl-images-amazon.com/images/G/02/Iris3_UK/en_GB/inca/images/37x23-whitegrad-x2.png" /></p>';
$html = '<p><a target="_blank" href="' . $url . '" >' . $logo . '</a>';
$html .= '<a target="_blank" href="' . $url . '" class="signin-button-link">' . vmText::_('VMPAYMENT_AMAZON_GETAMAZON') . '</a>';
$html .= '<a target="_blank" href="http://docs.virtuemart.net/manual/shop-menu/payment-methods/pay-with-amazon.html" class="signin-button-link">' . vmText::_('VMPAYMENT_AMAZON_DOCUMENTATION') . '</a></p></div>';
$html .="<p>";
$html .= '<a target="_blank" href="' . $url . '">' . vmText::_('VMPAYMENT_AMAZON_GETAMAZON') . '</a></p>';
$html.='<p>Please report errors on the <a href="http://forum.virtuemart.net/index.php?board=131.0">forum</a>; We will help you.</p>';
return $html; }
}