get_checkout_order_received_url(); else $return_url = woocommerce_get_endpoint_url( 'order-received', '', get_permalink( woocommerce_get_page_id( 'checkout' ) ) ); if ( is_ssl() || get_option('woocommerce_force_ssl_checkout') == 'yes' ) $return_url = str_replace( 'http:', 'https:', $return_url ); return apply_filters( 'woocommerce_get_return_url', $return_url ); } /** * Check If The Gateway Is Available For Use * * @access public * @return bool */ function is_available() { if ( $this->enabled == "yes" ) return true; } /** * has_fields function. * * @access public * @return bool */ function has_fields() { return $this->has_fields ? true : false; } /** * Return the gateways title * * @access public * @return string */ function get_title() { return apply_filters( 'woocommerce_gateway_title', $this->title, $this->id ); } /** * Return the gateways description * * @access public * @return string */ function get_description() { return apply_filters( 'woocommerce_gateway_description', $this->description, $this->id ); } /** * get_icon function. * * @access public * @return string */ function get_icon() { global $woocommerce; $icon = $this->icon ? '' . $this->title . '' : ''; return apply_filters( 'woocommerce_gateway_icon', $icon, $this->id ); } /** * Set As Current Gateway. * * Set this as the current gateway. * * @access public * @return void */ function set_current() { $this->chosen = true; } /** * Process Payment * * Process the payment. Override this in your gateway. * * @access public * @return void */ function process_payment() {} /** * Validate Frontend Fields * * Validate payment fields on the frontend. * * @access public * @return bool */ function validate_fields() { return true; } /** * If There are no payment fields show the description if set. * Override this in your gateway if you have some. * * @access public * @return void */ function payment_fields() { if ( $description = $this->get_description() ) echo wpautop( wptexturize( $description ) ); } /** * Check if a gateway supports a given feature. * * Gateways should override this to declare support (or lack of support) for a feature. * For backward compatibility, gateways support 'products' by default, but nothing else. * * @access public * @param $feature string The name of a feature to test support for. * @return bool True if the gateway supports the feature, false otherwise. * @since 1.5.7 */ function supports( $feature ) { return apply_filters( 'woocommerce_payment_gateway_supports', in_array( $feature, $this->supports ) ? true : false, $feature, $this ); } }