No Description

payment-method.php 1.8KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Output a single payment method
  4. *
  5. * This template can be overridden by copying it to yourtheme/woocommerce/checkout/payment-method.php.
  6. *
  7. * HOWEVER, on occasion WooCommerce will need to update template files and you
  8. * (the theme developer) will need to copy the new files to your theme to
  9. * maintain compatibility. We try to do this as little as possible, but it does
  10. * happen. When this occurs the version of the template file will be bumped and
  11. * the readme will list any important changes.
  12. *
  13. * @see https://docs.woocommerce.com/document/template-structure/
  14. * @package WooCommerce\Templates
  15. * @version 3.5.0
  16. */
  17. if ( ! defined( 'ABSPATH' ) ) {
  18. exit;
  19. }
  20. ?>
  21. <li class="wc_payment_method payment_method_<?php echo esc_attr( $gateway->id ); ?>">
  22. <input id="payment_method_<?php echo esc_attr( $gateway->id ); ?>" type="radio" class="input-radio" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php checked( $gateway->chosen, true ); ?> data-order_button_text="<?php echo esc_attr( $gateway->order_button_text ); ?>" />
  23. <label for="payment_method_<?php echo esc_attr( $gateway->id ); ?>">
  24. <?php echo $gateway->get_title(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?> <?php echo $gateway->get_icon(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?>
  25. </label>
  26. <?php if ( $gateway->has_fields() || $gateway->get_description() ) : ?>
  27. <div class="payment_box payment_method_<?php echo esc_attr( $gateway->id ); ?>" <?php if ( ! $gateway->chosen ) : /* phpcs:ignore Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace */ ?>style="display:none;"<?php endif; /* phpcs:ignore Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace */ ?>>
  28. <?php $gateway->payment_fields(); ?>
  29. </div>
  30. <?php endif; ?>
  31. </li>