Automattic\WooCommerce\Blocks\Payments\Integrations

AbstractPaymentMethodType::get_script_handles()publicWC 1.0

Returns an array of script handles to enqueue in the frontend context.

Alias of get_payment_method_script_handles. Defined by IntegrationInterface.

Method of the class: AbstractPaymentMethodType{}

No Hooks.

Return

String[].

Usage

$AbstractPaymentMethodType = new AbstractPaymentMethodType();
$AbstractPaymentMethodType->get_script_handles();

AbstractPaymentMethodType::get_script_handles() code WC 8.7.0

public function get_script_handles() {
	return $this->get_payment_method_script_handles();
}