276 lines
8.0 KiB
PHP
276 lines
8.0 KiB
PHP
<?php
|
|
/**
|
|
* WooCommerce Install
|
|
*
|
|
* Plugin install script which adds default pages, taxonomies, and database tables
|
|
*
|
|
* @author WooThemes
|
|
* @category Admin
|
|
* @package WooCommerce
|
|
*/
|
|
|
|
/**
|
|
* Activate woocommerce
|
|
*/
|
|
function activate_woocommerce() {
|
|
|
|
install_woocommerce();
|
|
|
|
// Update installed variable
|
|
update_option( "woocommerce_installed", 1 );
|
|
}
|
|
|
|
/**
|
|
* Install woocommerce
|
|
*/
|
|
function install_woocommerce() {
|
|
|
|
global $woocommerce_settings;
|
|
|
|
// Do install
|
|
woocommerce_default_options();
|
|
woocommerce_create_pages();
|
|
woocommerce_tables_install();
|
|
woocommerce_default_taxonomies();
|
|
woocommerce_populate_custom_fields();
|
|
|
|
// Update version
|
|
update_option( "woocommerce_db_version", WOOCOMMERCE_VERSION );
|
|
}
|
|
|
|
/**
|
|
* Install woocommerce redirect
|
|
*/
|
|
add_action('admin_init', 'install_woocommerce_redirect');
|
|
function install_woocommerce_redirect() {
|
|
global $pagenow;
|
|
|
|
if ( is_admin() && isset( $_GET['activate'] ) && ($_GET['activate'] == true) && $pagenow == 'plugins.php' && get_option( "woocommerce_installed" ) == 1 ) :
|
|
|
|
update_option( "woocommerce_installed", 0 );
|
|
flush_rewrite_rules( false );
|
|
wp_redirect(admin_url('admin.php?page=woocommerce&installed=true'));
|
|
exit;
|
|
|
|
endif;
|
|
}
|
|
|
|
/**
|
|
* Add required post meta so queries work
|
|
*/
|
|
function woocommerce_populate_custom_fields() {
|
|
|
|
// Attachment exclusion
|
|
$args = array(
|
|
'post_type' => 'attachment',
|
|
'numberposts' => -1,
|
|
'post_status' => null,
|
|
'fields' => 'ids'
|
|
);
|
|
$attachments = get_posts($args);
|
|
if ($attachments) foreach ($attachments as $id) :
|
|
add_post_meta($id, '_woocommerce_exclude_image', 0);
|
|
endforeach;
|
|
|
|
}
|
|
|
|
/**
|
|
* Default options
|
|
*
|
|
* Sets up the default options used on the settings page
|
|
*/
|
|
function woocommerce_default_options() {
|
|
global $woocommerce_settings;
|
|
|
|
// Include settings so that we can run through defaults
|
|
include_once( 'admin-settings.php' );
|
|
|
|
foreach ($woocommerce_settings as $section) :
|
|
|
|
foreach ($section as $value) :
|
|
|
|
if (isset($value['std'])) :
|
|
|
|
if ($value['type']=='image_width') :
|
|
|
|
add_option($value['id'].'_width', $value['std']);
|
|
add_option($value['id'].'_height', $value['std']);
|
|
|
|
else :
|
|
|
|
add_option($value['id'], $value['std']);
|
|
|
|
endif;
|
|
|
|
endif;
|
|
|
|
endforeach;
|
|
|
|
endforeach;
|
|
|
|
add_option('woocommerce_shop_slug', 'shop');
|
|
}
|
|
|
|
/**
|
|
* Create a page
|
|
*
|
|
* Creates a page
|
|
*/
|
|
function woocommerce_create_page( $slug, $option, $page_title = '', $page_content = '', $post_parent = 0 ) {
|
|
global $wpdb;
|
|
|
|
$option_value = get_option($option);
|
|
|
|
if ($option_value>0) :
|
|
if (get_post( $option_value )) :
|
|
// Page exists
|
|
return;
|
|
endif;
|
|
endif;
|
|
|
|
$page_found = $wpdb->get_var("SELECT ID FROM " . $wpdb->posts . " WHERE post_name = '$slug' LIMIT 1;");
|
|
if ($page_found) :
|
|
// Page exists
|
|
return;
|
|
endif;
|
|
|
|
$page_data = array(
|
|
'post_status' => 'publish',
|
|
'post_type' => 'page',
|
|
'post_author' => 1,
|
|
'post_name' => $slug,
|
|
'post_title' => $page_title,
|
|
'post_content' => $page_content,
|
|
'post_parent' => $post_parent,
|
|
'comment_status' => 'closed'
|
|
);
|
|
$page_id = wp_insert_post($page_data);
|
|
|
|
update_option($option, $page_id);
|
|
}
|
|
|
|
/**
|
|
* Create pages
|
|
*
|
|
* Creates pages that the plugin relies on, storing page id's in variables.
|
|
*/
|
|
function woocommerce_create_pages() {
|
|
|
|
// Shop page
|
|
woocommerce_create_page( esc_sql( _x('shop', 'page_slug', 'woothemes') ), 'woocommerce_shop_page_id', __('Shop', 'woothemes'), '' );
|
|
|
|
// Cart page
|
|
woocommerce_create_page( esc_sql( _x('cart', 'page_slug', 'woothemes') ), 'woocommerce_cart_page_id', __('Cart', 'woothemes'), '[woocommerce_cart]' );
|
|
|
|
// Checkout page
|
|
woocommerce_create_page( esc_sql( _x('checkout', 'page_slug', 'woothemes') ), 'woocommerce_checkout_page_id', __('Checkout', 'woothemes'), '[woocommerce_checkout]' );
|
|
|
|
// Order tracking page
|
|
woocommerce_create_page( esc_sql( _x('order-tracking', 'page_slug', 'woothemes') ), 'woocommerce_order_tracking_page_id', __('Track your order', 'woothemes'), '[woocommerce_order_tracking]' );
|
|
|
|
// My Account page
|
|
woocommerce_create_page( esc_sql( _x('my-account', 'page_slug', 'woothemes') ), 'woocommerce_myaccount_page_id', __('My Account', 'woothemes'), '[woocommerce_my_account]' );
|
|
|
|
// Edit address page
|
|
woocommerce_create_page( esc_sql( _x('edit-address', 'page_slug', 'woothemes') ), 'woocommerce_edit_address_page_id', __('Edit My Address', 'woothemes'), '[woocommerce_edit_address]', get_option('woocommerce_myaccount_page_id') );
|
|
|
|
// View order page
|
|
woocommerce_create_page( esc_sql( _x('view-order', 'page_slug', 'woothemes') ), 'woocommerce_view_order_page_id', __('View Order', 'woothemes'), '[woocommerce_view_order]', get_option('woocommerce_myaccount_page_id') );
|
|
|
|
// Change password page
|
|
woocommerce_create_page( esc_sql( _x('change-password', 'page_slug', 'woothemes') ), 'woocommerce_change_password_page_id', __('Change Password', 'woothemes'), '[woocommerce_change_password]', get_option('woocommerce_myaccount_page_id') );
|
|
|
|
// Pay page
|
|
woocommerce_create_page( esc_sql( _x('pay', 'page_slug', 'woothemes') ), 'woocommerce_pay_page_id', __('Checkout → Pay', 'woothemes'), '[woocommerce_pay]', get_option('woocommerce_checkout_page_id') );
|
|
|
|
// Thanks page
|
|
woocommerce_create_page( esc_sql( _x('order-received', 'page_slug', 'woothemes') ), 'woocommerce_thanks_page_id', __('Order Received', 'woothemes'), '[woocommerce_thankyou]', get_option('woocommerce_checkout_page_id') );
|
|
|
|
}
|
|
|
|
/**
|
|
* Table Install
|
|
*
|
|
* Sets up the database tables which the plugin needs to function.
|
|
*/
|
|
function woocommerce_tables_install() {
|
|
global $wpdb;
|
|
|
|
$collate = '';
|
|
if($wpdb->supports_collation()) {
|
|
if(!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset";
|
|
if(!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate";
|
|
}
|
|
|
|
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
|
|
|
$sql = "CREATE TABLE IF NOT EXISTS ". $wpdb->prefix . "woocommerce_attribute_taxonomies" ." (
|
|
`attribute_id` mediumint(9) NOT NULL AUTO_INCREMENT,
|
|
`attribute_name` varchar(200) NOT NULL,
|
|
`attribute_label` longtext NULL,
|
|
`attribute_type` varchar(200) NOT NULL,
|
|
PRIMARY KEY id (`attribute_id`)) $collate;";
|
|
dbDelta($sql);
|
|
|
|
$sql = "CREATE TABLE IF NOT EXISTS ". $wpdb->prefix . "woocommerce_downloadable_product_permissions" ." (
|
|
`product_id` mediumint(9) NOT NULL,
|
|
`user_email` varchar(200) NOT NULL,
|
|
`user_id` mediumint(9) NULL,
|
|
`order_key` varchar(200) NOT NULL,
|
|
`downloads_remaining` varchar(9) NULL,
|
|
PRIMARY KEY id (`product_id`, `order_key`)) $collate;";
|
|
dbDelta($sql);
|
|
|
|
$sql = "CREATE TABLE IF NOT EXISTS ". $wpdb->prefix . "woocommerce_termmeta" ." (
|
|
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
|
|
`woocommerce_term_id` bigint(20) NOT NULL,
|
|
`meta_key` varchar(255) NULL,
|
|
`meta_value` longtext NULL,
|
|
PRIMARY KEY id (`meta_id`)) $collate;";
|
|
dbDelta($sql);
|
|
|
|
}
|
|
|
|
/**
|
|
* Default taxonomies
|
|
*
|
|
* Adds the default terms for taxonomies - product types and order statuses. Modify at your own risk.
|
|
*/
|
|
function woocommerce_default_taxonomies() {
|
|
|
|
if (!taxonomy_exists('product_type')) :
|
|
register_taxonomy( 'product_type', array('post'));
|
|
register_taxonomy( 'shop_order_status', array('post'));
|
|
endif;
|
|
|
|
$product_types = array(
|
|
'simple',
|
|
'grouped',
|
|
'variable',
|
|
'downloadable',
|
|
'virtual'
|
|
);
|
|
|
|
foreach($product_types as $type) {
|
|
if (!get_term_by( 'slug', sanitize_title($type), 'product_type')) {
|
|
wp_insert_term($type, 'product_type');
|
|
}
|
|
}
|
|
|
|
$order_status = array(
|
|
'pending',
|
|
'failed',
|
|
'on-hold',
|
|
'processing',
|
|
'completed',
|
|
'refunded',
|
|
'cancelled'
|
|
);
|
|
|
|
foreach($order_status as $status) {
|
|
if (!get_term_by( 'slug', sanitize_title($status), 'shop_order_status')) {
|
|
wp_insert_term($status, 'shop_order_status');
|
|
}
|
|
}
|
|
|
|
} |