Файловый менеджер - Редактировать - /home/lmsyaran/public_html/j3/plugins/hikashoppayment/payjunction/payjunction_configuration.php
Назад
<?php /** * @package HikaShop for Joomla! * @version 4.4.1 * @author hikashop.com * @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php if(!function_exists('curl_init')) { echo '<tr><td colspan="2"><strong>The PayJunction payment plugin needs the CURL library installed but it seems that it is not available on your server. Please contact your web hosting to set it up.</strong></td></tr>'; } hikashop_loadJslib('mootools'); ?><tr> <td class="key"> <label for="data[payment][payment_params][login]"> API Login </label> </td> <td> <input type="text" name="data[payment][payment_params][login]" value="<?php echo @$this->element->payment_params->login; ?>" /> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][password]"> API Password </label> </td> <td> <input type="text" name="data[payment][payment_params][password]" value="<?php echo @$this->element->payment_params->password; ?>" /> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][domain]"> Payment Server </label> </td> <td> <?php $values = array(); $values[] = JHTML::_('select.option', 'www.payjunction.com', 'Production Server'); $values[] = JHTML::_('select.option', 'www.payjunctionlabs.com', 'Test Server'); echo JHTML::_('select.genericlist', $values, "data[payment][payment_params][domain]" , 'class="custom-select" size="1"', 'value', 'text', @$this->element->payment_params->domain ); ?> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][ask_ccv]"> Ask CCV </label> </td> <td> <?php echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][ask_ccv]" , '',@$this->element->payment_params->ask_ccv ); ?> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][security]"> Override Security </label> </td> <td> <?php echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][security]" , 'onclick="payjunction_avs_radio(this);" onchange="payjunction_avs_radio(this);"',@$this->element->payment_params->security ); ?> </td> </tr> </table> <div id="payjunction_security_1" <?php if( !isset($this->element->payment_params->security) || !$this->element->payment_params->security ) { echo 'style="border: 1px solid #5c5c5c; margin: 3px; display: none;"'; } else { echo 'style="border: 1px solid #5c5c5c; margin: 3px;"'; } ?>> <table> <tr> <td class="key"> <label for="data[payment][payment_params][security_avs]"> AVS Security </label> </td> <td> <?php $values = array(); $values[] = JHTML::_('select.option', 'AWZ', 'Match Address OR Zip'); $values[] = JHTML::_('select.option', 'XY', 'Match Address AND Zip'); $values[] = JHTML::_('select.option', 'WZ', 'Match Zip'); $values[] = JHTML::_('select.option', 'AW', 'Match Address OR 9 Digit Zip'); $values[] = JHTML::_('select.option', 'AW', 'Match Address OR 5 Digit Zip'); $values[] = JHTML::_('select.option', 'A', 'Match Address'); $values[] = JHTML::_('select.option', 'X', 'Match Address AND 9 Digit Zip'); $values[] = JHTML::_('select.option', 'Y', 'Match Address AND 5 Digit Zip'); $values[] = JHTML::_('select.option', 'W', 'Match 9 Digit Zip'); $values[] = JHTML::_('select.option', 'Z', 'Match 5 Digit Zip'); echo JHTML::_('select.genericlist', $values, "data[payment][payment_params][security_avs]" , 'class="custom-select" size="1"', 'value', 'text', @$this->element->payment_params->security_avs ); ?> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][security_cvv]"> CVV Security </label> </td> <td> <?php echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][security_cvv]" , '',@$this->element->payment_params->security_cvv ); ?> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][security_preauth]"> PreAuth Security </label> </td> <td> <?php echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][security_preauth]" , '',@$this->element->payment_params->security_preauth ); ?> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][security_avsforce]"> AVS Force </label> </td> <td> <?php echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][security_avsforce]" , '',@$this->element->payment_params->security_avsforce ); ?> </td> </tr> <tr> <td class="key"> <label for="data[payment][payment_params][security_cvvforce]"> CVV Force </label> </td> <td> <?php echo JHTML::_('hikaselect.booleanlist', "data[payment][payment_params][security_cvvforce]" , '',@$this->element->payment_params->security_cvvforce ); ?> </td> </tr> </table> <script type="text/javascript"> var payjunction_el = $("payjunction_security_1"); var payjunction_s = null; try { payjunction_s = new Fx.Slide(payjunction_el); } catch(e) {} function payjunction_avs_radio(elem) { if( elem.checked ) { if( elem.value == "0" ) { if( payjunction_el.isDisplayed() ) { if(!payjunction_s) { payjunction_el.hide(); } if(payjunction_s.open) { payjunction_s.show().slideOut(); } } } else { if( !payjunction_el.isDisplayed() || (payjunction_s && !payjunction_s.open) ) { payjunction_el.show(); if( payjunction_s ) { payjunction_s.hide().slideIn(); } } } } } window.hikashop.ready( function() { var e = $('data[payment][payment_params][security]1'); if( e.checked && !payjunction_el.isDisplayed() ) payjunction_el.show(); }); </script> </div> <table> <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> <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->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->element->payment_params->return_url; ?>" /> </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>
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка