Automattic\WooCommerce\Blocks\Payments

PaymentMethodTypeInterface{}WC 1.0

Хуков нет.

Использование

$PaymentMethodTypeInterface = new PaymentMethodTypeInterface();
// use class methods

Методы

  1. public get_payment_method_data()
  2. public get_payment_method_script_handles()
  3. public get_payment_method_script_handles_for_admin()
  4. public get_supported_features()
  5. public is_active()

Код PaymentMethodTypeInterface{} WC 8.7.0

interface PaymentMethodTypeInterface extends IntegrationInterface {
	/**
	 * Returns if this payment method should be active. If false, the scripts will not be enqueued.
	 *
	 * @return boolean
	 */
	public function is_active();

	/**
	 * Returns an array of script handles to enqueue for this payment method in
	 * the frontend context
	 *
	 * @return string[]
	 */
	public function get_payment_method_script_handles();

	/**
	 * Returns an array of script handles to enqueue for this payment method in
	 * the admin context
	 *
	 * @return string[]
	 */
	public function get_payment_method_script_handles_for_admin();

	/**
	 * An array of key, value pairs of data made available to payment methods
	 * client side.
	 *
	 * @return array
	 */
	public function get_payment_method_data();

	/**
	 * Get array of supported features.
	 *
	 * @return string[]
	 */
	public function get_supported_features();
}