| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for displaying single method payment in checkout form. |
| 4 |
* |
| 5 |
* This template can be overridden by copying it to yourtheme/learnpress/checkout/payment-method.php. |
| 6 |
* |
| 7 |
* @author ThimPress |
| 8 |
* @package Learnpress/Templates |
| 9 |
* @version 4.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
defined( 'ABSPATH' ) || exit(); |
| 13 |
|
| 14 |
if ( ! isset( $gateway ) || ! $gateway->is_display() ) { |
| 15 |
return; |
| 16 |
} |
| 17 |
|
| 18 |
$icon = $gateway->get_icon(); |
| 19 |
?> |
| 20 |
|
| 21 |
<li id="learn-press-payment-method-<?php echo esc_attr( $gateway->id ); ?>" |
| 22 |
class="lp-payment-method lp-payment-method-<?php echo esc_attr( $gateway->id ); ?><?php echo esc_html( $gateway->is_selected ? ' selected' : '' ); ?>"> |
| 23 |
<label for="payment_method_<?php echo esc_attr( $gateway->id ); ?>"> |
| 24 |
<input type="radio" class="gateway-input" name="payment_method" |
| 25 |
id="payment_method_<?php echo esc_attr( $gateway->id ); ?>" |
| 26 |
value="<?php echo esc_attr( $gateway->id ); ?>" <?php checked( $gateway->is_selected, true ); ?> |
| 27 |
data-order_button_text="<?php echo esc_attr( $gateway->order_button_text ); ?>"/> |
| 28 |
<?php echo wp_kses_post( ! empty( $icon ) ? $icon : $gateway->get_title() ); ?> |
| 29 |
</label> |
| 30 |
|
| 31 |
<?php $payment_form = $gateway->get_payment_form(); ?> |
| 32 |
|
| 33 |
<?php if ( $payment_form ) : ?> |
| 34 |
<div class="payment-method-form payment_method_<?php echo esc_attr( $gateway->id ); ?>"> |
| 35 |
<?php learn_press_echo_vuejs_write_on_php( $payment_form ); ?> |
| 36 |
</div> |
| 37 |
<?php endif; ?> |
| 38 |
</li> |
| 39 |
|