Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/www/plugins/vmpayment/realex_hpp_api/realex_hpp_api/fields/ |
Upload File : |
<?php
/**
*
* Realex payment plugin
*
* @author Valerie Isaksen
* @version $Id: referringurl.php 8414 2014-10-12 20:30:38Z alatak $
* @package VirtueMart
* @subpackage payment
* Copyright (C) 2004-2016 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.
* See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details.
*
* http://virtuemart.net
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
/**
* Renders a label element
*/
jimport('joomla.form.formfield');
class JFormFieldReferringurl extends JFormField {
/**
* Element name
*
* @access protected
* @var string
*/
public $type = 'referringurl';
protected function getInput() {
$this->value = JURI::root() . 'plugins/vmpayment/realex_hpp_api/jump.php';
$class = !empty($this->class) ? 'class="' . $this->class . '"' : 'class="text_area"';
$size = ($this->size) ? 'size="' . $this->size . '"' : '';
return '<input type="text" name="' . $this->name . '" id="' . $this->name . '" value="' . $this->value . '" ' . $class . ' ' . $size . ' />';
}
}