HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/refonte2023/wordpress/wp-content/plugins/give/src/PaymentGateways/PaymentGateway.php
<?php

namespace Give\PaymentGateways;

/**
 * Interface PaymentGateway
 *
 * For use when defining a Payment Gateway. This gives the basic configurations needed to register
 * the gateway with GiveWP.
 *
 * @since 2.9.0
 */
interface PaymentGateway
{
    /**
     * Returns a unique ID for the gateway
     *
     * @return string
     * @since 2.9.0
     *
     */
    public function getId();

    /**
     * Returns a human-readable name for the gateway
     *
     * @return string
     * @since 2.9.0
     *
     */
    public function getName();

    /**
     * Returns a human-readable label for use when a donor selects a payment method to use
     *
     * @return string
     * @since 2.9.0
     *
     */
    public function getPaymentMethodLabel();

    /**
     * Get payment gateway options
     *
     * @return array
     */
    public function getOptions();

    /**
     * Bootstrap payment gateway
     *
     * @since 2.9.0
     */
    public function boot();
}