LLMS_Payment_Gateway_Manual::__construct()

Constructor


Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.gateway.manual.php

34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
public function __construct() {
 
    $this->id                   = 'manual';
    $this->admin_description    = __( 'Collect manual or offline payments. Also handles any free orders during checkout.', 'lifterlms' );
    $this->admin_title          = __( 'Manual', 'lifterlms' );
    $this->title                = __( 'Manual', 'lifterlms' );
    $this->description          = __( 'Pay manually via check', 'lifterlms' );
    $this->payment_instructions = ''; // Fields.
 
    $this->supports = array(
        'checkout_fields'    => false,
        'refunds'            => false, // Manual refunds are available always for all gateways and are not handled by this class.
        'single_payments'    => true,
        'recurring_payments' => true,
        'test_mode'          => false,
    );
 
    add_filter( 'llms_get_gateway_settings_fields', array( $this, 'get_settings_fields' ), 10, 2 );
    add_action( 'lifterlms_before_view_order_table', array( $this, 'before_view_order_table' ) );
 
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.