2015-04-28 12:19:16 +00:00
< ? php
/**
2015-11-03 13:53:50 +00:00
* Setup Wizard Class
2015-04-28 12:19:16 +00:00
*
* Takes new users through some basic steps to setup their store .
*
* @ author WooThemes
* @ category Admin
* @ package WooCommerce / Admin
2016-06-13 15:14:35 +00:00
* @ version 2.6 . 0
2016-09-02 02:40:36 +00:00
*/
2015-04-28 12:19:16 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
/**
2015-11-03 12:28:01 +00:00
* WC_Admin_Setup_Wizard class .
2015-04-28 12:19:16 +00:00
*/
class WC_Admin_Setup_Wizard {
2017-07-17 10:10:52 +00:00
/** @var string Current Step */
2015-04-28 12:19:16 +00:00
private $step = '' ;
/** @var array Steps for the setup wizard */
private $steps = array ();
/** @var array Tweets user can optionally send after install */
private $tweets = array (
2015-08-21 17:57:14 +00:00
'Someone give me woo-t, I just set up a new store with #WordPress and @WooCommerce!' ,
2016-08-27 02:08:49 +00:00
'Someone give me high five, I just set up a new store with #WordPress and @WooCommerce!' ,
2015-04-28 12:19:16 +00:00
);
/**
* Hook in tabs .
*/
public function __construct () {
2015-04-29 10:32:03 +00:00
if ( apply_filters ( 'woocommerce_enable_setup_wizard' , true ) && current_user_can ( 'manage_woocommerce' ) ) {
add_action ( 'admin_menu' , array ( $this , 'admin_menus' ) );
add_action ( 'admin_init' , array ( $this , 'setup_wizard' ) );
}
2015-04-28 12:19:16 +00:00
}
/**
* Add admin menus / screens .
*/
public function admin_menus () {
add_dashboard_page ( '' , '' , 'manage_options' , 'wc-setup' , '' );
}
2017-09-08 20:57:50 +00:00
/**
* The theme " extra " should only be shown if the current user can modify themes
* and the store doesn ' t already have a WooCommerce compatible theme .
*/
protected function should_show_theme_extra () {
return (
current_user_can ( 'install_themes' ) &&
current_user_can ( 'switch_themes' ) &&
! is_multisite () &&
! current_theme_supports ( 'woocommerce' )
);
}
/**
2017-09-11 21:37:35 +00:00
* The " automated tax " extra should only be shown if the current user can
2017-09-17 02:35:51 +00:00
* install plugins and the store is in a supported country .
2017-09-08 20:57:50 +00:00
*/
2017-09-11 21:37:35 +00:00
protected function should_show_automated_tax_extra () {
if ( ! current_user_can ( 'install_plugins' ) ) {
return false ;
}
$country_code = WC () -> countries -> get_base_country ();
// https://developers.taxjar.com/api/reference/#countries
2017-09-10 14:52:26 +00:00
$tax_supported_countries = array_merge (
array ( 'US' , 'CA' , 'AU' ),
WC () -> countries -> get_european_union_countries ()
2017-09-08 20:57:50 +00:00
);
2017-09-10 14:52:26 +00:00
return in_array ( $country_code , $tax_supported_countries );
2017-09-08 20:57:50 +00:00
}
2015-04-28 12:19:16 +00:00
/**
2015-11-03 12:28:01 +00:00
* Show the setup wizard .
2015-04-28 12:19:16 +00:00
*/
public function setup_wizard () {
2015-04-28 12:27:56 +00:00
if ( empty ( $_GET [ 'page' ] ) || 'wc-setup' !== $_GET [ 'page' ] ) {
2015-04-28 12:19:16 +00:00
return ;
}
2017-03-28 21:45:12 +00:00
$default_steps = array (
2017-09-05 19:46:50 +00:00
'store_setup' => array (
'name' => __ ( 'Store setup' , 'woocommerce' ),
'view' => array ( $this , 'wc_setup_store_setup' ),
2017-09-05 20:31:42 +00:00
'handler' => array ( $this , 'wc_setup_store_setup_save' ),
2015-04-28 12:19:16 +00:00
),
2017-09-21 16:41:49 +00:00
'payment' => array (
'name' => __ ( 'Payment' , 'woocommerce' ),
'view' => array ( $this , 'wc_setup_payment' ),
'handler' => array ( $this , 'wc_setup_payment_save' ),
2015-04-28 12:19:16 +00:00
),
2017-05-29 18:51:30 +00:00
'shipping' => array (
2017-05-26 21:12:49 +00:00
'name' => __ ( 'Shipping' , 'woocommerce' ),
2017-05-29 18:51:30 +00:00
'view' => array ( $this , 'wc_setup_shipping' ),
'handler' => array ( $this , 'wc_setup_shipping_save' ),
2015-04-28 12:19:16 +00:00
),
2017-09-08 20:57:50 +00:00
'extras' => array (
'name' => __ ( 'Extras' , 'woocommerce' ),
'view' => array ( $this , 'wc_setup_extras' ),
'handler' => array ( $this , 'wc_setup_extras_save' ),
2017-05-17 16:42:18 +00:00
),
2017-09-05 23:50:56 +00:00
'activate' => array (
'name' => __ ( 'Activate' , 'woocommerce' ),
'view' => array ( $this , 'wc_setup_activate' ),
2017-09-06 05:24:18 +00:00
'handler' => array ( $this , 'wc_setup_activate_save' ),
2017-09-05 23:50:56 +00:00
),
2015-04-28 12:19:16 +00:00
'next_steps' => array (
2016-08-27 06:14:06 +00:00
'name' => __ ( 'Ready!' , 'woocommerce' ),
2015-04-28 12:19:16 +00:00
'view' => array ( $this , 'wc_setup_ready' ),
2016-08-27 01:46:45 +00:00
'handler' => '' ,
),
2015-04-28 12:19:16 +00:00
);
2017-03-28 21:45:12 +00:00
2017-09-17 02:35:51 +00:00
// Hide the extras step if this store/user isn't eligible for them.
2017-09-11 21:37:35 +00:00
if ( ! $this -> should_show_theme_extra () && ! $this -> should_show_automated_tax_extra () ) {
2017-09-08 20:57:50 +00:00
unset ( $default_steps [ 'extras' ] );
2017-05-17 16:42:18 +00:00
}
2017-09-06 05:36:52 +00:00
// Hide shipping step if the store is selling digital products only.
if ( 'virtual' === get_option ( 'woocommerce_product_type' ) ) {
unset ( $default_steps [ 'shipping' ] );
}
2017-09-17 02:35:51 +00:00
// Whether or not there is a pending background install of Jetpack.
2017-09-10 22:39:57 +00:00
$pending_jetpack = ! class_exists ( 'Jetpack' ) && get_option ( 'woocommerce_setup_queued_jetpack_install' );
2017-03-28 21:45:12 +00:00
$this -> steps = apply_filters ( 'woocommerce_setup_wizard_steps' , $default_steps );
2015-04-28 12:19:16 +00:00
$this -> step = isset ( $_GET [ 'step' ] ) ? sanitize_key ( $_GET [ 'step' ] ) : current ( array_keys ( $this -> steps ) );
2015-04-28 12:27:56 +00:00
$suffix = defined ( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' ;
2015-04-28 12:19:16 +00:00
2015-08-21 18:12:36 +00:00
wp_register_script ( 'jquery-blockui' , WC () -> plugin_url () . '/assets/js/jquery-blockui/jquery.blockUI' . $suffix . '.js' , array ( 'jquery' ), '2.70' , true );
2017-07-06 15:43:10 +00:00
wp_register_script ( 'selectWoo' , WC () -> plugin_url () . '/assets/js/selectWoo/selectWoo.full' . $suffix . '.js' , array ( 'jquery' ), '1.0.0' );
wp_register_script ( 'wc-enhanced-select' , WC () -> plugin_url () . '/assets/js/admin/wc-enhanced-select' . $suffix . '.js' , array ( 'jquery' , 'selectWoo' ), WC_VERSION );
2015-04-28 12:19:16 +00:00
wp_localize_script ( 'wc-enhanced-select' , 'wc_enhanced_select_params' , array (
'i18n_no_matches' => _x ( 'No matches found' , 'enhanced select' , 'woocommerce' ),
'i18n_ajax_error' => _x ( 'Loading failed' , 'enhanced select' , 'woocommerce' ),
'i18n_input_too_short_1' => _x ( 'Please enter 1 or more characters' , 'enhanced select' , 'woocommerce' ),
'i18n_input_too_short_n' => _x ( 'Please enter %qty% or more characters' , 'enhanced select' , 'woocommerce' ),
'i18n_input_too_long_1' => _x ( 'Please delete 1 character' , 'enhanced select' , 'woocommerce' ),
'i18n_input_too_long_n' => _x ( 'Please delete %qty% characters' , 'enhanced select' , 'woocommerce' ),
'i18n_selection_too_long_1' => _x ( 'You can only select 1 item' , 'enhanced select' , 'woocommerce' ),
'i18n_selection_too_long_n' => _x ( 'You can only select %qty% items' , 'enhanced select' , 'woocommerce' ),
'i18n_load_more' => _x ( 'Loading more results…' , 'enhanced select' , 'woocommerce' ),
'i18n_searching' => _x ( 'Searching…' , 'enhanced select' , 'woocommerce' ),
'ajax_url' => admin_url ( 'admin-ajax.php' ),
'search_products_nonce' => wp_create_nonce ( 'search-products' ),
2016-08-27 01:46:45 +00:00
'search_customers_nonce' => wp_create_nonce ( 'search-customers' ),
2015-04-28 12:19:16 +00:00
) );
2015-04-28 12:27:56 +00:00
wp_enqueue_style ( 'woocommerce_admin_styles' , WC () -> plugin_url () . '/assets/css/admin.css' , array (), WC_VERSION );
wp_enqueue_style ( 'wc-setup' , WC () -> plugin_url () . '/assets/css/wc-setup.css' , array ( 'dashicons' , 'install' ), WC_VERSION );
2017-09-10 22:48:38 +00:00
wp_register_script ( 'wc-setup' , WC () -> plugin_url () . '/assets/js/admin/wc-setup' . $suffix . '.js' , array ( 'jquery' , 'wc-enhanced-select' , 'jquery-blockui' , 'wp-util' ), WC_VERSION );
2015-04-28 12:19:16 +00:00
wp_localize_script ( 'wc-setup' , 'wc_setup_params' , array (
2017-09-10 22:39:57 +00:00
'pending_jetpack_install' => $pending_jetpack ? 'yes' : 'no' ,
2015-04-28 12:19:16 +00:00
) );
if ( ! empty ( $_POST [ 'save_step' ] ) && isset ( $this -> steps [ $this -> step ][ 'handler' ] ) ) {
2017-03-31 17:32:19 +00:00
call_user_func ( $this -> steps [ $this -> step ][ 'handler' ], $this );
2015-04-28 12:19:16 +00:00
}
2015-04-29 15:34:07 +00:00
ob_start ();
2015-04-28 12:19:16 +00:00
$this -> setup_wizard_header ();
$this -> setup_wizard_steps ();
$this -> setup_wizard_content ();
$this -> setup_wizard_footer ();
exit ;
}
2017-03-31 17:32:19 +00:00
/**
* Get the URL for the next step ' s screen .
* @ param string step slug ( default : current step )
* @ return string URL for next step if a next step exists .
* Admin URL if it ' s the last step .
* Empty string on failure .
2017-04-03 18:24:01 +00:00
* @ since 3.0 . 0
2017-03-31 17:32:19 +00:00
*/
public function get_next_step_link ( $step = '' ) {
if ( ! $step ) {
$step = $this -> step ;
}
2015-04-28 12:19:16 +00:00
$keys = array_keys ( $this -> steps );
2017-03-31 17:32:19 +00:00
if ( end ( $keys ) === $step ) {
2017-03-29 18:22:55 +00:00
return admin_url ();
}
2017-03-31 17:32:19 +00:00
$step_index = array_search ( $step , $keys );
if ( false === $step_index ) {
2017-04-03 16:54:24 +00:00
return '' ;
2017-03-31 17:32:19 +00:00
}
return add_query_arg ( 'step' , $keys [ $step_index + 1 ] );
2015-04-28 12:19:16 +00:00
}
/**
2015-11-03 12:28:01 +00:00
* Setup Wizard Header .
2015-04-28 12:19:16 +00:00
*/
public function setup_wizard_header () {
?>
<! DOCTYPE html >
2016-05-27 01:48:49 +00:00
< html < ? php language_attributes (); ?> >
2015-04-28 12:19:16 +00:00
< head >
< meta name = " viewport " content = " width=device-width " />
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " />
2017-03-13 05:39:46 +00:00
< title >< ? php esc_html_e ( 'WooCommerce › Setup Wizard' , 'woocommerce' ); ?> </title>
2015-04-28 12:27:56 +00:00
< ? php wp_print_scripts ( 'wc-setup' ); ?>
2015-08-21 07:46:10 +00:00
< ? php do_action ( 'admin_print_styles' ); ?>
< ? php do_action ( 'admin_head' ); ?>
2015-04-28 12:19:16 +00:00
</ head >
< body class = " wc-setup wp-core-ui " >
2016-09-27 15:44:48 +00:00
< h1 id = " wc-logo " >< a href = " https://woocommerce.com/ " >< img src = " <?php echo WC()->plugin_url(); ?>/assets/images/woocommerce_logo.png " alt = " WooCommerce " /></ a ></ h1 >
2015-04-28 12:19:16 +00:00
< ? php
}
/**
2015-11-03 12:28:01 +00:00
* Setup Wizard Footer .
2015-04-28 12:19:16 +00:00
*/
public function setup_wizard_footer () {
?>
2017-09-05 19:48:07 +00:00
< ? php if ( 'store_setup' === $this -> step ) : ?>
< a class = " wc-return-to-dashboard " href = " <?php echo esc_url( admin_url() ); ?> " >< ? php esc_html_e ( 'Not right now' , 'woocommerce' ); ?> </a>
< ? php elseif ( 'next_steps' === $this -> step ) : ?>
2017-09-21 16:41:49 +00:00
< a class = " wc-return-to-dashboard " href = " <?php echo esc_url( admin_url() ); ?> " >< ? php esc_html_e ( 'Return to the WP Admin' , 'woocommerce' ); ?> </a>
2017-09-05 23:53:14 +00:00
< ? php elseif ( 'activate' === $this -> step ) : ?>
< a class = " wc-return-to-dashboard " href = " <?php echo esc_url( $this->get_next_step_link () ); ?> " >< ? php esc_html_e ( 'Skip this step' , 'woocommerce' ); ?> </a>
2015-06-09 14:54:46 +00:00
< ? php endif ; ?>
2015-04-28 12:19:16 +00:00
</ body >
</ html >
< ? php
}
/**
2015-11-03 12:28:01 +00:00
* Output the steps .
2015-04-28 12:19:16 +00:00
*/
public function setup_wizard_steps () {
2017-07-10 05:56:28 +00:00
$output_steps = $this -> steps ;
2015-04-28 12:19:16 +00:00
?>
< ol class = " wc-setup-steps " >
2017-07-10 05:56:28 +00:00
< ? php foreach ( $output_steps as $step_key => $step ) : ?>
2015-04-28 12:19:16 +00:00
< li class = " <?php
if ( $step_key === $this -> step ) {
echo 'active' ;
} elseif ( array_search ( $this -> step , array_keys ( $this -> steps ) ) > array_search ( $step_key , array_keys ( $this -> steps ) ) ) {
echo 'done' ;
}
?> "><?php echo esc_html( $step['name'] ); ?></li>
< ? php endforeach ; ?>
</ ol >
< ? php
}
/**
2015-11-03 12:28:01 +00:00
* Output the content for the current step .
2015-04-28 12:19:16 +00:00
*/
public function setup_wizard_content () {
echo '<div class="wc-setup-content">' ;
2017-03-31 17:32:19 +00:00
call_user_func ( $this -> steps [ $this -> step ][ 'view' ], $this );
2015-04-28 12:19:16 +00:00
echo '</div>' ;
}
2017-09-05 19:46:50 +00:00
/**
* Initial " store setup " step .
* Location , product type , page setup , and tracking opt - in .
*/
public function wc_setup_store_setup () {
$address = WC () -> countries -> get_base_address ();
$address_2 = WC () -> countries -> get_base_address_2 ();
$city = WC () -> countries -> get_base_city ();
$state = WC () -> countries -> get_base_state ();
$country = WC () -> countries -> get_base_country ();
$postcode = WC () -> countries -> get_base_postcode ();
$currency = get_option ( 'woocommerce_currency' , 'GBP' );
2017-09-06 05:36:52 +00:00
$product_type = get_option ( 'woocommerce_product_type' );
2017-09-05 19:46:50 +00:00
if ( empty ( $country ) ) {
$user_location = WC_Geolocation :: geolocate_ip ();
$country = $user_location [ 'country' ];
$state = $user_location [ 'state' ];
2017-09-09 01:45:11 +00:00
} elseif ( empty ( $state ) ) {
$state = '*' ;
2017-09-05 19:46:50 +00:00
}
?>
< h1 >< ? php esc_html_e ( 'Welcome to the world of WooCommerce!' , 'woocommerce' ); ?> </h1>
< form method = " post " >
2017-09-21 16:41:49 +00:00
< p >< ? php esc_html_e ( " Go through this quick setup wizard to configure basic settings — shouldn't take longer than five minutes. " , 'woocommerce' ); ?> </p>
2017-09-05 19:46:50 +00:00
< div >
2017-09-09 01:45:11 +00:00
< label >< ? php esc_html_e ( 'Where is your store based?' , 'woocommerce' ); ?> </label>
2017-09-05 19:46:50 +00:00
</ div >
< div >
< label for = " store_address " >< ? php esc_html_e ( 'Address' , 'woocommerce' ); ?> </label>
2017-09-09 01:45:57 +00:00
< input type = " text " id = " store_address " name = " store_address " style = " width:100%; " required value = " <?php echo esc_attr( $address ); ?> " />
2017-09-06 16:45:24 +00:00
< label for = " store_address_2 " >< ? php esc_html_e ( 'Address line 2' , 'woocommerce' ); ?> </label>
2017-09-05 19:46:50 +00:00
< input type = " text " id = " store_address_2 " name = " store_address_2 " style = " width:100%; " value = " <?php echo esc_attr( $address_2 ); ?> " />
</ div >
< div style = " width:33%; float:left; " >
< label for = " store_city " >< ? php esc_html_e ( 'City' , 'woocommerce' ); ?> </label>
2017-09-09 01:45:57 +00:00
< input type = " text " id = " store_city " name = " store_city " required value = " <?php echo esc_attr( $city ); ?> " />
2017-09-05 19:46:50 +00:00
</ div >
< div style = " width:33%; float:left; " >
2017-09-09 01:45:11 +00:00
< label for = " store_country_state " >< ? php esc_html_e ( 'Country / State' , 'woocommerce' ); ?> </label>
< select id = " store_country_state " name = " store_country_state " style = " width:100%; " required data - placeholder = " <?php esc_attr_e( 'Choose a country…', 'woocommerce' ); ?> " aria - label = " <?php esc_attr_e( 'Country', 'woocommerce' ) ?> " class = " wc-enhanced-select " >
< ? php WC () -> countries -> country_dropdown_options ( $country , $state ); ?>
2017-09-05 19:46:50 +00:00
</ select >
</ div >
< div style = " width:33%; float:left; " >
< label for = " store_postcode " >< ? php esc_html_e ( 'Postcode / ZIP' , 'woocommerce' ); ?> </label>
2017-09-09 01:45:57 +00:00
< input type = " text " id = " store_postcode " name = " store_postcode " required value = " <?php echo esc_attr( $postcode ); ?> " />
2017-09-05 19:46:50 +00:00
</ div >
< div >
2017-09-21 16:41:49 +00:00
< label for = " currency_code " >< ? php esc_html_e ( 'What currency do you use?' , 'woocommerce' ); ?> </label>
2017-09-09 01:45:57 +00:00
< select id = " currency_code " name = " currency_code " style = " width:100%; " required data - placeholder = " <?php esc_attr_e( 'Choose a currency…', 'woocommerce' ); ?> " class = " wc-enhanced-select " >
2017-09-05 19:46:50 +00:00
< option value = " " >< ? php esc_html_e ( 'Choose a currency…' , 'woocommerce' ); ?> </option>
< ? php foreach ( get_woocommerce_currencies () as $code => $name ) : ?>
< option value = " <?php echo esc_attr( $code ); ?> " < ? php selected ( $currency , $code ); ?> ><?php printf( esc_html__( '%1$s (%2$s)', 'woocommerce' ), $name, get_woocommerce_currency_symbol( $code ) ); ?></option>
< ? php endforeach ; ?>
</ select >
</ div >
< div >
< label for = " product_type " >< ? php esc_html_e ( 'What type of product do you plan to sell?' , 'woocommerce' ); ?> </label>
< select id = " product_type " name = " product_type " style = " width:100%; " required data - placeholder = " <?php esc_attr_e( 'Please choose one…', 'woocommerce' ); ?> " class = " wc-enhanced-select " >
2017-09-06 05:36:52 +00:00
< option value = " " < ? php selected ( $product_type , '' ); ?> ><?php esc_html_e( 'Please choose one…', 'woocommerce' ); ?></option>
< option value = " physical " < ? php selected ( $product_type , 'physical' ); ?> ><?php esc_html_e( 'I plan to sell physical products', 'woocommerce' ); ?></option>
< option value = " virtual " < ? php selected ( $product_type , 'virtual' ); ?> ><?php esc_html_e( 'I plan to sell digital products', 'woocommerce' ); ?></option>
< option value = " both " < ? php selected ( $product_type , 'both' ); ?> ><?php esc_html_e( 'I plan to sell both', 'woocommerce' ); ?></option>
2017-09-05 19:46:50 +00:00
</ select >
</ div >
2017-09-06 16:48:13 +00:00
< ? php if ( 'unknown' === get_option ( 'woocommerce_allow_tracking' , 'unknown' ) ) : ?>
< div >
< input type = " checkbox " id = " wc_tracker_optin " name = " wc_tracker_optin " value = " yes " checked />
< label for = " wc_tracker_optin " >< ? php _e ( 'Allow WooCommerce to collect non-sensitive diagnostic data and usage information.' , 'woocommerce' ); ?> </label>
</ div >
< ? php endif ; ?>
2017-09-05 19:46:50 +00:00
< p class = " wc-setup-actions step " >
2017-09-05 20:31:42 +00:00
< input type = " submit " class = " button-primary button button-large button-next " value = " <?php esc_attr_e( " Let 's go!", ' woocommerce ' ); ?> " name="save_step" />
2017-09-05 19:46:50 +00:00
</ p >
2017-09-05 20:31:42 +00:00
< ? php wp_nonce_field ( 'wc-setup' ); ?>
2017-09-05 19:46:50 +00:00
</ form >
< ? php
}
2017-09-05 20:31:42 +00:00
/**
* Save initial store settings .
*/
public function wc_setup_store_setup_save () {
check_admin_referer ( 'wc-setup' );
$address = sanitize_text_field ( $_POST [ 'store_address' ] );
$address_2 = sanitize_text_field ( $_POST [ 'store_address_2' ] );
$city = sanitize_text_field ( $_POST [ 'store_city' ] );
2017-09-09 01:45:11 +00:00
$country_state = sanitize_text_field ( $_POST [ 'store_country_state' ] );
2017-09-05 20:31:42 +00:00
$postcode = sanitize_text_field ( $_POST [ 'store_postcode' ] );
$currency_code = sanitize_text_field ( $_POST [ 'currency_code' ] );
$product_type = sanitize_text_field ( $_POST [ 'product_type' ] );
$tracking = isset ( $_POST [ 'wc_tracker_optin' ] ) && ( 'yes' === sanitize_text_field ( $_POST [ 'wc_tracker_optin' ] ) );
update_option ( 'woocommerce_store_address' , $address );
update_option ( 'woocommerce_store_address_2' , $address_2 );
update_option ( 'woocommerce_store_city' , $city );
2017-09-09 01:45:11 +00:00
update_option ( 'woocommerce_default_country' , $country_state );
2017-09-05 20:31:42 +00:00
update_option ( 'woocommerce_store_postcode' , $postcode );
update_option ( 'woocommerce_currency' , $currency_code );
update_option ( 'woocommerce_product_type' , $product_type );
2017-09-11 02:21:57 +00:00
$locale_info = include ( WC () -> plugin_path () . '/i18n/locale-info.php' );
$country = WC () -> countries -> get_base_country ();
2017-09-17 02:35:51 +00:00
// Set currency formatting options based on chosen location and currency.
2017-09-11 02:21:57 +00:00
if (
isset ( $locale_info [ $country ] ) &&
$locale_info [ $country ][ 'currency_code' ] === $currency_code
) {
update_option ( 'woocommerce_currency_pos' , $locale_info [ $country ][ 'currency_pos' ] );
update_option ( 'woocommerce_price_decimal_sep' , $locale_info [ $country ][ 'decimal_sep' ] );
update_option ( 'woocommerce_price_num_decimals' , $locale_info [ $country ][ 'num_decimals' ] );
update_option ( 'woocommerce_price_thousand_sep' , $locale_info [ $country ][ 'thousand_sep' ] );
}
2017-09-05 20:31:42 +00:00
if ( $tracking ) {
update_option ( 'woocommerce_allow_tracking' , 'yes' );
WC_Tracker :: send_tracking_data ( true );
} else {
update_option ( 'woocommerce_allow_tracking' , 'no' );
}
WC_Install :: create_pages ();
wp_redirect ( esc_url_raw ( $this -> get_next_step_link () ) );
exit ;
}
2017-05-28 23:43:44 +00:00
/**
* Tout WooCommerce Services for North American stores .
*/
protected function wc_setup_wcs_tout () {
$base_location = wc_get_base_location ();
2017-05-29 18:52:13 +00:00
if ( false === $base_location [ 'country' ] ) {
$base_location = WC_Geolocation :: geolocate_ip ();
}
2017-06-14 10:24:45 +00:00
if ( ! in_array ( $base_location [ 'country' ], array ( 'US' , 'CA' ), true ) ) {
2017-05-31 11:00:10 +00:00
return ;
}
2017-06-14 10:24:45 +00:00
$default_content = array (
'title' => __ ( 'Enable WooCommerce Shipping (recommended)' , 'woocommerce' ),
'description' => __ ( 'Print labels and get discounted USPS shipping rates, right from your WooCommerce dashboard. Powered by WooCommerce Services.' , 'woocommerce' ),
);
switch ( $base_location [ 'country' ] ) {
case 'CA' :
$local_content = array (
'title' => __ ( 'Enable WooCommerce Shipping (recommended)' , 'woocommerce' ),
2017-06-27 20:00:48 +00:00
'description' => __ ( 'Display live rates from Canada Post at checkout to make shipping a breeze. Powered by WooCommerce Services.' , 'woocommerce' ),
2017-06-14 10:24:45 +00:00
);
break ;
default :
$local_content = array ();
}
$content = wp_parse_args ( $local_content , $default_content );
2017-05-31 11:00:10 +00:00
?>
< ul class = " wc-wizard-shipping-methods " >
< li class = " wc-wizard-shipping " >
< div class = " wc-wizard-shipping-enable " >
2017-05-31 16:19:41 +00:00
< input type = " checkbox " name = " woocommerce_install_services " class = " input-checkbox " value = " woo-services-enabled " checked />
2017-05-31 11:00:10 +00:00
< label >
2017-06-14 10:24:45 +00:00
< ? php echo esc_html ( $content [ 'title' ] ) ?>
2017-05-31 11:00:10 +00:00
</ label >
</ div >
< div class = " wc-wizard-shipping-description " >
< p >
2017-06-14 10:24:45 +00:00
< ? php echo esc_html ( $content [ 'description' ] ); ?>
2017-05-31 11:00:10 +00:00
</ p >
</ div >
</ li >
</ ul >
< ? php
2017-05-28 23:43:44 +00:00
}
2017-09-06 00:41:52 +00:00
/**
2017-09-06 04:00:51 +00:00
* Helper method to queue the background install of a plugin .
*
* @ param string $plugin_id Plugin id used for background install .
2017-09-06 05:22:58 +00:00
* @ param array $plugin_info Plugin info array containing at least main file and repo slug .
2017-09-06 00:41:52 +00:00
*/
2017-09-12 22:49:46 +00:00
protected function install_plugin ( $plugin_id , $plugin_info ) {
2017-09-06 04:00:51 +00:00
if ( ! empty ( $plugin_info [ 'file' ] ) && is_plugin_active ( $plugin_info [ 'file' ] ) ) {
return ;
}
2017-09-06 00:41:52 +00:00
2017-09-12 22:49:46 +00:00
wp_schedule_single_event ( time () + 10 , 'woocommerce_plugin_background_installer' , array ( $plugin_id , $plugin_info ) );
// WC_Install::background_installer( $plugin_id, $plugin_info );
2017-09-06 04:00:51 +00:00
}
2017-09-06 00:41:52 +00:00
2017-09-06 04:00:51 +00:00
/**
* Helper method to install Jetpack .
*/
2017-09-12 22:41:00 +00:00
protected function install_jetpack () {
2017-09-06 04:00:51 +00:00
$this -> install_plugin ( 'jetpack' , array (
'file' => 'jetpack/jetpack.php' ,
'name' => __ ( 'Jetpack' , 'woocommerce' ),
'repo-slug' => 'jetpack' ,
2017-09-12 22:41:00 +00:00
) );
2017-09-10 22:39:57 +00:00
2017-09-12 22:41:00 +00:00
update_option ( 'woocommerce_setup_queued_jetpack_install' , true );
2017-09-06 04:00:51 +00:00
}
/**
* Helper method to install WooCommerce Services and its Jetpack dependency .
*/
protected function install_woocommerce_services () {
$this -> install_jetpack ();
$this -> install_plugin ( 'woocommerce-services' , array (
'file' => 'woocommerce-services/woocommerce-services.php' ,
'name' => __ ( 'WooCommerce Services' , 'woocommerce' ),
'repo-slug' => 'woocommerce-services' ,
) );
2017-09-06 00:41:52 +00:00
}
2017-09-08 18:11:52 +00:00
/**
* Get the WCS shipping carrier for a given country code .
*
* Can also be used to determine if WCS supports a given country .
*
* @ param $country_code
* @ return bool | string Carrier name if supported , boolean False otherwise .
*/
protected function get_wcs_shipping_carrier ( $country_code ) {
switch ( $country_code ) {
case 'US' :
return 'USPS' ;
case 'CA' :
return 'Canada Post' ;
default :
return false ;
}
}
2017-09-10 16:43:40 +00:00
/**
* Get shipping methods based on country code .
*
* @ param $country_code
* @ return array
*/
protected function get_wizard_shipping_methods ( $country_code ) {
$shipping_methods = array (
'live_rates' => array (
'name' => __ ( 'Live Rates' , 'woocommerce' ),
'description' => __ ( 'Shipping rates updated in realtime. Powered by Jetpack.' , 'woocommerce' ),
),
'flat_rate' => array (
'name' => __ ( 'Flat Rate' , 'woocommerce' ),
'description' => __ ( 'Set a fixed price to cover shipping costs.' , 'woocommerce' ),
'settings' => array (
'cost' => array (
'type' => 'text' ,
'description' => __ ( 'What would you like to charge for flat rate shipping?' , 'woocommerce' ),
),
),
),
'free_shipping' => array (
'name' => __ ( 'Free Shipping' , 'woocommerce' ),
'description' => __ ( " Don't charge for shipping. " , 'woocommerce' ),
),
);
$live_rate_carrier = $this -> get_wcs_shipping_carrier ( $country_code );
2017-09-11 21:37:35 +00:00
if ( false === $live_rate_carrier || ! current_user_can ( 'install_plugins' ) ) {
2017-09-10 16:43:40 +00:00
unset ( $shipping_methods [ 'live_rates' ] );
}
return $shipping_methods ;
}
2017-09-08 18:11:52 +00:00
/**
* Render the available shipping methods for a given country code .
*
* @ param string $country_code
2017-09-10 16:43:40 +00:00
* @ param string $input_prefix
2017-09-08 18:11:52 +00:00
*/
2017-09-10 16:43:40 +00:00
protected function shipping_method_selection_form ( $country_code , $input_prefix ) {
2017-09-09 03:53:34 +00:00
$live_rate_carrier = $this -> get_wcs_shipping_carrier ( $country_code );
$selected = $live_rate_carrier ? 'live_rates' : 'flat_rate' ;
2017-09-10 16:43:40 +00:00
$shipping_methods = $this -> get_wizard_shipping_methods ( $country_code );
2017-09-08 18:11:52 +00:00
?>
2017-09-09 03:53:34 +00:00
< div class = " wc-wizard-shipping-method-select " >
2017-09-10 16:43:40 +00:00
< select id = " <?php echo esc_attr( " { $input_prefix }[ method ] " ); ?> " name = " <?php echo esc_attr( " { $input_prefix }[ method ] " ); ?> " class = " method wc-enhanced-select " >
< ? php foreach ( $shipping_methods as $method_id => $method ) : ?>
< option value = " <?php echo esc_attr( $method_id ); ?> " < ? php selected ( $selected , $method_id ); ?> >
< ? php echo esc_html ( $method [ 'name' ] ); ?>
2017-09-09 03:53:34 +00:00
</ option >
2017-09-10 16:43:40 +00:00
< ? php endforeach ; ?>
2017-09-08 18:11:52 +00:00
</ select >
2017-09-10 16:43:40 +00:00
2017-09-09 03:53:34 +00:00
< div class = " shipping-method-description " >
2017-09-10 16:43:40 +00:00
< ? php foreach ( $shipping_methods as $method_id => $method ) : ?>
< p class = " <?php echo esc_attr( $method_id ); ?> " < ? php if ( $method_id !== $selected ) echo 'style="display:none"' ; ?> >
< ? php echo esc_html ( $method [ 'description' ] ); ?>
2017-09-09 03:53:34 +00:00
</ p >
2017-09-10 16:43:40 +00:00
< ? php endforeach ; ?>
2017-09-09 03:53:34 +00:00
</ div >
2017-09-10 16:43:40 +00:00
2017-09-09 03:53:34 +00:00
< div class = " shipping-method-settings " >
2017-09-10 16:43:40 +00:00
< ? php foreach ( $shipping_methods as $method_id => $method ) : ?>
< ? php if ( empty ( $method [ 'settings' ] ) ) continue ; ?>
< div class = " <?php echo esc_attr( $method_id ); ?> " < ? php if ( $method_id !== $selected ) echo 'style="display:none"' ; ?> >
< ? php foreach ( $method [ 'settings' ] as $setting_id => $setting ) : ?>
< ? php $method_setting_id = " { $input_prefix } [ { $method_id } ][ { $setting_id } ] " ; ?>
< input type = " <?php echo esc_attr( $setting['type'] ); ?> " id = " <?php echo esc_attr( $method_setting_id ); ?> " name = " <?php echo esc_attr( $method_setting_id ); ?> " />
2017-09-09 03:53:34 +00:00
< p class = " description " >
2017-09-10 16:43:40 +00:00
< ? php echo esc_html ( $setting [ 'description' ] ); ?>
2017-09-09 03:53:34 +00:00
</ p >
2017-09-10 16:43:40 +00:00
< ? php endforeach ; ?>
2017-09-09 03:53:34 +00:00
</ div >
2017-09-10 16:43:40 +00:00
< ? php endforeach ; ?>
2017-09-09 03:53:34 +00:00
</ div >
2017-09-08 18:11:52 +00:00
</ div >
< ? php
}
2015-04-28 12:19:16 +00:00
/**
2017-05-29 18:51:30 +00:00
* Shipping .
2015-04-28 12:19:16 +00:00
*/
2017-05-29 18:51:30 +00:00
public function wc_setup_shipping () {
2017-05-30 21:11:11 +00:00
$dimension_unit = get_option ( 'woocommerce_dimension_unit' , false );
$weight_unit = get_option ( 'woocommerce_weight_unit' , false );
2017-09-08 03:54:40 +00:00
$country_code = WC () -> countries -> get_base_country ();
$country_name = WC () -> countries -> countries [ $country_code ];
2017-09-08 18:11:52 +00:00
$wcs_carrier = $this -> get_wcs_shipping_carrier ( $country_code );
2017-09-08 03:54:40 +00:00
2017-09-08 19:59:01 +00:00
// TODO: determine how to handle existing shipping zones (or choose not to)
2017-05-30 21:11:11 +00:00
if ( false === $dimension_unit || false === $weight_unit ) {
2017-09-08 03:54:40 +00:00
if ( 'US' === $country_code ) {
2017-05-30 21:11:11 +00:00
$dimension_unit = 'in' ;
2017-09-08 18:11:52 +00:00
$weight_unit = 'oz' ;
2017-05-30 21:11:11 +00:00
} else {
$dimension_unit = 'cm' ;
2017-09-08 18:11:52 +00:00
$weight_unit = 'kg' ;
2017-05-30 21:11:11 +00:00
}
}
2017-09-08 18:11:52 +00:00
if ( $wcs_carrier ) {
$intro_text = sprintf (
/* translators: %1$s: country name, %2$s: shipping carrier name */
2017-09-21 16:41:49 +00:00
__ ( " You're all set up to ship anywhere in %1 \$ s, and outside of it. We recommend using live rates to get accurate %2 \$ s shipping prices to cover the cost of order fulfillment. " , 'woocommerce' ),
2017-09-08 18:11:52 +00:00
$country_name ,
$wcs_carrier
2017-09-08 03:54:40 +00:00
);
} else {
2017-09-08 18:11:52 +00:00
$intro_text = sprintf (
/* translators: %s: country name */
2017-09-08 03:54:40 +00:00
__ ( " You can choose which countries you'll be shipping to and with which methods. We've started you up with shipping to %s and the rest of the world. " , 'woocommerce' ),
$country_name
);
}
2017-09-08 18:11:52 +00:00
?>
< h1 >< ? php esc_html_e ( 'Shipping' , 'woocommerce' ); ?> </h1>
< p >< ? php echo esc_html ( $intro_text ); ?> </p>
2015-04-28 12:19:16 +00:00
< form method = " post " >
2017-09-08 18:11:52 +00:00
< ul class = " wc-wizard-services shipping " >
< li class = " wc-wizard-service-item " >
< div class = " wc-wizard-service-name " >
< p >< ? php echo esc_html_e ( 'Shipping Zone' , 'woocommerce' ); ?> </p>
</ div >
< div class = " wc-wizard-service-description " >
< p >< ? php echo esc_html_e ( 'Shipping Method' , 'woocommerce' ); ?> </p>
</ div >
</ li >
< li class = " wc-wizard-service-item " >
< div class = " wc-wizard-service-name " >
< p >< ? php echo esc_html ( $country_name ); ?> </p>
</ div >
< div class = " wc-wizard-service-description " >
2017-09-10 16:43:40 +00:00
< ? php $this -> shipping_method_selection_form ( $country_code , 'shipping_zones[domestic]' ); ?>
2017-09-08 18:11:52 +00:00
</ div >
< div class = " wc-wizard-service-enable " >
< span class = " wc-wizard-service-toggle " >
2017-09-10 16:43:40 +00:00
< input id = " shipping_zones[domestic][enabled] " type = " checkbox " name = " shipping_zones[domestic][enabled] " value = " yes " checked = " checked " />
< label for = " shipping_zones[domestic][enabled] " >
2017-09-08 18:11:52 +00:00
</ span >
</ div >
</ li >
< li class = " wc-wizard-service-item " >
< div class = " wc-wizard-service-name " >
< p >< ? php echo esc_html_e ( 'Locations not covered by your other zones' , 'woocommerce' ); ?> </p>
</ div >
< div class = " wc-wizard-service-description " >
2017-09-10 16:43:40 +00:00
< ? php $this -> shipping_method_selection_form ( $country_code , 'shipping_zones[intl]' ); ?>
2017-09-08 18:11:52 +00:00
</ div >
< div class = " wc-wizard-service-enable " >
< span class = " wc-wizard-service-toggle " >
2017-09-10 16:43:40 +00:00
< input id = " shipping_zones[intl][enabled] " type = " checkbox " name = " shipping_zones[intl][enabled] " value = " yes " checked = " checked " />
< label for = " shipping_zones[intl][enabled] " >
2017-09-08 18:11:52 +00:00
</ span >
</ div >
</ li >
</ ul >
< div >
2017-09-21 16:41:49 +00:00
< label for = " weight_unit " >
< span class = " wc-wizard-setting-name " >
< ? php esc_html_e ( 'Weight unit' , 'woocommerce' ); ?>
</ span >
< span class = " wc-wizard-setting-description " >
< ? php echo esc_html_x ( '— used to calculate shipping rates.' , 'Weight unit setting description' , 'woocommerce' ); ?>
</ span >
</ label >
2017-09-08 18:11:52 +00:00
< select id = " weight_unit " name = " weight_unit " class = " wc-enhanced-select " style = " width:100% " >
< option value = " kg " < ? php selected ( $weight_unit , 'kg' ); ?> ><?php esc_html_e( 'kg', 'woocommerce' ); ?></option>
< option value = " g " < ? php selected ( $weight_unit , 'g' ); ?> ><?php esc_html_e( 'g', 'woocommerce' ); ?></option>
< option value = " lbs " < ? php selected ( $weight_unit , 'lbs' ); ?> ><?php esc_html_e( 'lbs', 'woocommerce' ); ?></option>
< option value = " oz " < ? php selected ( $weight_unit , 'oz' ); ?> ><?php esc_html_e( 'oz', 'woocommerce' ); ?></option>
</ select >
</ div >
< div >
2017-09-21 16:41:49 +00:00
< label for = " dimension_unit " >
< span class = " wc-wizard-setting-name " >
< ? php esc_html_e ( 'Dimension unit' , 'woocommerce' ); ?>
</ span >
< span class = " wc-wizard-setting-description " >
< ? php echo esc_html_x ( '— used to select accurate packages.' , 'Dimension unit setting description' , 'woocommerce' ); ?>
</ span >
</ label >
2017-09-08 18:11:52 +00:00
< select id = " dimension_unit " name = " dimension_unit " class = " wc-enhanced-select " style = " width:100% " >
< option value = " m " < ? php selected ( $dimension_unit , 'm' ); ?> ><?php esc_html_e( 'm', 'woocommerce' ); ?></option>
< option value = " cm " < ? php selected ( $dimension_unit , 'cm' ); ?> ><?php esc_html_e( 'cm', 'woocommerce' ); ?></option>
< option value = " mm " < ? php selected ( $dimension_unit , 'mm' ); ?> ><?php esc_html_e( 'mm', 'woocommerce' ); ?></option>
< option value = " in " < ? php selected ( $dimension_unit , 'in' ); ?> ><?php esc_html_e( 'in', 'woocommerce' ); ?></option>
< option value = " yd " < ? php selected ( $dimension_unit , 'yd' ); ?> ><?php esc_html_e( 'yd', 'woocommerce' ); ?></option>
</ select >
</ div >
2017-05-31 11:00:10 +00:00
2017-05-29 00:10:40 +00:00
< p class = " wc-setup-actions step " >
< input type = " submit " class = " button-primary button button-large button-next " value = " <?php esc_attr_e( 'Continue', 'woocommerce' ); ?> " name = " save_step " />
< ? php wp_nonce_field ( 'wc-setup' ); ?>
</ p >
2015-04-28 12:19:16 +00:00
</ form >
< ? php
}
/**
2017-05-29 18:51:30 +00:00
* Save shipping options .
2015-04-28 12:19:16 +00:00
*/
2017-05-29 18:51:30 +00:00
public function wc_setup_shipping_save () {
2015-06-17 12:35:09 +00:00
check_admin_referer ( 'wc-setup' );
2017-09-10 16:45:43 +00:00
$setup_domestic = isset ( $_POST [ 'shipping_zones' ][ 'domestic' ][ 'enabled' ] ) && ( 'yes' === $_POST [ 'shipping_zones' ][ 'domestic' ][ 'enabled' ] );
$domestic_method = sanitize_text_field ( $_POST [ 'shipping_zones' ][ 'domestic' ][ 'method' ] );
$setup_intl = isset ( $_POST [ 'shipping_zones' ][ 'intl' ][ 'enabled' ] ) && ( 'yes' === $_POST [ 'shipping_zones' ][ 'intl' ][ 'enabled' ] );
$intl_method = sanitize_text_field ( $_POST [ 'shipping_zones' ][ 'intl' ][ 'method' ] );
2017-05-29 18:07:47 +00:00
$weight_unit = sanitize_text_field ( $_POST [ 'weight_unit' ] );
$dimension_unit = sanitize_text_field ( $_POST [ 'dimension_unit' ] );
2017-09-08 19:59:01 +00:00
$existing_zones = WC_Shipping_Zones :: get_zones ();
2016-01-06 14:21:13 +00:00
2017-05-31 11:02:46 +00:00
update_option ( 'woocommerce_ship_to_countries' , '' );
update_option ( 'woocommerce_weight_unit' , $weight_unit );
update_option ( 'woocommerce_dimension_unit' , $dimension_unit );
2017-09-17 02:35:51 +00:00
// For now, limit this setup to the first run.
2017-09-11 21:28:53 +00:00
if ( empty ( $existing_zones ) ) {
wp_redirect ( esc_url_raw ( $this -> get_next_step_link () ) );
exit ;
}
2017-09-17 02:35:51 +00:00
// Install WooCommerce Services if live rates were selected.
2017-09-08 19:59:01 +00:00
if (
( $setup_domestic && 'live_rates' === $domestic_method ) ||
( $setup_intl && 'live_rates' === $intl_method )
) {
$this -> install_woocommerce_services ();
}
2017-05-31 11:02:46 +00:00
/*
2017-09-08 19:59:01 +00:00
* If enabled , create a shipping zone containing the country the
* store is located in , with the selected method preconfigured .
2017-05-31 11:02:46 +00:00
*/
2017-09-11 21:28:53 +00:00
if ( $setup_domestic ) {
2017-09-08 19:59:01 +00:00
$country = WC () -> countries -> get_base_country ();
2017-05-31 11:02:46 +00:00
$zone = new WC_Shipping_Zone ( null );
$zone -> set_zone_order ( 0 );
2017-09-08 19:59:01 +00:00
$zone -> add_location ( $country , 'country' );
if ( 'live_rates' === $domestic_method ) {
// Signal WooCommerce Services to setup the domestic zone.
update_option ( 'woocommerce_setup_domestic_live_rates_zone' , true , 'no' );
} else {
2017-09-10 16:45:43 +00:00
$instance_id = $zone -> add_shipping_method ( $domestic_method );
2017-09-08 19:59:01 +00:00
}
2017-05-31 11:02:46 +00:00
$zone -> save ();
2017-09-10 16:45:43 +00:00
2017-09-17 02:35:51 +00:00
// Save chosen shipping method settings (using REST controller for convenience).
2017-09-10 22:35:19 +00:00
if ( isset ( $instance_id ) && ! empty ( $_POST [ 'shipping_zones' ][ 'domestic' ][ $domestic_method ] ) ) {
2017-09-10 16:45:43 +00:00
$method_controller = new WC_REST_Shipping_Zone_Methods_Controller ();
$method_controller -> update_item ( array (
'zone_id' => $zone -> get_id (),
'instance_id' => $instance_id ,
'settings' => $_POST [ 'shipping_zones' ][ 'domestic' ][ $domestic_method ],
) );
}
2017-05-31 11:02:46 +00:00
}
2017-05-29 00:11:51 +00:00
2017-09-08 19:59:01 +00:00
// If enabled, set the selected method for the "rest of world" zone.
2017-09-11 21:28:53 +00:00
if ( $setup_intl ) {
2017-09-08 19:59:01 +00:00
if ( 'live_rates' === $intl_method ) {
// Signal WooCommerce Services to setup the international zone.
update_option ( 'woocommerce_setup_intl_live_rates_zone' , true , 'no' );
} else {
2017-09-10 16:45:43 +00:00
$zone = new WC_Shipping_Zone ( 0 );
$instance_id = $zone -> add_shipping_method ( $intl_method );
2017-09-08 19:59:01 +00:00
$zone -> save ();
}
2017-09-10 16:45:43 +00:00
2017-09-17 02:35:51 +00:00
// Save chosen shipping method settings (using REST controller for convenience).
2017-09-10 22:35:19 +00:00
if ( isset ( $instance_id ) && ! empty ( $_POST [ 'shipping_zones' ][ 'intl' ][ $intl_method ] ) ) {
2017-09-10 16:45:43 +00:00
$method_controller = new WC_REST_Shipping_Zone_Methods_Controller ();
$method_controller -> update_item ( array (
'zone_id' => $zone -> get_id (),
'instance_id' => $instance_id ,
'settings' => $_POST [ 'shipping_zones' ][ 'intl' ][ $intl_method ],
) );
}
2017-09-08 19:59:01 +00:00
}
2017-09-17 02:35:51 +00:00
// Notify the user that no shipping methods are configured.
2017-09-11 21:28:53 +00:00
if ( ! $setup_domestic && ! $setup_intl ) {
2017-05-31 11:03:16 +00:00
WC_Admin_Notices :: add_notice ( 'no_shipping_methods' );
2016-01-06 14:21:13 +00:00
}
2015-04-28 12:19:16 +00:00
2017-03-31 17:32:19 +00:00
wp_redirect ( esc_url_raw ( $this -> get_next_step_link () ) );
2015-04-28 12:19:16 +00:00
exit ;
}
2017-09-05 22:55:47 +00:00
/**
* https :// stripe . com / global
*/
protected function is_stripe_supported_country ( $country_code ) {
$stripe_supported_countries = array (
2017-09-17 00:00:49 +00:00
'AU' ,
'AT' ,
'BE' ,
'CA' ,
'DK' ,
'FI' ,
'FR' ,
'DE' ,
'HK' ,
'IE' ,
'JP' ,
'LU' ,
'NL' ,
'NZ' ,
'NO' ,
'SG' ,
'ES' ,
'SE' ,
'CH' ,
'GB' ,
'US' ,
2017-09-05 22:55:47 +00:00
);
2017-09-17 00:00:49 +00:00
return in_array ( $country_code , $stripe_supported_countries );
2017-09-05 22:55:47 +00:00
}
2017-09-17 00:13:26 +00:00
/**
* Helper method to retrieve the current user ' s email address .
*
* @ return string Email address
*/
protected function get_current_user_email () {
$current_user = wp_get_current_user ();
$user_email = $current_user -> user_email ;
return $user_email ;
}
2016-04-01 16:30:04 +00:00
/**
2017-09-05 23:06:04 +00:00
* Simple array of " in cart " gateways to show in wizard .
2016-04-01 16:30:04 +00:00
* @ return array
*/
2017-09-05 23:06:04 +00:00
protected function get_wizard_in_cart_payment_gateways () {
2017-09-05 22:55:47 +00:00
$country = WC () -> countries -> get_base_country ();
2017-09-17 00:13:26 +00:00
$user_email = $this -> get_current_user_email ();
2017-09-05 22:55:47 +00:00
2017-09-17 01:31:13 +00:00
$stripe_description = '<p>' . sprintf (
2017-09-21 16:41:49 +00:00
__ ( 'Accept all major debit and credit cards from customers in 135+ countries on your site. <a href="%s" target="_blank">Learn more</a>.' , 'woocommerce' ),
2017-09-17 01:31:13 +00:00
'https://wordpress.org/plugins/woocommerce-gateway-stripe/'
) . '</p>' ;
2017-09-21 16:41:49 +00:00
$paypal_bt_description = '<p>' . sprintf (
__ ( 'Safe and secure payments using credit cards or your customer\'s PayPal account. <a href="%s" target="_blank">Learn more</a>.' , 'woocommerce' ),
'https://wordpress.org/plugins/woocommerce-gateway-paypal-powered-by-braintree/'
) . '</p>' ;
$paypal_ec_description = '<p>' . sprintf (
__ ( 'Safe and secure payments using credit cards or your customer\'s PayPal account. <a href="%s" target="_blank">Learn more</a>.' , 'woocommerce' ),
'https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/'
) . '</p>' ;
2017-09-17 01:31:13 +00:00
2016-04-01 16:30:04 +00:00
$gateways = array (
2017-09-05 22:45:39 +00:00
'stripe' => array (
'name' => __ ( 'Stripe' , 'woocommerce' ),
'image' => WC () -> plugin_url () . '/assets/images/stripe.png' ,
2017-09-21 16:41:49 +00:00
'description' => $stripe_description ,
2017-09-05 22:45:39 +00:00
'repo-slug' => 'woocommerce-gateway-stripe' ,
'settings' => array (
'email' => array (
'label' => __ ( 'Stripe email address' , 'woocommerce' ),
'type' => 'email' ,
2017-09-17 00:13:26 +00:00
'value' => $user_email ,
2017-09-05 22:45:39 +00:00
'placeholder' => __ ( 'Stripe email address' , 'woocommerce' ),
),
),
2017-09-07 23:11:26 +00:00
'featured' => true ,
2017-09-05 22:45:39 +00:00
),
2017-08-25 19:06:06 +00:00
'braintree_paypal' => array (
2016-04-01 16:30:04 +00:00
'name' => __ ( 'PayPal by Braintree' , 'woocommerce' ),
'image' => WC () -> plugin_url () . '/assets/images/paypal-braintree.png' ,
2017-09-21 16:41:49 +00:00
'description' => $paypal_bt_description ,
2016-04-01 16:30:04 +00:00
'repo-slug' => 'woocommerce-gateway-paypal-powered-by-braintree' ,
),
2017-08-25 19:06:06 +00:00
'ppec_paypal' => array (
2016-04-01 16:30:04 +00:00
'name' => __ ( 'PayPal Express Checkout' , 'woocommerce' ),
2016-04-19 11:04:52 +00:00
'image' => WC () -> plugin_url () . '/assets/images/paypal.png' ,
2017-09-21 16:41:49 +00:00
'description' => $paypal_ec_description ,
2016-04-01 16:30:04 +00:00
'repo-slug' => 'woocommerce-gateway-paypal-express-checkout' ,
),
'paypal' => array (
'name' => __ ( 'PayPal Standard' , 'woocommerce' ),
'description' => __ ( 'Accept payments via PayPal using account balance or credit card.' , 'woocommerce' ),
'image' => '' ,
'settings' => array (
'email' => array (
'label' => __ ( 'PayPal email address' , 'woocommerce' ),
'type' => 'email' ,
2017-09-17 00:13:26 +00:00
'value' => $user_email ,
2016-04-01 16:30:04 +00:00
'placeholder' => __ ( 'PayPal email address' , 'woocommerce' ),
),
),
),
2017-09-05 23:06:04 +00:00
);
2017-09-17 01:08:47 +00:00
if ( ! $this -> is_stripe_supported_country ( $country ) ) {
unset ( $gateways [ 'stripe' ] );
}
2017-09-05 23:06:04 +00:00
if ( 'US' === $country ) {
unset ( $gateways [ 'ppec_paypal' ] );
} else {
unset ( $gateways [ 'braintree_paypal' ] );
}
if ( ! current_user_can ( 'install_plugins' ) ) {
unset ( $gateways [ 'braintree_paypal' ] );
unset ( $gateways [ 'ppec_paypal' ] );
unset ( $gateways [ 'stripe' ] );
}
return $gateways ;
}
/**
* Simple array of " manual " gateways to show in wizard .
* @ return array
*/
protected function get_wizard_manual_payment_gateways () {
$gateways = array (
2016-04-01 16:30:04 +00:00
'cheque' => array (
2016-10-12 10:16:30 +00:00
'name' => _x ( 'Check payments' , 'Check payment method' , 'woocommerce' ),
2016-06-14 14:34:28 +00:00
'description' => __ ( 'A simple offline gateway that lets you accept a check as method of payment.' , 'woocommerce' ),
2016-04-01 16:30:04 +00:00
'image' => '' ,
'class' => '' ,
),
'bacs' => array (
2016-10-12 10:16:30 +00:00
'name' => __ ( 'Bank transfer (BACS) payments' , 'woocommerce' ),
2016-07-26 12:50:31 +00:00
'description' => __ ( 'A simple offline gateway that lets you accept BACS payment.' , 'woocommerce' ),
2016-04-01 16:30:04 +00:00
'image' => '' ,
'class' => '' ,
),
'cod' => array (
2016-10-12 10:16:30 +00:00
'name' => __ ( 'Cash on delivery' , 'woocommerce' ),
2016-07-26 12:50:31 +00:00
'description' => __ ( 'A simple offline gateway that lets you accept cash on delivery.' , 'woocommerce' ),
2016-04-01 16:30:04 +00:00
'image' => '' ,
'class' => '' ,
2016-08-27 01:46:45 +00:00
),
2016-04-01 16:30:04 +00:00
);
return $gateways ;
}
2017-09-07 23:03:16 +00:00
/**
* Display service item in list .
*/
public function display_service_item ( $item_id , $item_info ) {
$enabled = isset ( $item_info [ 'enabled' ] ) && $item_info [ 'enabled' ];
?>
< li class = " wc-wizard-service-item " >
< div class = " wc-wizard-service-name " >
2017-09-08 16:25:45 +00:00
< ? php if ( ! empty ( $item_info [ 'image' ] ) ) : ?>
2017-09-07 23:03:16 +00:00
< img src = " <?php echo esc_attr( $item_info['image'] ); ?> " alt = " <?php echo esc_attr( $item_info['name'] ); ?> " />
< ? php else : ?>
< p >< ? php echo esc_html ( $item_info [ 'name' ] ); ?> </p>
< ? php endif ; ?>
</ div >
< div class = " wc-wizard-service-description " >
< ? php echo wp_kses_post ( wpautop ( $item_info [ 'description' ] ) ); ?>
< ? php if ( ! empty ( $item_info [ 'settings' ] ) ) : ?>
2017-09-17 00:57:17 +00:00
< div class = " wc-wizard-service-settings " >
2017-09-07 23:03:16 +00:00
< ? php foreach ( $item_info [ 'settings' ] as $setting_id => $setting ) : ?>
< label for = " <?php echo esc_attr( $item_id ); ?>_<?php echo esc_attr( $setting_id ); ?> " >< ? php echo esc_html ( $setting [ 'label' ] ); ?> :</label>
< input
type = " <?php echo esc_attr( $setting['type'] ); ?> "
id = " <?php echo esc_attr( $item_id ); ?>_<?php echo esc_attr( $setting_id ); ?> "
name = " <?php echo esc_attr( $item_id ); ?>_<?php echo esc_attr( $setting_id ); ?> "
value = " <?php echo esc_attr( $setting['value'] ); ?> "
placeholder = " <?php echo esc_attr( $setting['placeholder'] ); ?> "
/>
< ? php endforeach ; ?>
</ div >
< ? php endif ; ?>
</ div >
< div class = " wc-wizard-service-enable " >
< span class = " wc-wizard-service-toggle <?php echo esc_attr( $enabled ? '' : 'disabled' ); ?> " >
< input id = " wc-wizard-service-<?php echo esc_attr( $item_id ); ?> " type = " checkbox " name = " wc-wizard-service-<?php echo esc_attr( $item_id ); ?>-enabled " value = " yes " < ? php checked ( $enabled ); ?> />
< label for = " wc-wizard-service-<?php echo esc_attr( $item_id ); ?> " >
</ span >
</ div >
</ li >
< ? php
}
2017-09-07 23:11:26 +00:00
public function is_featured_service ( $service ) {
2017-09-17 02:32:05 +00:00
return ! empty ( $service [ 'featured' ] );
2017-09-07 23:11:26 +00:00
}
public function is_not_featured_service ( $service ) {
return ! $this -> is_featured_service ( $service );
}
2015-06-08 15:34:13 +00:00
/**
2017-09-21 16:41:49 +00:00
* Payment Step .
2015-06-08 15:34:13 +00:00
*/
2017-09-21 16:41:49 +00:00
public function wc_setup_payment () {
2017-09-07 23:11:26 +00:00
$featured_gateways = array_filter ( $this -> get_wizard_in_cart_payment_gateways (), array ( $this , 'is_featured_service' ) );
$in_cart_gateways = array_filter ( $this -> get_wizard_in_cart_payment_gateways (), array ( $this , 'is_not_featured_service' ) );
$manual_gateways = $this -> get_wizard_manual_payment_gateways ();
2015-06-08 15:34:13 +00:00
?>
2017-09-21 16:41:49 +00:00
< h1 >< ? php esc_html_e ( 'Payment' , 'woocommerce' ); ?> </h1>
2016-04-01 16:30:04 +00:00
< form method = " post " class = " wc-wizard-payment-gateway-form " >
2017-09-17 01:08:47 +00:00
< p >
< ? php printf ( __ (
2017-09-21 16:41:49 +00:00
'WooCommerce can accept both online and offline payments. <a href="%1$s" target="_blank">Additional payment methods</a> can be installed later.' , 'woocommerce' ),
esc_url ( admin_url ( 'admin.php?page=wc-addons&view=payment-gateways' ) )
2017-09-17 01:08:47 +00:00
); ?>
</ p >
< ? php if ( $featured_gateways ) : ?>
2017-09-07 23:11:26 +00:00
< ul class = " wc-wizard-services featured " >
< ? php foreach ( $featured_gateways as $gateway_id => $gateway ) :
$this -> display_service_item ( $gateway_id , $gateway );
endforeach ; ?>
</ ul >
2017-09-17 01:08:47 +00:00
< ? php endif ; ?>
< ? php if ( $in_cart_gateways ) : ?>
2017-09-07 23:03:16 +00:00
< ul class = " wc-wizard-services in-cart " >
2017-09-08 03:59:17 +00:00
< ? php foreach ( $in_cart_gateways as $gateway_id => $gateway ) :
2017-09-07 23:03:16 +00:00
$this -> display_service_item ( $gateway_id , $gateway );
2017-09-08 03:59:17 +00:00
endforeach ; ?>
2016-04-01 16:30:04 +00:00
</ ul >
2017-09-17 01:08:47 +00:00
< ? php endif ; ?>
2017-09-07 23:03:16 +00:00
< ul class = " wc-wizard-services manual " >
2017-09-07 23:24:49 +00:00
< li class = " wc-wizard-services-list-toggle " >
2017-09-16 23:49:03 +00:00
< div class = " wc-wizard-service-name " >
2017-09-17 01:08:47 +00:00
< ? php esc_html_e ( 'Offline Payments' , 'woocommerce' ); ?>
2017-09-16 23:49:03 +00:00
</ div >
2017-09-07 23:24:49 +00:00
< div class = " wc-wizard-service-description " >
2017-09-21 16:41:49 +00:00
< ? php esc_html_e ( 'Collect payments from customers offline.' , 'woocommerce' ); ?>
2017-09-07 23:24:49 +00:00
</ div >
< div class = " wc-wizard-service-enable " >
< input class = " wc-wizard-service-list-toggle " id = " wc-wizard-service-list-toggle " type = " checkbox " >
< label for = " wc-wizard-service-list-toggle " ></ label >
</ div >
</ li >
2017-09-08 03:59:17 +00:00
< ? php foreach ( $manual_gateways as $gateway_id => $gateway ) :
2017-09-07 23:03:16 +00:00
$this -> display_service_item ( $gateway_id , $gateway );
2017-09-08 03:59:17 +00:00
endforeach ; ?>
2017-09-05 23:06:04 +00:00
</ ul >
2015-06-08 15:34:13 +00:00
< p class = " wc-setup-actions step " >
2015-08-21 18:12:36 +00:00
< input type = " submit " class = " button-primary button button-large button-next " value = " <?php esc_attr_e( 'Continue', 'woocommerce' ); ?> " name = " save_step " />
2015-06-17 12:35:09 +00:00
< ? php wp_nonce_field ( 'wc-setup' ); ?>
2015-06-08 15:34:13 +00:00
</ p >
</ form >
< ? php
}
/**
2017-09-21 16:41:49 +00:00
* Payment Step save .
2015-06-08 15:34:13 +00:00
*/
2017-09-21 16:41:49 +00:00
public function wc_setup_payment_save () {
2015-06-17 12:35:09 +00:00
check_admin_referer ( 'wc-setup' );
2017-09-17 02:35:51 +00:00
// Install WooCommerce Services with Stripe to enable deferred account creation.
2017-09-10 22:36:25 +00:00
if ( ! empty ( $_POST [ 'wc-wizard-service-stripe-enabled' ] ) ) {
$this -> install_woocommerce_services ();
}
2017-09-05 23:06:04 +00:00
$gateways = $this -> get_wizard_in_cart_payment_gateways ();
2016-04-01 16:30:04 +00:00
foreach ( $gateways as $gateway_id => $gateway ) {
// If repo-slug is defined, download and install plugin from .org.
2017-09-07 23:03:16 +00:00
if ( ! empty ( $gateway [ 'repo-slug' ] ) && ! empty ( $_POST [ 'wc-wizard-service-' . $gateway_id . '-enabled' ] ) ) {
2017-09-06 04:00:51 +00:00
$this -> install_plugin ( $gateway_id , $gateway );
2016-04-01 16:30:04 +00:00
}
$settings_key = 'woocommerce_' . $gateway_id . '_settings' ;
$settings = array_filter ( ( array ) get_option ( $settings_key , array () ) );
2017-09-07 23:03:16 +00:00
$settings [ 'enabled' ] = ! empty ( $_POST [ 'wc-wizard-service-' . $gateway_id . '-enabled' ] ) ? 'yes' : 'no' ;
2015-06-08 15:34:13 +00:00
2016-04-01 16:30:04 +00:00
if ( ! empty ( $gateway [ 'settings' ] ) ) {
foreach ( $gateway [ 'settings' ] as $setting_id => $setting ) {
$settings [ $setting_id ] = wc_clean ( $_POST [ $gateway_id . '_' . $setting_id ] );
}
}
update_option ( $settings_key , $settings );
}
2015-06-08 15:34:13 +00:00
2017-03-31 17:32:19 +00:00
wp_redirect ( esc_url_raw ( $this -> get_next_step_link () ) );
2015-06-08 15:34:13 +00:00
exit ;
}
2017-09-08 20:57:50 +00:00
/**
* Extras .
*/
public function wc_setup_extras () {
?>
2017-09-21 21:34:44 +00:00
< h1 >< ? php esc_html_e ( 'Recommended Extras' , 'woocommerce' ); ?> </h1>
2017-09-21 16:41:49 +00:00
< p >< ? php esc_html_e ( 'Make the most of your store.' , 'woocommerce' ); ?> </p>
2017-09-08 20:57:50 +00:00
< form method = " post " >
< ? php if ( $this -> should_show_theme_extra () ) : ?>
< ul class = " wc-wizard-services featured " >
< li class = " wc-wizard-service-item " >
< div class = " wc-wizard-service-description " >
2017-09-21 16:41:49 +00:00
< h3 >< ? php esc_html_e ( 'Storefront Theme' , 'woocommerce' ); ?> </h3>
2017-09-08 20:57:50 +00:00
< p >
2017-09-21 16:41:49 +00:00
< ? php esc_html_e ( 'Your theme is not compatible with WooCommerce. We recommend you switch to Storefront, a free WordPress theme built and maintained by the makers of WooCommerce. If toggled on, Storefront will be installed and activated for you.' , 'woocommerce' ); ?>
</ p >
< p class = " wc-wizard-service-learn-more " >
< a href = " <?php echo esc_url( 'https://woocommerce.com/storefront/' ); ?> " target = " _blank " >
< ? php esc_html_e ( 'Learn more about Storefront' , 'woocommerce' ); ?>
</ a >
2017-09-08 20:57:50 +00:00
</ p >
</ div >
< div class = " wc-wizard-service-enable " >
< span class = " wc-wizard-service-toggle " >
< input id = " setup_storefront_theme " type = " checkbox " name = " setup_storefront_theme " value = " yes " checked = " checked " />
< label for = " setup_storefront_theme " >
</ span >
</ div >
</ li >
</ ul >
< ? php endif ; ?>
2017-09-11 21:37:35 +00:00
< ? php if ( $this -> should_show_automated_tax_extra () ) : ?>
2017-09-08 20:57:50 +00:00
< ul class = " wc-wizard-services featured " >
< li class = " wc-wizard-service-item " >
< div class = " wc-wizard-service-description " >
< h3 >< ? php esc_html_e ( 'Automated Taxes' , 'woocommerce' ); ?> </h3>
< p >
< ? php esc_html_e ( 'We’ ll automatically calculate and charge the correct rate of tax for each time a customer checks out.' , 'woocommerce' ); ?>
</ p >
</ div >
< div class = " wc-wizard-service-enable " >
< span class = " wc-wizard-service-toggle " >
< input id = " setup_automated_taxes " type = " checkbox " name = " setup_automated_taxes " value = " yes " checked = " checked " />
< label for = " setup_automated_taxes " >
</ span >
</ div >
</ li >
</ ul >
< ? php endif ; ?>
< p class = " wc-setup-actions step " >
< input type = " submit " class = " button-primary button button-large button-next " value = " <?php esc_attr_e( 'Continue', 'woocommerce' ); ?> " name = " save_step " />
< ? php wp_nonce_field ( 'wc-setup' ); ?>
</ p >
</ form >
< ? php
}
2017-09-08 21:05:39 +00:00
/**
* Extras step save .
*/
public function wc_setup_extras_save () {
check_admin_referer ( 'wc-setup' );
$setup_automated_tax = isset ( $_POST [ 'setup_automated_taxes' ] ) && 'yes' === $_POST [ 'setup_automated_taxes' ];
$install_storefront = isset ( $_POST [ 'setup_storefront_theme' ] ) && 'yes' === $_POST [ 'setup_storefront_theme' ];
if ( $setup_automated_tax ) {
2017-09-10 14:51:40 +00:00
update_option ( 'woocommerce_calc_taxes' , 'yes' );
2017-09-08 21:05:39 +00:00
$this -> install_woocommerce_services ();
// Signal WooCommerce Services to setup automated taxes.
update_option ( 'woocommerce_setup_automated_taxes' , true );
}
if ( $install_storefront ) {
wp_schedule_single_event ( time () + 1 , 'woocommerce_theme_background_installer' , array ( 'storefront' ) );
}
wp_redirect ( esc_url_raw ( $this -> get_next_step_link () ) );
2017-05-17 16:42:18 +00:00
exit ;
}
2017-09-06 05:24:18 +00:00
/**
* Go to the next step if Jetpack was connected .
*/
protected function wc_setup_activate_actions () {
if (
isset ( $_GET [ 'from' ] ) &&
'wpcom' === $_GET [ 'from' ] &&
class_exists ( 'Jetpack' ) &&
Jetpack :: is_active ()
) {
wp_redirect ( esc_url_raw ( remove_query_arg ( 'from' , $this -> get_next_step_link () ) ) );
exit ;
}
}
2017-09-05 23:50:56 +00:00
/**
* Activate step .
*/
public function wc_setup_activate () {
2017-09-06 05:24:18 +00:00
$this -> wc_setup_activate_actions ();
2017-09-13 00:49:28 +00:00
2017-09-16 23:39:57 +00:00
$description = false ;
2017-09-13 00:49:28 +00:00
$stripe_settings = get_option ( 'woocommerce_stripe_settings' , false );
2017-09-16 23:39:57 +00:00
$stripe_enabled = $stripe_settings && ! empty ( $stripe_settings [ 'email' ] );
$taxes_enabled = ( bool ) get_option ( 'woocommerce_setup_automated_taxes' , false );
$domestic_rates = ( bool ) get_option ( 'woocommerce_setup_domestic_live_rates_zone' , false );
$intl_rates = ( bool ) get_option ( 'woocommerce_setup_intl_live_rates_zone' , false );
$rates_enabled = $domestic_rates || $intl_rates ;
2017-09-13 17:24:27 +00:00
if ( $stripe_enabled && $taxes_enabled && $rates_enabled ) {
2017-09-21 16:41:49 +00:00
$description = __ ( 'Your store is almost ready! To activate services like Stripe payments, automated taxes, live rates and discounted shipping labels, just connect with Jetpack.' , 'woocommerce' );
2017-09-13 17:24:27 +00:00
} else if ( $stripe_enabled && $taxes_enabled ) {
2017-09-21 16:41:49 +00:00
$description = __ ( 'Your store is almost ready! To activate services like Stripe payments and automated taxes, just connect with Jetpack.' , 'woocommerce' );
2017-09-13 17:24:27 +00:00
} else if ( $stripe_enabled && $rates_enabled ) {
2017-09-21 16:41:49 +00:00
$description = __ ( 'Your store is almost ready! To activate services like Stripe payments, live rates and discounted shipping labels, just connect with Jetpack.' , 'woocommerce' );
2017-09-13 17:24:27 +00:00
} else if ( $stripe_enabled ) {
2017-09-21 16:41:49 +00:00
$description = __ ( 'Your store is almost ready! To activate services like Stripe payments, just connect with Jetpack.' , 'woocommerce' );
2017-09-13 17:24:27 +00:00
} else if ( $taxes_enabled && $rates_enabled ) {
2017-09-21 16:41:49 +00:00
$description = __ ( 'Your store is almost ready! To activate services like automated taxes, live rates and discounted shipping labels, just connect with Jetpack.' , 'woocommerce' );
2017-09-13 17:24:27 +00:00
} else if ( $taxes_enabled ) {
2017-09-21 16:41:49 +00:00
$description = __ ( 'Your store is almost ready! To activate services like automated taxes, just connect with Jetpack.' , 'woocommerce' );
2017-09-13 17:24:27 +00:00
} else if ( $rates_enabled ) {
2017-09-21 16:41:49 +00:00
$description = __ ( 'Your store is almost ready! To activate services like live rates and discounted shipping labels, just connect with Jetpack.' , 'woocommerce' );
2017-09-13 00:49:28 +00:00
}
2017-09-05 23:50:56 +00:00
?>
2017-09-10 22:48:38 +00:00
< form method = " post " class = " activate-jetpack " >
2017-09-05 23:50:56 +00:00
< h1 >< ? php esc_html_e ( 'Connect your store to Jetpack' , 'woocommerce' ); ?> </h1>
2017-09-16 23:39:57 +00:00
< ? php if ( $description ) : ?>
< p >< ? php echo esc_html ( $description ); ?> </p>
< ? php endif ; ?>
2017-09-08 22:02:25 +00:00
< div >
< img src = " <?php echo esc_url( WC()->plugin_url() . '/assets/images/jetpack-green-logo.svg' ); ?> " alt = " Jetpack " />
2017-09-21 16:41:49 +00:00
< input type = " submit " class = " button-primary button button-large button-jetpack-connect " value = " <?php esc_attr_e( 'Connect with Jetpack', 'woocommerce' ); ?> " />
2017-09-10 22:48:38 +00:00
< input type = " hidden " name = " save_step " value = " activate " />
2017-09-21 16:41:49 +00:00
< h3 >< ? php esc_html_e ( " Bonus reasons you'll love Jetpack " , 'woocommerce' ); ?> </h3>
2017-09-08 22:02:25 +00:00
</ div >
< ul class = " wc-wizard-features " >
< li class = " wc-wizard-feature-item first " >
< p class = " wc-wizard-feature-name " >
< strong >< ? php esc_html_e ( 'Better security' , 'woocommerce' ); ?> </strong>
2017-09-05 23:50:56 +00:00
</ p >
2017-09-08 22:02:25 +00:00
< p class = " wc-wizard-feature-description " >
2017-09-21 16:41:49 +00:00
< ? php esc_html_e ( 'Protect your store from unauthorized access.' , 'woocommerce' ); ?>
2017-09-05 23:50:56 +00:00
</ p >
</ li >
2017-09-08 22:02:25 +00:00
< li class = " wc-wizard-feature-item last " >
< p class = " wc-wizard-feature-name " >
2017-09-21 16:41:49 +00:00
< strong >< ? php esc_html_e ( 'Store stats' , 'woocommerce' ); ?> </strong>
2017-09-05 23:50:56 +00:00
</ p >
2017-09-08 22:02:25 +00:00
< p class = " wc-wizard-feature-description " >
2017-09-21 16:41:49 +00:00
< ? php esc_html_e ( 'Get insights on how your store is doing, including total sales, top products, and more.' , 'woocommerce' ); ?>
2017-09-05 23:50:56 +00:00
</ p >
</ li >
2017-09-08 22:02:25 +00:00
< li class = " wc-wizard-feature-item first " >
< p class = " wc-wizard-feature-name " >
< strong >< ? php esc_html_e ( 'Store monitoring' , 'woocommerce' ); ?> </strong>
2017-09-05 23:50:56 +00:00
</ p >
2017-09-08 22:02:25 +00:00
< p class = " wc-wizard-feature-description " >
2017-09-21 16:41:49 +00:00
< ? php esc_html_e ( 'Get an alert if your store is down for even a few minutes.' , 'woocommerce' ); ?>
2017-09-05 23:50:56 +00:00
</ p >
</ li >
2017-09-08 22:02:25 +00:00
< li class = " wc-wizard-feature-item last " >
< p class = " wc-wizard-feature-name " >
< strong >< ? php esc_html_e ( 'Product promotion' , 'woocommerce' ); ?> </strong>
2017-09-05 23:50:56 +00:00
</ p >
2017-09-08 22:02:25 +00:00
< p class = " wc-wizard-feature-description " >
< ? php esc_html_e ( " Share new items on social media the moment they're live in your store. " , 'woocommerce' ); ?>
2017-09-05 23:50:56 +00:00
</ p >
</ li >
</ ul >
2017-09-08 22:02:25 +00:00
< ? php wp_nonce_field ( 'wc-setup' ); ?>
2017-09-05 23:50:56 +00:00
</ form >
< ? php
2017-09-06 05:24:18 +00:00
}
2017-09-05 23:50:56 +00:00
2017-09-06 05:24:18 +00:00
/**
* Activate step save .
*
* Install , activate , and launch connection flow for Jetpack .
*/
public function wc_setup_activate_save () {
check_admin_referer ( 'wc-setup' );
if ( ! class_exists ( 'Jetpack' ) ) {
2017-09-10 18:24:47 +00:00
wp_redirect ( esc_url_raw ( add_query_arg ( 'activate_error' , 'install' ) ) );
2017-09-06 05:24:18 +00:00
exit ;
}
2017-09-10 18:24:47 +00:00
Jetpack :: maybe_set_version_option ();
$registered = Jetpack :: try_registration ();
if ( is_wp_error ( $registered ) ) {
wp_redirect ( esc_url_raw ( add_query_arg ( 'activate_error' , 'register' ) ) );
exit ;
}
$redirect_url = site_url ( add_query_arg ( array (
'from' => 'wpcom' ,
'activate_error' => false ,
) ) );
2017-09-06 05:24:18 +00:00
$connection_url = Jetpack :: init () -> build_connect_url ( true , $redirect_url , 'woocommerce' );
wp_redirect ( esc_url_raw ( $connection_url ) );
exit ;
2017-09-05 23:50:56 +00:00
}
2015-04-29 15:34:07 +00:00
/**
2015-11-03 12:28:01 +00:00
* Final step .
2015-04-29 15:34:07 +00:00
*/
2017-03-31 17:32:19 +00:00
public function wc_setup_ready () {
2017-09-08 22:38:53 +00:00
// We've made it! Don't prompt the user to run the wizard again.
WC_Admin_Notices :: remove_notice ( 'install' );
2017-09-17 00:13:26 +00:00
$user_email = $this -> get_current_user_email ();
2017-09-08 22:38:53 +00:00
$videos_url = 'https://docs.woocommerce.com/document/woocommerce-guided-tour-videos/?utm_source=setupwizard&utm_medium=product&utm_content=videos&utm_campaign=woocommerceplugin' ;
$docs_url = 'https://docs.woocommerce.com/documentation/plugins/woocommerce/getting-started/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=woocommerceplugin' ;
$help_text = sprintf (
/* translators: %1$s: link to videos, %2$s: link to docs */
__ ( 'Watch our <a href="%1$s" target="_blank">guided tour videos</a> to learn more about WooCommerce, and visit WooCommerce.com to learn more about <a href="%2$s" target="_blank">getting started</a>.' ),
$videos_url ,
$docs_url
);
2015-04-28 12:19:16 +00:00
?>
2017-09-21 16:41:49 +00:00
< h1 >< ? php esc_html_e ( " You're ready to start selling! " , 'woocommerce' ); ?> </h1>
< p >< ? php esc_html_e ( 'Your WooCommerce store is ready to go.' , 'woocommerce' ); ?> </p>
2015-04-28 12:19:16 +00:00
2017-08-08 17:00:47 +00:00
< div class = " woocommerce-message woocommerce-newsletter " >
2017-09-21 16:41:49 +00:00
< p >< ? php esc_html_e ( " We're here for you — get tips, product updates, and inspiration straight to your mailbox. " , 'woocommerce' ); ?> </p>
2017-08-08 17:00:47 +00:00
< form action = " //woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971 " method = " post " target = " _blank " novalidate >
2017-09-08 22:38:53 +00:00
< input type = " email " value = " <?php echo esc_attr( $user_email ); ?> " name = " EMAIL " placeholder = " <?php esc_attr_e( 'Email address', 'woocommerce' ); ?> " required >
2017-09-21 16:41:49 +00:00
< input type = " submit " value = " <?php esc_html_e( 'Yes please!', 'woocommerce' ); ?> " name = " subscribe " id = " mc-embedded-subscribe " class = " button-primary button button-large " >
2017-08-08 17:00:47 +00:00
</ form >
</ div >
2017-09-08 22:38:53 +00:00
< ul class = " wc-wizard-next-steps " >
< li class = " wc-wizard-next-step-item " >
< div class = " wc-wizard-next-step-description " >
< p >< small >< ? php esc_html_e ( 'Next step' , 'woocommerce' ); ?> </small></p>
< h3 >< ? php esc_html_e ( 'Create your first product' , 'woocommerce' ); ?> </h3>
2017-09-21 16:41:49 +00:00
< p >< ? php esc_html_e ( " You're ready to add your first product. " , 'woocommerce' ); ?> </p>
2017-09-08 22:38:53 +00:00
</ div >
< div class = " wc-wizard-next-step-action " >
< a class = " button button-primary button-large " href = " <?php echo esc_url( admin_url( 'post-new.php?post_type=product&tutorial=true' ) ); ?> " >
< ? php esc_html_e ( 'Create a product' , 'woocommerce' ); ?>
</ a >
</ div >
</ li >
< li class = " wc-wizard-next-step-item " >
< div class = " wc-wizard-next-step-description " >
< p >< small >< ? php esc_html_e ( 'Have an existing store?' , 'woocommerce' ); ?> </small></p>
< h3 >< ? php esc_html_e ( 'Import products' , 'woocommerce' ); ?> </h3>
2017-09-21 16:41:49 +00:00
< p >< ? php esc_html_e ( 'Transfer existing products to your new store — just import a CSV file.' , 'woocommerce' ); ?> </p>
2017-09-08 22:38:53 +00:00
</ div >
< div class = " wc-wizard-next-step-action " >
< a class = " button button-large " href = " <?php echo esc_url( admin_url( 'edit.php?post_type=product&page=product_importer' ) ); ?> " >
< ? php esc_html_e ( 'Import products' , 'woocommerce' ); ?>
</ a >
</ div >
</ li >
</ ul >
< p >< ? php echo wp_kses_post ( $help_text ); ?> </p>
2015-04-28 12:19:16 +00:00
< ? php
}
}
2017-03-29 18:22:55 +00:00
new WC_Admin_Setup_Wizard ();