⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
olasjoys
/
modules
/
tpay
/
ConfigFieldsDef
/
View File Name :
BasicPaymentDefinition.php
<?php /** * Created by tpay.com. * Date: 26.05.2017 * Time: 17:30 */ return array( 'form' => array( 'legend' => array( 'title' => $this->l('Settings for standard payment'), 'image' => $this->_path . 'views/img/logo.png', ), 'input' => array( array( 'type' => $switch, 'label' => $this->l('Payment active'), 'name' => 'TPAY_BASIC_ACTIVE', 'is_bool' => true, 'class' => 't', 'values' => array( array( 'id' => 'tpay_active_on', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'tpay_active_off', 'value' => 0, 'label' => $this->l('No'), ), ), ), array( 'type' => $switch, 'label' => $this->l('Show installments payment option (over 300zł)'), 'name' => 'TPAY_INSTALLMENTS_ACTIVE', 'is_bool' => true, 'class' => 't', 'values' => array( array( 'id' => 'tpay_installments_on', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'tpay_installments_off', 'value' => 0, 'label' => $this->l('No'), ), ), ), array( 'type' => 'radio', 'label' => $this->l('View for payment channels'), 'name' => 'TPAY_BANK_ON_SHOP', 'is_bool' => false, 'class' => 'child', 'values' => array( array( 'id' => 'tpay_bank_selection_redirect', 'value' => TPAY_VIEW_REDIRECT, 'label' => $this->l('Redirect to tpay'), ), array( 'id' => 'tpay_bank_selection_icons', 'value' => TPAY_VIEW_ICONS, 'label' => $this->l('Tiles'), ), array( 'id' => 'tpay_bank_selection_list', 'value' => TPAY_VIEW_LIST, 'label' => $this->l('List'), ), ), ), array( 'type' => $switch, 'label' => $this->l('Show tpay regulations on site'), 'name' => 'TPAY_SHOW_REGULATIONS', 'is_bool' => true, 'class' => 't', 'values' => array( array( 'id' => 'tpay_regulations_on', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'tpay_regulations_off', 'value' => 0, 'label' => $this->l('No'), ), ), ), ), 'submit' => array( 'title' => $this->l('Save'), 'class' => 'button', ), ), );