| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/includes/modules/payment/ |
Upload File : |
<?php
/* --------------------------------------------------------------
skrill_psp.php 2018-02-07
Gambio GmbH
http://www.gambio.de
Copyright (c) 2018 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce(skrill.php,v 1.00 2003/10/27); www.oscommerce.com
(c) 2009 XT-Commerce - community made shopping http://www.xt-commerce.com ($Id: skrill_psp.php 39 2009-01-22 15:44:52Z mzanier $)
Released under the GNU General Public License
-----------------------------------------------------------------------------------------
Third Party contributions:
skrill v1.0 Autor: Gabor Mate <gabor(at)jamaga.hu>
Released under the GNU General Public License
// Version History
* 2.0 xt:Commerce Adaption
* 2.1 new workflow, tmp orders
* 2.2 new modules
* 2.3 updates
* 2.4 major update, iframe integration
---------------------------------------------------------------------------------------*/
if (file_exists('includes/classes/class.skrill.php')) {
require_once 'includes/classes/class.skrill.php';
} else {
require_once '../includes/classes/class.skrill.php';
}
class skrill_psp_ORIGIN extends fcnt_skrill {
var $images='skrill_psp.png';
// class constructor
public function __construct() {
global $order, $language;
$this->_setAllowed('IT');
$this->_setCode('psp','PSP');
if (is_object($order))
$this->update_status();
}
function selection() {
$content = array();
$accepted = '';
$icons = explode(',', $this->images);
foreach ($icons as $key => $val)
$accepted .= xtc_image(DIR_WS_ICONS .'payment/'. $val) . ' ';
$content = array_merge($content, array (array ('title' => ' ','field' => $accepted)));
return array (
'id' => $this->code,
'module' => $this->title,
//'fields' => $content,
'description' => $this->info
);
}
}
MainFactory::load_origin_class('skrill_psp');