WC_Gateway_Paypal::admin_options()

Admin Panel Options.


Description Description

  • Options for bits like ‘title’ and availability on a country-by-country basis.

Source Source

File: includes/gateways/paypal/class-wc-gateway-paypal.php

	public function admin_options() {
		if ( $this->is_valid_for_use() ) {
			parent::admin_options();
		} else {
			?>
			<div class="inline error">
				<p>
					<strong><?php esc_html_e( 'Gateway disabled', 'woocommerce' ); ?></strong>: <?php esc_html_e( 'PayPal does not support your store currency.', 'woocommerce' ); ?>
				</p>
			</div>
			<?php
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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