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/zenit/plugins/hikashoppayment/paypaladvanced/ |
Upload File : |
<?php
/**
* @package HikaShop for Joomla!
* @version 4.5.1
* @author hikashop.com
* @copyright (C) 2010-2022 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><tr>
<td class="key">
<label for="data[payment][payment_params][secret_code]"><?php
echo JText::_( 'REQUIRED' );
?></label>
</td>
<td>
<?php echo $this->data['secret_code']; ?>
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][vendor]"><?php
echo JText::_( 'ATOS_MERCHANT_ID' );
?></label>
</td>
<td>
<input type="text" name="data[payment][payment_params][vendor]" value="<?php echo $this->escape(@$this->element->payment_params->vendor); ?>" />
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][user]"><?php
echo JText::_( 'HIKA_USERNAME' );
?></label>
</td>
<td>
<input type="text" name="data[payment][payment_params][user]" value="<?php echo $this->escape(@$this->element->payment_params->user); ?>" />
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][password]"><?php
echo JText::_( 'HIKA_PASSWORD' );
?></label>
</td>
<td>
<input type="text" name="data[payment][payment_params][password]" value="<?php echo $this->escape(@$this->element->payment_params->password); ?>" />
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][partner]"><?php
echo JText::_( 'PARTNER' );
?></label>
</td>
<td>
<input type="text" name="data[payment][payment_params][partner]" value="<?php echo $this->escape(@$this->element->payment_params->partner); ?>" />
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][validation]"><?php
echo JText::_('ENABLE_VALIDATION');
?></label>
</td>
<td><?php
echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][validation]" , '', @$this->element->payment_params->validation);
?></td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][verified_status]"><?php
echo JText::_('VERIFIED_STATUS');
?></label>
</td>
<td><?php
echo $this->data['order_statuses']->display("data[payment][payment_params][verified_status]", @$this->element->payment_params->verified_status);
?></td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][invalid_status]"><?php
echo JText::_('INVALID_STATUS');
?></label>
</td>
<td><?php
echo $this->data['order_statuses']->display("data[payment][payment_params][invalid_status]", @$this->element->payment_params->invalid_status);
?></td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][pending_status]"><?php
echo JText::_('PENDING_STATUS');
?></label>
</td>
<td><?php
echo $this->data['order_statuses']->display("data[payment][payment_params][pending_status]", @$this->element->payment_params->pending_status);
?></td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][cancel_url]"><?php
echo JText::_( 'CANCEL_URL' );
?></label>
</td>
<td>
<input type="text" name="data[payment][payment_params][cancel_url]" value="<?php echo $this->escape(@$this->element->payment_params->cancel_url); ?>" />
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][return_url]"><?php
echo JText::_( 'RETURN_URL' );
?></label>
</td>
<td>
<input type="text" name="data[payment][payment_params][return_url]" value="<?php echo $this->escape(@$this->element->payment_params->return_url); ?>" />
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][type]"><?php
echo JText::_( 'HIKA_TYPE' );
?></label>
</td>
<td><?php
$arr = array(
JHTML::_('select.option', 'iframe', 'Iframe' ),
JHTML::_('select.option', 'form', 'Form' ),
);
echo JHTML::_('hikaselect.genericlist', $arr, "data[payment][payment_params][type]", 'onchange="iframe_size_hide()"', 'value', 'text', @$this->element->payment_params->type);
?><br/>
<div id="height">
<label for="data[payment][payment_params][height]"><?php
echo JText::_( 'HEIGHT' );
?></label>
<input type="text" name="data[payment][payment_params][height]" value="<?php echo $this->escape(@$this->element->payment_params->height); ?>" />
</div>
<div id="width">
<label for="data[payment][payment_params][width]"><?php
echo JText::_( 'PRODUCT_WIDTH' );
?></label>
<input type="text" name="data[payment][payment_params][width]" value="<?php echo $this->escape(@$this->element->payment_params->width); ?>" />
</div>
<script type="text/javascript">
function iframe_size_hide() {
var e = document.getElementById('datapaymentpayment_paramstype');
var val = e.options[e.selectedIndex].text;
if(val.localeCompare("Form")== 0){
var i = document.getElementById("height").style.display = 'none';
var i = document.getElementById("width").style.display = 'none';
}else if(val.localeCompare("Iframe")== 0){
var i = document.getElementById("height").style.display = '';
var i = document.getElementById("width").style.display = '';
}
return true;
}
window.hikashop.ready(function(){iframe_size_hide();});
</script>
</td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][test_mode]"><?php
echo 'TEST_MODE';
?></label>
</td>
<td><?php
if(!isset($this->element->payment_params->test_mode))
$this->element->payment_params->test_mode = 1;
echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][test_mode]" , '', $this->element->payment_params->test_mode);
?></td>
</tr>
<tr>
<td class="key">
<label for="data[payment][payment_params][debug]"><?php
echo JText::_('DEBUG');
?></label>
</td>
<td><?php
echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][debug]" , '', @$this->element->payment_params->debug);
?></td>
</tr>