WC_Gateway_Paypal::admin_options PHP Méthode

admin_options() public méthode

- Options for bits like 'title' and availability on a country-by-country basis.
Since: 1.0.0
public admin_options ( )
    public function admin_options()
    {
        if ($this->is_valid_for_use()) {
            parent::admin_options();
        } else {
            ?>
			<div class="inline error"><p><strong><?php 
            _e('Gateway disabled', 'woocommerce');
            ?>
</strong>: <?php 
            _e('PayPal does not support your store currency.', 'woocommerce');
            ?>
</p></div>
			<?php 
        }
    }