<?php
/**
 * Shipping Calculator
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.0.8
 */

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

global $woocommerce;

if ( get_option('woocommerce_enable_shipping_calc')=='no' || ! $woocommerce->cart->needs_shipping() )
	return;
?>

<?php do_action( 'woocommerce_before_shipping_calculator' ); ?>

<form id="shipping-zip-form" class="shipping_calculator" action="<?php echo esc_url( $woocommerce->cart->get_cart_url() ); ?>" method="post">

	<h2><?php _e( 'Calculate Shipping', 'woocommerce' ); ?></h2>

	<p>Enter your destination to get a shipping estimate.</p>
	<p>Country*</p>

	<div class="select_wrapper fullwidth">
		<select name="calc_shipping_country" id="calc_shipping_country" class="custom" rel="calc_shipping_state" class="validate-select">
			<option value=""><?php _e( 'Select a country&hellip;', 'woocommerce' ); ?></option>
			<?php
				foreach( $woocommerce->countries->get_allowed_countries() as $key => $value )
					echo '<option value="' . esc_attr( $key ) . '"' . selected( $woocommerce->customer->get_shipping_country(), esc_attr( $key ), false ) . '>' . esc_html( $value ) . '</option>';
			?>
		</select>
	</div>

	<p> State/Province* </p>

	<?php
		$current_cc = $woocommerce->customer->get_shipping_country();
		$current_r  = $woocommerce->customer->get_shipping_state();
		$states     = $woocommerce->countries->get_states( $current_cc );

		// Hidden Input
		if ( is_array( $states ) && empty( $states ) ) {

			?><input type="hidden" name="calc_shipping_state" id="calc_shipping_state" placeholder="<?php _e( 'State / county', 'woocommerce' ); ?>" /><?php

		// Dropdown Input
		} elseif ( is_array( $states ) ) {

			?>

			<div class="select_wrapper fullwidth">
				<select name="calc_shipping_state" id="calc_shipping_state" class="custom" placeholder="<?php _e( 'State / county', 'woocommerce' ); ?>">
					<option value=""><?php _e( 'Select a state&hellip;', 'woocommerce' ); ?></option>
					<?php
						foreach ( $states as $ckey => $cvalue )
							echo '<option value="' . esc_attr( $ckey ) . '" ' . selected( $current_r, $ckey, false ) . '>' . __( esc_html( $cvalue ), 'woocommerce' ) .'</option>';
					?>
				</select>
			</div>

			<?php

		// Standard Input
		} else {

			?><input type="text" class="fullwidth input-text" value="<?php echo esc_attr( $current_r ); ?>" placeholder="<?php _e( 'State / county', 'woocommerce' ); ?>" name="calc_shipping_state" id="calc_shipping_state" /><?php

		}
	?>


	<?php if ( apply_filters( 'woocommerce_shipping_calculator_enable_city', false ) ) : ?>

		<p>City</p>
		<input type="text" class="fullwidth input-text validate-postcode" value="<?php echo esc_attr( $woocommerce->customer->get_shipping_city() ); ?>" placeholder="<?php _e( 'City', 'woocommerce' ); ?>" name="calc_shipping_city" id="calc_shipping_city" />


	<?php endif; ?>

	<?php if ( apply_filters( 'woocommerce_shipping_calculator_enable_postcode', true ) ) : ?>

		<p>Zip/Postal Code</p>

		<input type="text" class="fullwidth input-text validate-postcode" value="<?php echo esc_attr( $woocommerce->customer->get_shipping_postcode() ); ?>" placeholder="<?php _e( 'Postcode / Zip', 'woocommerce' ); ?>" name="calc_shipping_postcode" id="calc_shipping_postcode" />

	<?php endif; ?>

	<p><button type="submit" name="calc_shipping" value="1" class="button"><?php _e( 'Update Totals', 'woocommerce' ); ?></button></p>

	<?php $woocommerce->nonce_field('cart') ?>

</form>

<?php do_action( 'woocommerce_after_shipping_calculator' ); ?>