Automattic\WooCommerce\Blocks\Payments\Integrations
Stripe::get_inline_cc_form() private WC 1.0
Return the inline cc option.
{} It's a method of the class: Stripe{}
No Hooks.
Return
true/false. True if the inline CC form option is enabled.
Usage
// private - for code of main (parent) class only $result = $this->get_inline_cc_form();
Code of Stripe::get_inline_cc_form() Stripe::get inline cc form WC 5.0.0
private function get_inline_cc_form() {
return isset( $this->settings['inline_cc_form'] ) && 'yes' === $this->settings['inline_cc_form'];
}