woocommerce/shortcodes/shortcode-pay.php

108 lines
3.2 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
/**
* Pay Shortcode
*
2011-11-28 18:49:32 +00:00
* The pay page. Used for form based gateways to show payment forms and order info.
2011-08-10 17:11:11 +00:00
*
* @package WooCommerce
* @category Shortcode
* @author WooThemes
*/
function get_woocommerce_pay( $atts ) {
global $woocommerce;
return $woocommerce->shortcode_wrapper('woocommerce_pay', $atts);
2011-08-10 17:11:11 +00:00
}
/**
* Outputs the pay page - payment gateways can hook in here to show payment forms etc
**/
function woocommerce_pay() {
2012-02-03 16:17:35 +00:00
global $woocommerce;
2011-08-10 17:11:11 +00:00
2012-02-07 12:09:23 +00:00
woocommerce_nocache();
2011-08-10 17:11:11 +00:00
if ( isset($_GET['pay_for_order']) && isset($_GET['order']) && isset($_GET['order_id']) ) :
// Pay for existing order
$order_key = urldecode( $_GET['order'] );
$order_id = (int) $_GET['order_id'];
2012-01-27 16:38:39 +00:00
$order = new WC_Order( $order_id );
2011-08-10 17:11:11 +00:00
if ($order->id == $order_id && $order->order_key == $order_key && in_array($order->status, array('pending', 'failed'))) :
2011-08-10 17:11:11 +00:00
// Set customer location to order location
if ($order->billing_country) $woocommerce->customer->set_country( $order->billing_country );
if ($order->billing_state) $woocommerce->customer->set_state( $order->billing_state );
if ($order->billing_postcode) $woocommerce->customer->set_postcode( $order->billing_postcode );
2011-08-10 17:11:11 +00:00
// Show form
2012-02-03 16:17:35 +00:00
woocommerce_get_template('checkout/form-pay.php', array('order' => $order));
2011-08-10 17:11:11 +00:00
elseif (!in_array($order->status, array('pending', 'failed'))) :
2011-08-10 17:11:11 +00:00
2012-01-05 11:31:22 +00:00
$woocommerce->add_error( __('Your order has already been paid for. Please contact us if you need assistance.', 'woocommerce') );
$woocommerce->show_messages();
2011-08-10 17:11:11 +00:00
else :
2012-01-05 11:31:22 +00:00
$woocommerce->add_error( __('Invalid order.', 'woocommerce') );
$woocommerce->show_messages();
2011-08-10 17:11:11 +00:00
endif;
else :
// Pay for order after checkout step
if (isset($_GET['order'])) $order_id = $_GET['order']; else $order_id = 0;
if (isset($_GET['key'])) $order_key = $_GET['key']; else $order_key = '';
if ($order_id > 0) :
2012-01-27 16:38:39 +00:00
$order = new WC_Order( $order_id );
2011-08-10 17:11:11 +00:00
if ($order->order_key == $order_key && in_array($order->status, array('pending', 'failed'))) :
2011-08-10 17:11:11 +00:00
?>
<ul class="order_details">
<li class="order">
2012-01-05 11:31:22 +00:00
<?php _e('Order:', 'woocommerce'); ?>
2011-08-10 17:11:11 +00:00
<strong># <?php echo $order->id; ?></strong>
</li>
<li class="date">
2012-01-05 11:31:22 +00:00
<?php _e('Date:', 'woocommerce'); ?>
2012-01-25 15:23:32 +00:00
<strong><?php echo date_i18n(get_option('date_format'), strtotime($order->order_date)); ?></strong>
2011-08-10 17:11:11 +00:00
</li>
<li class="total">
2012-01-05 11:31:22 +00:00
<?php _e('Total:', 'woocommerce'); ?>
2011-08-10 17:11:11 +00:00
<strong><?php echo woocommerce_price($order->order_total); ?></strong>
</li>
<li class="method">
2012-01-05 11:31:22 +00:00
<?php _e('Payment method:', 'woocommerce'); ?>
2011-08-10 17:11:11 +00:00
<strong><?php
echo $order->payment_method_title;
2011-08-10 17:11:11 +00:00
?></strong>
</li>
</ul>
<?php do_action( 'woocommerce_receipt_' . $order->payment_method, $order_id ); ?>
2011-08-10 17:11:11 +00:00
<div class="clear"></div>
<?php
else :
2012-01-12 00:54:45 +00:00
$woocommerce->add_error( __('Your order has already been paid for. Please contact us if you need assistance.', 'woocommerce') );
$woocommerce->show_messages();
2011-08-10 17:11:11 +00:00
endif;
else :
2012-01-12 00:54:45 +00:00
$woocommerce->add_error( __('Invalid order.', 'woocommerce') );
$woocommerce->show_messages();
2011-08-10 17:11:11 +00:00
endif;
endif;
}