Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/Corals/modules/Payment/TwoCheckout/config/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/Corals/modules/Payment/TwoCheckout/config/twocheckout.php
<?php

return [
    'name' => 'TwoCheckout',
    'key' => 'payment_twocheckout',
    'support_subscription' => true,
    'support_ecommerce' => false,
    'manage_remote_plan' => false,
    'create_remote_customer' => false,
    'capture_payment_method' => true,
    'require_default_payment_set' => true,
    'supports_swap' => false,
    'can_update_payment' => true,
    'supports_swap_in_grace_period' => false,
    'require_invoice_creation' => false,
    'require_plan_activation' => false,
    'require_payment_token' => false,

    'settings' => [
        'live_merchant_id' => [
            'label' => 'TwoCheckout::labels.settings.live_merchant',
            'type' => 'text',
            'required' => false,
        ],
        'live_public_key' => [
            'label' => 'TwoCheckout::labels.settings.live_public_key',
            'type' => 'text',
            'required' => false,
        ],
        'live_private_key' => [
            'label' => 'TwoCheckout::labels.settings.live_private_key',
            'type' => 'text',
            'required' => false,
        ],
        'live_admin_username' => [
            'label' => 'TwoCheckout::labels.settings.live_admin_name',
            'type' => 'text',
            'required' => false,
        ],
        'live_admin_password' => [
            'label' => 'TwoCheckout::labels.settings.live_password',
            'type' => 'text',
            'required' => false,
        ],
        'sandbox_mode' => [
            'label' => 'TwoCheckout::labels.settings.sandbox_mode',
            'type' => 'boolean'
        ],
        'sandbox_merchant_id' => [
            'label' => 'TwoCheckout::labels.settings.sandbox_merchant',
            'type' => 'text',
            'required' => false,
        ],
        'sandbox_public_key' => [
            'label' => 'TwoCheckout::labels.settings.sandbox_public_key',
            'type' => 'text',
            'required' => false,
        ],
        'sandbox_private_key' => [
            'label' => 'TwoCheckout::labels.settings.sandbox_private_key',
            'type' => 'text',
            'required' => false,
        ],
        'sandbox_admin_username' => [
            'label' => 'TwoCheckout::labels.settings.sandbox_admin_name',
            'type' => 'text',
            'required' => false,
        ],
        'sandbox_admin_password' => [
            'label' => 'TwoCheckout::labels.settings.sandbox_admin_password',
            'type' => 'text',
            'required' => false,
        ],
    ],
    'events' => [

        'RECURRING_STOPPED' => \Corals\Modules\Payment\TwoCheckout\Job\HandleSubscriptionDeleted::class,
        'RECURRING_INSTALLMENT_SUCCESS' => \Corals\Modules\Payment\TwoCheckout\Job\HandleRecurringSuccess::class,
        'RECURRING_INSTALLMENT_FAILED' => \Corals\Modules\Payment\TwoCheckout\Job\HandleRecurringFailed::class,
    ],
    'webhook_handler' => \Corals\Modules\Payment\TwoCheckout\Gateway::class,
];

Spamworldpro Mini