PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
woocommerce-bookings
/
includes
/
gateways
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * WC_Bookings_Gateway class. */ class WC_Bookings_Gateway extends WC_Payment_Gateway { /** * Constructor for the gateway. */ public function __construct() { $this->id = 'wc-booking-gateway'; $this->icon = ''; $this->has_fields = false; $this->method_title = __( 'Check booking availability', 'woocommerce-bookings' ); $this->title = $this->method_title; $this->order_button_text = __( 'Request Confirmation', 'woocommerce-bookings' ); add_action( 'woocommerce_thankyou_' . $this->id, array( $this, 'thankyou_page' ) ); } /** * Admin page. */ public function admin_options() { $title = ( ! empty( $this->method_title ) ) ? $this->method_title : __( 'Settings', 'woocommerce-bookings' ); echo '<h3>' . $title . '</h3>'; echo '<p>' . __( 'This is fictitious payment method used for bookings that requires confirmation.', 'woocommerce-bookings' ) . '</p>'; echo '<p>' . __( 'This gateway requires no configuration.', 'woocommerce-bookings' ) . '</p>'; // Hides the save button echo '<style>p.submit input[type="submit"] { display: none }</style>'; } /** * Check if this gateway is enabled. * * @return bool */ public function is_available() { if ( 'yes' !== $this->enabled ) { return false; } if ( wc_booking_cart_requires_confirmation() ) { return true; } return false; } /** * Process the payment and return the result * * @param int $order_id * * @return array */ public function process_payment( $order_id ) { $order = new WC_Order( $order_id ); // Add custom order note. $order->add_order_note( __( 'This order is awaiting confirmation from the shop manager', 'woocommerce-bookings' ) ); // Remove cart WC()->cart->empty_cart(); // Return thankyou redirect. return array( 'result' => 'success', 'redirect' => $this->get_return_url( $order ), ); } /** * Output for the order received page. */ public function thankyou_page( $order_id ) { $order = new WC_Order( $order_id ); if ( 'completed' == $order->get_status() ) { echo '<p>' . __( 'Your booking has been confirmed. Thank you.', 'woocommerce-bookings' ) . '</p>'; } else { echo '<p>' . __( 'Your booking is awaiting confirmation. You will be notified by email as soon as we\'ve confirmed availability.', 'woocommerce-bookings' ) . '</p>'; } } }
[+]
..
[-] class-wc-bookings-gateway.php
[edit]