init_taxonomy(); // Add default taxonomies woocommerce_default_taxonomies(); // Install files and folders for uploading files and prevent hotlinking $upload_dir = wp_upload_dir(); $files = array( array( 'base' => $upload_dir['basedir'] . '/woocommerce_uploads', 'file' => '.htaccess', 'content' => 'deny from all' ), array( 'base' => $upload_dir['basedir'] . '/woocommerce_uploads', 'file' => 'index.html', 'content' => '' ), array( 'base' => WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/logs', 'file' => '.htaccess', 'content' => 'deny from all' ), array( 'base' => WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/logs', 'file' => 'index.html', 'content' => '' ) ); foreach ( $files as $file ) { if ( wp_mkdir_p( $file['base'] ) && ! file_exists( trailingslashit( $file['base'] ) . $file['file'] ) ) { if ( $file_handle = @fopen( trailingslashit( $file['base'] ) . $file['file'], 'w' ) ) { fwrite( $file_handle, $file['content'] ); fclose( $file_handle ); } } } // Clear transient cache $woocommerce->clear_product_transients(); // Recompile LESS styles if they are custom if ( get_option( 'woocommerce_frontend_css' ) == 'yes' ) { $colors = get_option( 'woocommerce_frontend_css_colors' ); if ( ( ! empty( $colors['primary'] ) && ! empty( $colors['secondary'] ) && ! empty( $colors['highlight'] ) && ! empty( $colors['content_bg'] ) && ! empty( $colors['subtext'] ) ) && ( $colors['primary'] != '#ad74a2' || $colors['secondary'] != '#f7f6f7' || $colors['highlight'] != '#85ad74' || $colors['content_bg'] != '#ffffff' || $colors['subtext'] != '#777777' ) ) woocommerce_compile_less_styles(); } // Queue upgrades $current_version = get_option( 'woocommerce_version', null ); $current_db_version = get_option( 'woocommerce_db_version', null ); if ( version_compare( $current_db_version, '1.7', '<' ) && null !== $current_version ) { update_option( 'woocommerce_needs_update', 1 ); } else { update_option( 'woocommerce_db_version', $woocommerce->version ); } // Update version update_option( 'woocommerce_version', $woocommerce->version ); } /** * Default options * * Sets up the default options used on the settings page * * @access public * @return void */ function woocommerce_default_options() { global $woocommerce_settings; // Include settings so that we can run through defaults include_once( 'settings/settings-init.php' ); foreach ( $woocommerce_settings as $section ) { foreach ( $section as $value ) { if ( isset( $value['default'] ) && isset( $value['id'] ) ) { add_option( $value['id'], $value['default'] ); } } } } /** * Create a page * * @access public * @param mixed $slug Slug for the new page * @param mixed $option Option name to store the page's ID * @param string $page_title (default: '') Title for the new page * @param string $page_content (default: '') Content for the new page * @param int $post_parent (default: 0) Parent for the new page * @return void */ function woocommerce_create_page( $slug, $option, $page_title = '', $page_content = '', $post_parent = 0 ) { global $wpdb; $option_value = get_option( $option ); if ( $option_value > 0 && get_post( $option_value ) ) return; $page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", $slug ) ); if ( $page_found ) { if ( ! $option_value ) update_option( $option, $page_found ); return; } $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 that the plugin relies on, storing page id's in variables. * * @access public * @return void */ function woocommerce_create_pages() { // Shop page woocommerce_create_page( esc_sql( _x( 'shop', 'page_slug', 'woocommerce' ) ), 'woocommerce_shop_page_id', __( 'Shop', 'woocommerce' ), '' ); // Cart page woocommerce_create_page( esc_sql( _x( 'cart', 'page_slug', 'woocommerce' ) ), 'woocommerce_cart_page_id', __( 'Cart', 'woocommerce' ), '[woocommerce_cart]' ); // Checkout page woocommerce_create_page( esc_sql( _x( 'checkout', 'page_slug', 'woocommerce' ) ), 'woocommerce_checkout_page_id', __( 'Checkout', 'woocommerce' ), '[woocommerce_checkout]' ); // Order tracking page woocommerce_create_page( esc_sql( _x( 'order-tracking', 'page_slug', 'woocommerce' ) ), 'woocommerce_order_tracking_page_id', __( 'Track your order', 'woocommerce' ), '[woocommerce_order_tracking]' ); // My Account page woocommerce_create_page( esc_sql( _x( 'my-account', 'page_slug', 'woocommerce' ) ), 'woocommerce_myaccount_page_id', __( 'My Account', 'woocommerce' ), '[woocommerce_my_account]' ); // Lost password page woocommerce_create_page( esc_sql( _x( 'lost-password', 'page_slug', 'woocommerce' ) ), 'woocommerce_lost_password_page_id', __( 'Lost Password', 'woocommerce' ), '[woocommerce_lost_password]', woocommerce_get_page_id( 'myaccount' ) ); // Edit address page woocommerce_create_page( esc_sql( _x( 'edit-address', 'page_slug', 'woocommerce' ) ), 'woocommerce_edit_address_page_id', __( 'Edit My Address', 'woocommerce' ), '[woocommerce_edit_address]', woocommerce_get_page_id( 'myaccount' ) ); // View order page woocommerce_create_page( esc_sql( _x( 'view-order', 'page_slug', 'woocommerce' ) ), 'woocommerce_view_order_page_id', __( 'View Order', 'woocommerce' ), '[woocommerce_view_order]', woocommerce_get_page_id( 'myaccount' ) ); // Change password page woocommerce_create_page( esc_sql( _x( 'change-password', 'page_slug', 'woocommerce' ) ), 'woocommerce_change_password_page_id', __( 'Change Password', 'woocommerce' ), '[woocommerce_change_password]', woocommerce_get_page_id( 'myaccount' ) ); // Pay page woocommerce_create_page( esc_sql( _x( 'pay', 'page_slug', 'woocommerce' ) ), 'woocommerce_pay_page_id', __( 'Checkout → Pay', 'woocommerce' ), '[woocommerce_pay]', woocommerce_get_page_id( 'checkout' ) ); // Thanks page woocommerce_create_page( esc_sql( _x( 'order-received', 'page_slug', 'woocommerce' ) ), 'woocommerce_thanks_page_id', __( 'Order Received', 'woocommerce' ), '[woocommerce_thankyou]', woocommerce_get_page_id( 'checkout' ) ); } /** * Set up the database tables which the plugin needs to function. * * @access public * @return void */ function woocommerce_tables_install() { global $wpdb, $woocommerce; $wpdb->hide_errors(); $collate = ''; if ( $wpdb->has_cap( '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' ); // Table for storing attribute taxonomies - these are user defined $sql = " CREATE TABLE ". $wpdb->prefix . "woocommerce_attribute_taxonomies ( attribute_id bigint(20) NOT NULL auto_increment, attribute_name varchar(200) NOT NULL, attribute_label longtext NULL, attribute_type varchar(200) NOT NULL, attribute_orderby varchar(200) NOT NULL, PRIMARY KEY (attribute_id) ) $collate; "; dbDelta( $sql ); // Term meta table - sadly WordPress does not have termmeta so we need our own $sql = " CREATE TABLE ". $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 (meta_id) ) $collate; "; dbDelta( $sql ); // Table for storing user and guest download permissions // KEY(order_id, product_id, download_id) used for organizing downloads on the My Account page $sql = " CREATE TABLE ". $wpdb->prefix . "woocommerce_downloadable_product_permissions ( download_id varchar(32) NOT NULL, product_id bigint(20) NOT NULL, order_id bigint(20) NOT NULL DEFAULT 0, order_key varchar(200) NOT NULL, user_email varchar(200) NOT NULL, user_id bigint(20) NULL, downloads_remaining varchar(9) NULL, access_granted datetime NOT NULL default '0000-00-00 00:00:00', access_expires datetime NULL default null, download_count bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (product_id,order_id,order_key,download_id), KEY (order_id,product_id,download_id) ) $collate; "; dbDelta( $sql ); // Order line items are stored in a table to make them easily queryable for reports $sql = " CREATE TABLE ". $wpdb->prefix . "woocommerce_order_items ( order_item_id bigint(20) NOT NULL auto_increment, order_item_name longtext NOT NULL DEFAULT '', order_item_type varchar(200) NOT NULL DEFAULT '', order_id bigint(20) NOT NULL, PRIMARY KEY (order_item_id) ) $collate; "; dbDelta( $sql ); // Order line item meta is stored in a table for storing extra data. $sql = " CREATE TABLE ". $wpdb->prefix . "woocommerce_order_itemmeta ( meta_id bigint(20) NOT NULL auto_increment, order_item_id bigint(20) NOT NULL, meta_key varchar(255) NULL, meta_value longtext NULL, PRIMARY KEY (meta_id) ) $collate; "; dbDelta( $sql ); } /** * Add the default terms for WC taxonomies - product types and order statuses. Modify this at your own risk. * * @access public * @return void */ function woocommerce_default_taxonomies() { $taxonomies = array( 'product_type' => array( 'simple', 'grouped', 'variable', 'external' ), 'shop_order_status' => array( 'pending', 'failed', 'on-hold', 'processing', 'completed', 'refunded', 'cancelled' ) ); foreach ( $taxonomies as $taxonomy => $terms ) { foreach ( $terms as $term ) { if ( ! get_term_by( 'slug', sanitize_title( $term ), $taxonomy ) ) { wp_insert_term( $term, $taxonomy ); } } } }