' . sprintf( __( 'Please enter your Paystack merchant details here to be able to use the Paystack WooCommerce plugin.', 'woo-paystack' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=paystack' ) ) . '
';
return;
}
}
/**
* Check if Paystack gateway is enabled.
*
* @return bool
*/
public function is_available() {
if ( 'yes' == $this->enabled ) {
if ( ! ( $this->public_key && $this->secret_key ) ) {
return false;
}
return true;
}
return false;
}
/**
* Admin Panel Options.
*/
public function admin_options() {
?>