2011-08-10 17:11:11 +00:00
< ? php
/*
Plugin Name : WooCommerce
2011-10-02 11:13:37 +00:00
Plugin URI : http :// www . woothemes . com / woocommerce /
2011-12-19 15:44:00 +00:00
Description : An e - commerce toolkit that helps you sell anything . Beautifully .
2012-02-07 12:09:23 +00:00
Version : 1.4 . 2
2011-08-10 17:11:11 +00:00
Author : WooThemes
Author URI : http :// woothemes . com
Requires at least : 3.1
2011-10-12 17:32:30 +00:00
Tested up to : 3.3
2012-01-05 11:31:22 +00:00
Text Domain : woocommerce
Domain Path : / languages /
2011-08-10 17:11:11 +00:00
*/
2011-12-09 17:01:56 +00:00
// Exit if accessed directly
if ( ! defined ( 'ABSPATH' ) ) exit ;
2011-08-10 17:11:11 +00:00
2012-01-21 09:01:41 +00:00
if ( ! class_exists ( 'Woocommerce' ) ) :
2011-12-08 12:50:50 +00:00
2011-09-04 00:02:44 +00:00
/**
2011-12-09 17:01:56 +00:00
* Main WooCommerce Class
*
* Contains the main functions for WooCommerce , stores variables , and handles error messages
*
* @ since WooCommerce 1.4
2011-09-06 11:11:22 +00:00
*/
2012-01-21 09:01:41 +00:00
class Woocommerce {
2011-08-10 17:11:11 +00:00
2011-12-09 17:01:56 +00:00
/** Version ***************************************************************/
2011-08-10 17:11:11 +00:00
2012-02-07 12:09:23 +00:00
var $version = '1.4.2' ;
2011-09-04 11:03:57 +00:00
2011-12-09 17:01:56 +00:00
/** URLS ******************************************************************/
var $plugin_url ;
var $plugin_path ;
2011-12-09 19:55:09 +00:00
var $template_url ;
2011-12-09 17:01:56 +00:00
/** Errors / Messages *****************************************************/
var $errors = array (); // Stores store errors
var $messages = array (); // Stores store messages
/** Class Instances *******************************************************/
var $query ;
var $customer ;
var $shipping ;
var $cart ;
var $payment_gateways ;
var $countries ;
2011-12-10 17:28:32 +00:00
var $woocommerce_email ;
2012-01-12 00:54:45 +00:00
var $checkout ;
2011-12-09 17:01:56 +00:00
/** Taxonomies ************************************************************/
var $attribute_taxonomies ; // Stores the attribute taxonomies used in the store
2011-08-10 17:11:11 +00:00
2011-12-09 17:01:56 +00:00
/** Cache *****************************************************************/
2011-12-02 07:24:52 +00:00
2011-12-09 17:01:56 +00:00
private $_cache ;
2011-12-02 11:11:33 +00:00
2011-12-09 19:55:09 +00:00
/** Body Classes **********************************************************/
private $_body_classes = array ();
2011-12-09 17:01:56 +00:00
/** Inline JavaScript *****************************************************/
private $_inline_js = '' ;
2011-12-02 11:11:33 +00:00
2011-12-09 17:01:56 +00:00
/**
* WooCommerce Constructor
*
* Gets things started
*/
function __construct () {
2011-12-11 15:20:34 +00:00
// Start a PHP session
if ( ! session_id ()) session_start ();
2012-02-01 21:49:08 +00:00
// Define version constant
define ( 'WOOCOMMERCE_VERSION' , $this -> version );
2011-12-09 17:01:56 +00:00
// Set up localisation
$this -> load_plugin_textdomain ();
2011-12-02 11:43:15 +00:00
2011-12-09 17:01:56 +00:00
// Include required files
$this -> includes ();
2011-12-02 11:43:15 +00:00
2011-12-09 17:01:56 +00:00
// Installation
if ( is_admin () && ! defined ( 'DOING_AJAX' )) $this -> install ();
2011-08-10 17:11:11 +00:00
2011-12-09 17:01:56 +00:00
// Load class instances
2012-01-27 16:38:39 +00:00
$this -> payment_gateways = new WC_Payment_gateways (); // Payment gateways. Loads and stores payment methods, and handles incoming requests such as IPN
$this -> shipping = new WC_Shipping (); // Shipping class. loads and stores shipping methods
$this -> countries = new WC_Countries (); // Countries class
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
// Variables
$this -> template_url = apply_filters ( 'woocommerce_template_url' , 'woocommerce/' );
2011-12-09 17:01:56 +00:00
// Actions
add_action ( 'init' , array ( & $this , 'init' ), 0 );
add_action ( 'after_setup_theme' , array ( & $this , 'compatibility' ));
2011-12-11 14:40:25 +00:00
add_action ( 'the_post' , array ( & $this , 'setup_product_data' ) );
2011-12-09 17:01:56 +00:00
add_action ( 'plugins_loaded' , array ( & $this -> shipping , 'init' ), 1 ); // Load shipping methods - some more may be added by plugins
add_action ( 'plugins_loaded' , array ( & $this -> payment_gateways , 'init' ), 1 ); // Load payment methods - some more may be added by plugins
2011-12-12 16:34:56 +00:00
add_action ( 'admin_footer' , array ( & $this , 'output_inline_js' ), 25 );
2011-12-09 17:01:56 +00:00
2011-12-10 17:28:32 +00:00
// Email Actions
$email_actions = array ( 'woocommerce_low_stock' , 'woocommerce_no_stock' , 'woocommerce_product_on_backorder' , 'woocommerce_order_status_pending_to_processing' , 'woocommerce_order_status_pending_to_completed' , 'woocommerce_order_status_pending_to_on-hold' , 'woocommerce_order_status_failed_to_processing' , 'woocommerce_order_status_failed_to_completed' , 'woocommerce_order_status_pending_to_processing' , 'woocommerce_order_status_pending_to_on-hold' , 'woocommerce_order_status_completed' , 'woocommerce_new_customer_note' );
foreach ( $email_actions as $action ) add_action ( $action , array ( & $this , 'send_transactional_email' ));
2011-12-09 19:55:09 +00:00
// Actions for SSL
2011-12-10 18:40:51 +00:00
if ( ! is_admin () || defined ( 'DOING_AJAX' )) :
2011-12-09 19:55:09 +00:00
add_action ( 'wp' , array ( & $this , 'ssl_redirect' ));
$filters = array ( 'post_thumbnail_html' , 'widget_text' , 'wp_get_attachment_url' , 'wp_get_attachment_image_attributes' , 'wp_get_attachment_url' , 'option_siteurl' , 'option_home' , 'option_url' , 'option_wpurl' , 'option_stylesheet_url' , 'option_template_url' , 'script_loader_src' , 'style_loader_src' );
foreach ( $filters as $filter ) add_filter ( $filter , array ( & $this , 'force_ssl' ));
endif ;
2011-12-09 17:01:56 +00:00
// Classes/actions loaded for the frontend and for ajax requests
if ( ! is_admin () || defined ( 'DOING_AJAX' ) ) :
// Class instances
2012-01-27 16:38:39 +00:00
$this -> cart = new WC_Cart (); // Cart class, stores the cart contents
$this -> customer = new WC_Customer (); // Customer class, sorts out session data such as location
$this -> query = new WC_Query (); // Query class, handles front-end queries and loops
2011-12-09 17:01:56 +00:00
// Load messages
$this -> load_messages ();
// Hooks
2011-12-09 19:55:09 +00:00
add_filter ( 'template_include' , array ( & $this , 'template_loader' ) );
add_filter ( 'comments_template' , array ( & $this , 'comments_template_loader' ) );
2011-12-09 17:01:56 +00:00
add_action ( 'init' , array ( & $this , 'include_template_functions' ), 99 );
add_filter ( 'wp_redirect' , array ( & $this , 'redirect' ), 1 , 2 );
2012-01-24 16:56:10 +00:00
add_action ( 'wp' , array ( & $this , 'buffer_checkout' ) );
2012-01-07 15:36:12 +00:00
add_action ( 'wp_enqueue_scripts' , array ( & $this , 'frontend_scripts' ) );
2011-12-09 19:55:09 +00:00
add_action ( 'wp_head' , array ( & $this , 'wp_head' ) );
add_filter ( 'body_class' , array ( & $this , 'output_body_class' ) );
2011-12-09 17:01:56 +00:00
add_action ( 'wp_footer' , array ( & $this , 'output_inline_js' ), 25 );
endif ;
2011-10-03 08:14:07 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Localisation
**/
function load_plugin_textdomain () {
$variable_lang = ( get_option ( 'woocommerce_informal_localisation_type' ) == 'yes' ) ? 'informal' : 'formal' ;
2012-01-05 11:31:22 +00:00
load_plugin_textdomain ( 'woocommerce' , false , dirname ( plugin_basename ( __FILE__ ) ) . '/languages' );
load_plugin_textdomain ( 'woocommerce' , false , dirname ( plugin_basename ( __FILE__ ) ) . '/../../languages/woocommerce' );
load_plugin_textdomain ( 'woocommerce' , false , dirname ( plugin_basename ( __FILE__ ) ) . '/languages/' . $variable_lang );
2011-10-03 08:14:07 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Include required core files
**/
function includes () {
if ( is_admin () && ! defined ( 'DOING_AJAX' )) $this -> admin_includes ();
if ( defined ( 'DOING_AJAX' )) $this -> ajax_includes ();
if ( ! is_admin () || defined ( 'DOING_AJAX' )) $this -> frontend_includes ();
2012-01-22 15:49:41 +00:00
include ( 'woocommerce-core-functions.php' ); // Contains core functions for the front/back end
include ( 'widgets/widget-init.php' ); // Widget classes
2012-01-27 16:38:39 +00:00
include ( 'classes/class-wc-countries.php' ); // Defines countries and states
include ( 'classes/class-wc-order.php' ); // Single order class
include ( 'classes/class-wc-product.php' ); // Product class
include ( 'classes/class-wc-product-variation.php' ); // Product variation class
include ( 'classes/class-wc-tax.php' ); // Tax class
2011-12-09 17:01:56 +00:00
// Include shipping modules and gateways
2012-01-27 16:38:39 +00:00
include ( 'classes/class-wc-settings-api.php' );
include ( 'classes/gateways/class-wc-payment-gateways.php' );
include ( 'classes/gateways/class-wc-payment-gateway.php' );
include ( 'classes/shipping/class-wc-shipping.php' );
include ( 'classes/shipping/class-wc-shipping-method.php' );
include ( 'classes/shipping/class-wc-flat-rate.php' );
2012-01-31 18:13:32 +00:00
include ( 'classes/shipping/class-wc-international-delivery.php' );
2012-01-27 16:38:39 +00:00
include ( 'classes/shipping/class-wc-free-shipping.php' );
include ( 'classes/shipping/class-wc-local-delivery.php' );
include ( 'classes/shipping/class-wc-local-pickup.php' );
include ( 'classes/gateways/class-wc-bacs.php' );
include ( 'classes/gateways/class-wc-cheque.php' );
include ( 'classes/gateways/class-wc-paypal.php' );
include ( 'classes/gateways/class-wc-cod.php' );
2011-10-03 08:14:07 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Include required admin files
**/
function admin_includes () {
2011-12-12 16:34:56 +00:00
include ( 'admin/woocommerce-admin-init.php' ); // Admin section
2011-10-03 08:14:07 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Include required ajax files
**/
function ajax_includes () {
2011-12-11 00:33:28 +00:00
include ( 'woocommerce-ajax.php' ); // Ajax functions for admin and the front-end
2011-10-03 08:14:07 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Include required frontend files
**/
function frontend_includes () {
2011-12-11 00:33:28 +00:00
include ( 'woocommerce-hooks.php' ); // Template hooks used on the front-end
include ( 'woocommerce-functions.php' ); // Contains functions for various front-end events
2012-01-22 15:49:41 +00:00
include ( 'shortcodes/shortcode-init.php' ); // Init the shortcodes
2012-01-27 16:38:39 +00:00
include ( 'classes/class-wc-query.php' ); // The main store queries
include ( 'classes/class-wc-cart.php' ); // The main cart class
include ( 'classes/class-wc-coupon.php' ); // Coupon class
include ( 'classes/class-wc-customer.php' ); // Customer class
2011-10-03 08:14:07 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Function used to Init WooCommerce Template Functions - This makes them pluggable by plugins and themes
**/
function include_template_functions () {
2011-12-11 00:33:28 +00:00
include ( 'woocommerce-template.php' );
2011-12-09 19:55:09 +00:00
}
/**
* template_loader
*
* Handles template usage so that we can use our own templates instead of the themes .
*
* Templates are in the 'templates' folder . woocommerce looks for theme
* overides in / theme / woocommerce / by default
2012-01-06 14:02:34 +00:00
*
* For beginners , it also looks for a woocommerce . php template first . If the user adds
* this to the theme ( containing a woocommerce () inside ) this will be used for all
* woocommerce templates .
2011-12-09 19:55:09 +00:00
*/
function template_loader ( $template ) {
if ( is_single () && get_post_type () == 'product' )
$find = 'single-product.php' ;
elseif ( is_tax ( 'product_cat' ) )
$find = 'taxonomy-product_cat.php' ;
elseif ( is_tax ( 'product_tag' ) )
$find = 'taxonomy-product_tag.php' ;
2012-01-06 17:14:31 +00:00
elseif ( is_post_type_archive ( 'product' ) || is_page ( woocommerce_get_page_id ( 'shop' ) ))
2011-12-09 19:55:09 +00:00
$find = 'archive-product.php' ;
else
$find = false ;
if ( $find ) :
2012-01-06 14:02:34 +00:00
$template = locate_template ( array ( 'woocommerce.php' , $find , $this -> template_url . $find ) );
2011-12-09 19:55:09 +00:00
if ( ! $template ) $template = $this -> plugin_path () . '/templates/' . $find ;
endif ;
return $template ;
}
2011-12-14 19:05:01 +00:00
function comments_template_loader ( $template ) {
2011-12-09 19:55:09 +00:00
if ( get_post_type () !== 'product' ) return $template ;
if ( file_exists ( STYLESHEETPATH . '/' . $this -> template_url . 'single-product-reviews.php' ))
return STYLESHEETPATH . '/' . $this -> template_url . 'single-product-reviews.php' ;
else
return $this -> plugin_path () . '/templates/single-product-reviews.php' ;
2011-10-03 08:14:07 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Install upon activation
**/
function install () {
register_activation_hook ( __FILE__ , 'activate_woocommerce' );
if ( get_option ( 'woocommerce_db_version' ) != $this -> version ) : add_action ( 'init' , 'install_woocommerce' , 0 ); endif ;
2011-08-10 17:11:11 +00:00
}
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
/**
* Init WooCommerce when WordPress Initialises
**/
function init () {
2011-12-11 12:39:35 +00:00
2011-12-11 14:40:25 +00:00
// Register globals for WC environment
$this -> register_globals ();
2011-12-09 19:55:09 +00:00
// Init user roles
$this -> init_user_roles ();
// Init WooCommerce taxonomies
$this -> init_taxonomy ();
// Init Images sizes
$this -> init_image_sizes ();
// Init styles
if ( ! is_admin ()) $this -> init_styles ();
2012-01-12 00:54:45 +00:00
2011-12-09 19:55:09 +00:00
do_action ( 'woocommerce_init' );
}
2012-01-24 16:56:10 +00:00
/**
* Output buffering on the checkout allows gateways to do header redirects
**/
function buffer_checkout () {
if ( is_checkout ()) ob_start ();
}
2011-12-11 14:40:25 +00:00
/**
* Register WC environment globals
**/
function register_globals () {
$GLOBALS [ 'product' ] = null ;
}
/**
* When the_post is called , get product data too
**/
function setup_product_data ( $post ) {
2011-12-11 15:20:34 +00:00
if ( $post -> post_type !== 'product' ) return ;
2011-12-11 14:40:25 +00:00
unset ( $GLOBALS [ 'product' ]);
2012-01-27 16:38:39 +00:00
$GLOBALS [ 'product' ] = new WC_Product ( $post -> ID );
2012-01-03 17:23:42 +00:00
return $GLOBALS [ 'product' ];
2011-12-11 14:40:25 +00:00
}
2011-12-09 19:55:09 +00:00
2011-12-09 17:01:56 +00:00
/**
* Add Compatibility for various bits
**/
function compatibility () {
// Post thumbnail support
if ( ! current_theme_supports ( 'post-thumbnails' ) ) :
add_theme_support ( 'post-thumbnails' );
remove_post_type_support ( 'post' , 'thumbnail' );
remove_post_type_support ( 'page' , 'thumbnail' );
2011-08-10 17:11:11 +00:00
else :
2011-12-09 17:01:56 +00:00
add_post_type_support ( 'product' , 'thumbnail' );
2011-08-10 17:11:11 +00:00
endif ;
2011-12-09 17:01:56 +00:00
// IIS
if ( ! isset ( $_SERVER [ 'REQUEST_URI' ])) {
$_SERVER [ 'REQUEST_URI' ] = substr ( $_SERVER [ 'PHP_SELF' ], 1 );
if ( isset ( $_SERVER [ 'QUERY_STRING' ])) { $_SERVER [ 'REQUEST_URI' ] .= '?' . $_SERVER [ 'QUERY_STRING' ]; }
}
}
2011-12-09 19:55:09 +00:00
2011-12-09 17:01:56 +00:00
/**
2011-12-09 19:55:09 +00:00
* Redirect to https if Force SSL is enabled
2011-12-09 17:01:56 +00:00
**/
2011-12-09 19:55:09 +00:00
function ssl_redirect () {
if ( ! is_ssl () && get_option ( 'woocommerce_force_ssl_checkout' ) == 'yes' && is_checkout ()) :
2012-01-06 17:14:31 +00:00
wp_safe_redirect ( str_replace ( 'http:' , 'https:' , get_permalink ( woocommerce_get_page_id ( 'checkout' ))), 301 );
2011-12-09 19:55:09 +00:00
exit ;
// Break out of SSL if we leave the checkout (anywhere but thanks page)
2012-01-06 17:14:31 +00:00
elseif ( is_ssl () && get_option ( 'woocommerce_force_ssl_checkout' ) == 'yes' && get_option ( 'woocommerce_unforce_ssl_checkout' ) == 'yes' && $_SERVER [ 'REQUEST_URI' ] && ! is_checkout () && ! is_page ( woocommerce_get_page_id ( 'thanks' )) && ! is_ajax ()) :
2011-12-09 19:55:09 +00:00
wp_safe_redirect ( str_replace ( 'https:' , 'http:' , home_url ( $_SERVER [ 'REQUEST_URI' ]) ) );
exit ;
endif ;
2011-12-09 17:01:56 +00:00
}
2011-09-06 11:11:22 +00:00
2011-12-09 17:01:56 +00:00
/**
2011-12-09 19:55:09 +00:00
* Output generator to aid debugging and add body classes
2011-12-09 17:01:56 +00:00
**/
2011-12-09 19:55:09 +00:00
function wp_head () {
echo " \n \n " . '<!-- WooCommerce Version -->' . " \n " . '<meta name="generator" content="WooCommerce ' . $this -> version . '" />' . " \n \n " ;
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
$this -> add_body_class ( 'theme-' . strtolower ( get_current_theme () ));
if ( is_woocommerce ()) $this -> add_body_class ( 'woocommerce' );
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
if ( is_checkout ()) $this -> add_body_class ( 'woocommerce-checkout' );
2011-08-10 17:11:11 +00:00
2011-12-09 19:55:09 +00:00
if ( is_cart ()) $this -> add_body_class ( 'woocommerce-cart' );
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
if ( is_account_page ()) $this -> add_body_class ( 'woocommerce-account' );
2011-12-09 17:01:56 +00:00
2012-01-06 17:14:31 +00:00
if ( is_woocommerce () || is_checkout () || is_cart () || is_account_page () || is_page ( woocommerce_get_page_id ( 'order_tracking' )) || is_page ( woocommerce_get_page_id ( 'thanks' ))) $this -> add_body_class ( 'woocommerce-page' );
2011-08-10 17:11:11 +00:00
}
2011-12-09 17:01:56 +00:00
/**
* Init WooCommerce user roles
**/
function init_user_roles () {
global $wp_roles ;
if ( class_exists ( 'WP_Roles' )) if ( ! isset ( $wp_roles ) ) $wp_roles = new WP_Roles ();
if ( is_object ( $wp_roles )) :
2011-08-10 17:11:11 +00:00
2011-12-09 17:01:56 +00:00
// Customer role
2012-01-05 11:31:22 +00:00
add_role ( 'customer' , __ ( 'Customer' , 'woocommerce' ), array (
2011-12-09 17:01:56 +00:00
'read' => true ,
'edit_posts' => false ,
'delete_posts' => false
));
// Shop manager role
2012-01-05 11:31:22 +00:00
add_role ( 'shop_manager' , __ ( 'Shop Manager' , 'woocommerce' ), array (
2011-12-09 17:01:56 +00:00
'read' => true ,
'read_private_pages' => true ,
'read_private_posts' => true ,
'edit_posts' => true ,
'edit_pages' => true ,
'edit_published_posts' => true ,
'edit_published_pages' => true ,
'edit_private_pages' => true ,
'edit_private_posts' => true ,
'edit_others_posts' => true ,
'edit_others_pages' => true ,
'publish_posts' => true ,
'publish_pages' => true ,
'delete_posts' => true ,
'delete_pages' => true ,
'delete_private_pages' => true ,
'delete_private_posts' => true ,
'delete_published_pages' => true ,
'delete_published_posts' => true ,
'delete_others_posts' => true ,
'delete_others_pages' => true ,
'manage_categories' => true ,
'manage_links' => true ,
'moderate_comments' => true ,
'unfiltered_html' => true ,
'upload_files' => true ,
'export' => true ,
'import' => true ,
2012-01-09 13:14:36 +00:00
'manage_woocommerce' => true ,
'manage_woocommerce_orders' => true ,
'manage_woocommerce_coupons' => true ,
'manage_woocommerce_products' => true ,
'view_woocommerce_reports' => true
2011-12-09 17:01:56 +00:00
));
2011-11-19 02:25:15 +00:00
2011-12-09 17:01:56 +00:00
// Main Shop capabilities for admin
$wp_roles -> add_cap ( 'administrator' , 'manage_woocommerce' );
2012-01-09 13:14:36 +00:00
$wp_roles -> add_cap ( 'administrator' , 'manage_woocommerce_orders' );
$wp_roles -> add_cap ( 'administrator' , 'manage_woocommerce_coupons' );
$wp_roles -> add_cap ( 'administrator' , 'manage_woocommerce_products' );
$wp_roles -> add_cap ( 'administrator' , 'view_woocommerce_reports' );
2011-12-09 17:01:56 +00:00
endif ;
}
2011-11-12 15:04:30 +00:00
2011-12-09 17:01:56 +00:00
/**
* Init WooCommerce taxonomies
**/
function init_taxonomy () {
/**
* Slugs
**/
2012-01-06 17:14:31 +00:00
$shop_page_id = woocommerce_get_page_id ( 'shop' );
2011-12-09 17:01:56 +00:00
$base_slug = ( $shop_page_id > 0 && get_page ( $shop_page_id )) ? get_page_uri ( $shop_page_id ) : 'shop' ;
$category_base = ( get_option ( 'woocommerce_prepend_shop_page_to_urls' ) == " yes " ) ? trailingslashit ( $base_slug ) : '' ;
2012-01-05 11:31:22 +00:00
$category_slug = ( get_option ( 'woocommerce_product_category_slug' )) ? get_option ( 'woocommerce_product_category_slug' ) : _x ( 'product-category' , 'slug' , 'woocommerce' );
2011-12-09 17:01:56 +00:00
2012-01-05 11:31:22 +00:00
$tag_slug = ( get_option ( 'woocommerce_product_tag_slug' )) ? get_option ( 'woocommerce_product_tag_slug' ) : _x ( 'product-tag' , 'slug' , 'woocommerce' );
2011-12-09 17:01:56 +00:00
2012-01-05 11:31:22 +00:00
$product_base = ( get_option ( 'woocommerce_prepend_shop_page_to_products' ) == 'yes' ) ? trailingslashit ( $base_slug ) : trailingslashit ( __ ( 'product' , 'woocommerce' ));
2011-12-09 17:01:56 +00:00
if ( get_option ( 'woocommerce_prepend_category_to_products' ) == 'yes' ) $product_base .= trailingslashit ( '%product_cat%' );
$product_base = untrailingslashit ( $product_base );
if ( current_user_can ( 'manage_woocommerce' )) $show_in_menu = 'woocommerce' ; else $show_in_menu = true ;
2011-11-12 15:04:30 +00:00
2011-12-09 17:01:56 +00:00
/**
* Taxonomies
**/
$admin_only_query_var = ( is_admin ()) ? true : false ;
register_taxonomy ( 'product_type' ,
array ( 'product' ),
array (
'hierarchical' => false ,
'show_ui' => false ,
'show_in_nav_menus' => false ,
'query_var' => $admin_only_query_var ,
'rewrite' => false
)
);
register_taxonomy ( 'product_cat' ,
array ( 'product' ),
array (
2012-01-31 16:21:29 +00:00
'hierarchical' => true ,
2011-12-09 17:01:56 +00:00
'update_count_callback' => '_update_post_term_count' ,
2012-01-05 11:31:22 +00:00
'label' => __ ( 'Product Categories' , 'woocommerce' ),
2011-12-09 17:01:56 +00:00
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Product Categories' , 'woocommerce' ),
'singular_name' => __ ( 'Product Category' , 'woocommerce' ),
'search_items' => __ ( 'Search Product Categories' , 'woocommerce' ),
'all_items' => __ ( 'All Product Categories' , 'woocommerce' ),
'parent_item' => __ ( 'Parent Product Category' , 'woocommerce' ),
'parent_item_colon' => __ ( 'Parent Product Category:' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Product Category' , 'woocommerce' ),
'update_item' => __ ( 'Update Product Category' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Product Category' , 'woocommerce' ),
'new_item_name' => __ ( 'New Product Category Name' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
'show_ui' => true ,
'query_var' => true ,
2012-01-09 13:14:36 +00:00
'capabilities' => array (
'manage_terms' => 'manage_woocommerce_products' ,
'edit_terms' => 'manage_woocommerce_products' ,
'delete_terms' => 'manage_woocommerce_products' ,
'assign_terms' => 'manage_woocommerce_products' ,
),
2012-02-06 12:37:50 +00:00
'rewrite' => array ( 'slug' => $category_base . $category_slug , 'with_front' => false , 'heirarchical' => true ),
2011-12-09 17:01:56 +00:00
)
);
register_taxonomy ( 'product_tag' ,
array ( 'product' ),
array (
'hierarchical' => false ,
2012-01-05 11:31:22 +00:00
'label' => __ ( 'Product Tags' , 'woocommerce' ),
2011-12-09 17:01:56 +00:00
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Product Tags' , 'woocommerce' ),
'singular_name' => __ ( 'Product Tag' , 'woocommerce' ),
'search_items' => __ ( 'Search Product Tags' , 'woocommerce' ),
'all_items' => __ ( 'All Product Tags' , 'woocommerce' ),
'parent_item' => __ ( 'Parent Product Tag' , 'woocommerce' ),
'parent_item_colon' => __ ( 'Parent Product Tag:' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Product Tag' , 'woocommerce' ),
'update_item' => __ ( 'Update Product Tag' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Product Tag' , 'woocommerce' ),
'new_item_name' => __ ( 'New Product Tag Name' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
'show_ui' => true ,
'query_var' => true ,
2012-01-09 13:14:36 +00:00
'capabilities' => array (
'manage_terms' => 'manage_woocommerce_products' ,
'edit_terms' => 'manage_woocommerce_products' ,
'delete_terms' => 'manage_woocommerce_products' ,
'assign_terms' => 'manage_woocommerce_products' ,
),
2011-12-09 17:01:56 +00:00
'rewrite' => array ( 'slug' => $category_base . $tag_slug , 'with_front' => false ),
)
);
register_taxonomy ( 'product_shipping_class' ,
2012-02-08 14:39:31 +00:00
array ( 'product' , 'product_variation' ),
2011-12-09 17:01:56 +00:00
array (
'hierarchical' => true ,
'update_count_callback' => '_update_post_term_count' ,
2012-01-05 11:31:22 +00:00
'label' => __ ( 'Shipping Classes' , 'woocommerce' ),
2011-12-09 17:01:56 +00:00
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Shipping Classes' , 'woocommerce' ),
'singular_name' => __ ( 'Shipping Class' , 'woocommerce' ),
'search_items' => __ ( 'Search Shipping Classes' , 'woocommerce' ),
'all_items' => __ ( 'All Shipping Classes' , 'woocommerce' ),
'parent_item' => __ ( 'Parent Shipping Class' , 'woocommerce' ),
'parent_item_colon' => __ ( 'Parent Shipping Class:' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Shipping Class' , 'woocommerce' ),
'update_item' => __ ( 'Update Shipping Class' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Shipping Class' , 'woocommerce' ),
'new_item_name' => __ ( 'New Shipping Class Name' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
'show_ui' => true ,
'show_in_nav_menus' => false ,
'query_var' => $admin_only_query_var ,
2012-01-09 13:14:36 +00:00
'capabilities' => array (
'manage_terms' => 'manage_woocommerce_products' ,
'edit_terms' => 'manage_woocommerce_products' ,
'delete_terms' => 'manage_woocommerce_products' ,
'assign_terms' => 'manage_woocommerce_products' ,
),
2011-12-09 17:01:56 +00:00
'rewrite' => false ,
)
);
register_taxonomy ( 'shop_order_status' ,
array ( 'shop_order' ),
array (
'hierarchical' => true ,
'update_count_callback' => '_update_post_term_count' ,
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Order statuses' , 'woocommerce' ),
'singular_name' => __ ( 'Order status' , 'woocommerce' ),
'search_items' => __ ( 'Search Order statuses' , 'woocommerce' ),
'all_items' => __ ( 'All Order statuses' , 'woocommerce' ),
'parent_item' => __ ( 'Parent Order status' , 'woocommerce' ),
'parent_item_colon' => __ ( 'Parent Order status:' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Order status' , 'woocommerce' ),
'update_item' => __ ( 'Update Order status' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Order status' , 'woocommerce' ),
'new_item_name' => __ ( 'New Order status Name' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
'show_ui' => false ,
'show_in_nav_menus' => false ,
'query_var' => $admin_only_query_var ,
'rewrite' => false ,
)
);
$attribute_taxonomies = $this -> get_attribute_taxonomies ();
if ( $attribute_taxonomies ) :
foreach ( $attribute_taxonomies as $tax ) :
$name = $this -> attribute_taxonomy_name ( $tax -> attribute_name );
$hierarchical = true ;
if ( $name ) :
$label = ( isset ( $tax -> attribute_label ) && $tax -> attribute_label ) ? $tax -> attribute_label : $tax -> attribute_name ;
$show_in_nav_menus = apply_filters ( 'woocommerce_attribute_show_in_nav_menus' , false , $name );
register_taxonomy ( $name ,
array ( 'product' ),
array (
'hierarchical' => $hierarchical ,
'labels' => array (
'name' => $label ,
'singular_name' => $label ,
2012-01-05 11:31:22 +00:00
'search_items' => __ ( 'Search' , 'woocommerce' ) . ' ' . $label ,
'all_items' => __ ( 'All' , 'woocommerce' ) . ' ' . $label ,
'parent_item' => __ ( 'Parent' , 'woocommerce' ) . ' ' . $label ,
'parent_item_colon' => __ ( 'Parent' , 'woocommerce' ) . ' ' . $label . ':' ,
'edit_item' => __ ( 'Edit' , 'woocommerce' ) . ' ' . $label ,
'update_item' => __ ( 'Update' , 'woocommerce' ) . ' ' . $label ,
'add_new_item' => __ ( 'Add New' , 'woocommerce' ) . ' ' . $label ,
'new_item_name' => __ ( 'New' , 'woocommerce' ) . ' ' . $label
2011-12-09 17:01:56 +00:00
),
'show_ui' => false ,
'query_var' => true ,
'show_in_nav_menus' => $show_in_nav_menus ,
'rewrite' => array ( 'slug' => $category_base . strtolower ( sanitize_title ( $tax -> attribute_name )), 'with_front' => false , 'hierarchical' => $hierarchical ),
)
);
endif ;
endforeach ;
endif ;
/**
* Post Types
**/
register_post_type ( " product " ,
array (
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Products' , 'woocommerce' ),
'singular_name' => __ ( 'Product' , 'woocommerce' ),
'add_new' => __ ( 'Add Product' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Product' , 'woocommerce' ),
'edit' => __ ( 'Edit' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Product' , 'woocommerce' ),
'new_item' => __ ( 'New Product' , 'woocommerce' ),
'view' => __ ( 'View Product' , 'woocommerce' ),
'view_item' => __ ( 'View Product' , 'woocommerce' ),
'search_items' => __ ( 'Search Products' , 'woocommerce' ),
'not_found' => __ ( 'No Products found' , 'woocommerce' ),
'not_found_in_trash' => __ ( 'No Products found in trash' , 'woocommerce' ),
'parent' => __ ( 'Parent Product' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
2012-01-05 11:31:22 +00:00
'description' => __ ( 'This is where you can add new products to your store.' , 'woocommerce' ),
2011-12-09 17:01:56 +00:00
'public' => true ,
'show_ui' => true ,
'capability_type' => 'post' ,
2012-01-09 13:14:36 +00:00
'capabilities' => array (
'publish_posts' => 'manage_woocommerce_products' ,
'edit_posts' => 'manage_woocommerce_products' ,
'edit_others_posts' => 'manage_woocommerce_products' ,
'delete_posts' => 'manage_woocommerce_products' ,
'delete_others_posts' => 'manage_woocommerce_products' ,
'read_private_posts' => 'manage_woocommerce_products' ,
'edit_post' => 'manage_woocommerce_products' ,
'delete_post' => 'manage_woocommerce_products' ,
'read_post' => 'manage_woocommerce_products'
),
2011-12-09 17:01:56 +00:00
'publicly_queryable' => true ,
'exclude_from_search' => false ,
2012-01-31 16:21:29 +00:00
'hierarchical' => false , // Hierarcal causes memory issues - WP loads all records!
2011-12-14 23:32:37 +00:00
'rewrite' => array ( 'slug' => $product_base , 'with_front' => false , 'feeds' => $base_slug ),
2011-12-09 17:01:56 +00:00
'query_var' => true ,
2011-12-24 16:57:36 +00:00
'supports' => array ( 'title' , 'editor' , 'excerpt' , 'thumbnail' , 'comments' , 'custom-fields' ),
2011-12-09 17:01:56 +00:00
'has_archive' => $base_slug ,
'show_in_nav_menus' => false ,
'menu_icon' => $this -> plugin_url () . '/assets/images/icons/menu_icon_products.png'
)
);
register_post_type ( " product_variation " ,
array (
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Variations' , 'woocommerce' ),
'singular_name' => __ ( 'Variation' , 'woocommerce' ),
'add_new' => __ ( 'Add Variation' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Variation' , 'woocommerce' ),
'edit' => __ ( 'Edit' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Variation' , 'woocommerce' ),
'new_item' => __ ( 'New Variation' , 'woocommerce' ),
'view' => __ ( 'View Variation' , 'woocommerce' ),
'view_item' => __ ( 'View Variation' , 'woocommerce' ),
'search_items' => __ ( 'Search Variations' , 'woocommerce' ),
'not_found' => __ ( 'No Variations found' , 'woocommerce' ),
'not_found_in_trash' => __ ( 'No Variations found in trash' , 'woocommerce' ),
'parent' => __ ( 'Parent Variation' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
'public' => true ,
'show_ui' => false ,
'capability_type' => 'post' ,
2012-01-09 13:14:36 +00:00
'capabilities' => array (
'publish_posts' => 'manage_woocommerce_products' ,
'edit_posts' => 'manage_woocommerce_products' ,
'edit_others_posts' => 'manage_woocommerce_products' ,
'delete_posts' => 'manage_woocommerce_products' ,
'delete_others_posts' => 'manage_woocommerce_products' ,
'read_private_posts' => 'manage_woocommerce_products' ,
'edit_post' => 'manage_woocommerce_products' ,
'delete_post' => 'manage_woocommerce_products' ,
'read_post' => 'manage_woocommerce_products'
),
2011-12-09 17:01:56 +00:00
'publicly_queryable' => true ,
'exclude_from_search' => true ,
2012-01-31 16:21:29 +00:00
'hierarchical' => false ,
2011-12-09 17:01:56 +00:00
'rewrite' => false ,
'query_var' => true ,
'supports' => array ( 'title' , 'editor' , 'custom-fields' , 'page-attributes' , 'thumbnail' ),
'show_in_nav_menus' => false
)
);
register_post_type ( " shop_order " ,
array (
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Orders' , 'woocommerce' ),
'singular_name' => __ ( 'Order' , 'woocommerce' ),
'add_new' => __ ( 'Add Order' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Order' , 'woocommerce' ),
'edit' => __ ( 'Edit' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Order' , 'woocommerce' ),
'new_item' => __ ( 'New Order' , 'woocommerce' ),
'view' => __ ( 'View Order' , 'woocommerce' ),
'view_item' => __ ( 'View Order' , 'woocommerce' ),
'search_items' => __ ( 'Search Orders' , 'woocommerce' ),
'not_found' => __ ( 'No Orders found' , 'woocommerce' ),
'not_found_in_trash' => __ ( 'No Orders found in trash' , 'woocommerce' ),
'parent' => __ ( 'Parent Orders' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
2012-01-05 11:31:22 +00:00
'description' => __ ( 'This is where store orders are stored.' , 'woocommerce' ),
2011-12-09 17:01:56 +00:00
'public' => true ,
'show_ui' => true ,
'capability_type' => 'post' ,
'capabilities' => array (
2012-01-09 13:14:36 +00:00
'publish_posts' => 'manage_woocommerce_orders' ,
'edit_posts' => 'manage_woocommerce_orders' ,
'edit_others_posts' => 'manage_woocommerce_orders' ,
'delete_posts' => 'manage_woocommerce_orders' ,
'delete_others_posts' => 'manage_woocommerce_orders' ,
'read_private_posts' => 'manage_woocommerce_orders' ,
'edit_post' => 'manage_woocommerce_orders' ,
'delete_post' => 'manage_woocommerce_orders' ,
'read_post' => 'manage_woocommerce_orders'
2011-12-09 17:01:56 +00:00
),
'publicly_queryable' => false ,
'exclude_from_search' => true ,
'show_in_menu' => $show_in_menu ,
'hierarchical' => false ,
'show_in_nav_menus' => false ,
'rewrite' => false ,
'query_var' => true ,
'supports' => array ( 'title' , 'comments' , 'custom-fields' ),
'has_archive' => false
)
);
2011-08-10 17:11:11 +00:00
2011-12-09 17:01:56 +00:00
register_post_type ( " shop_coupon " ,
array (
'labels' => array (
2012-01-05 11:31:22 +00:00
'name' => __ ( 'Coupons' , 'woocommerce' ),
'singular_name' => __ ( 'Coupon' , 'woocommerce' ),
'add_new' => __ ( 'Add Coupon' , 'woocommerce' ),
'add_new_item' => __ ( 'Add New Coupon' , 'woocommerce' ),
'edit' => __ ( 'Edit' , 'woocommerce' ),
'edit_item' => __ ( 'Edit Coupon' , 'woocommerce' ),
'new_item' => __ ( 'New Coupon' , 'woocommerce' ),
'view' => __ ( 'View Coupons' , 'woocommerce' ),
'view_item' => __ ( 'View Coupon' , 'woocommerce' ),
'search_items' => __ ( 'Search Coupons' , 'woocommerce' ),
'not_found' => __ ( 'No Coupons found' , 'woocommerce' ),
'not_found_in_trash' => __ ( 'No Coupons found in trash' , 'woocommerce' ),
'parent' => __ ( 'Parent Coupon' , 'woocommerce' )
2011-12-09 17:01:56 +00:00
),
2012-01-05 11:31:22 +00:00
'description' => __ ( 'This is where you can add new coupons that customers can use in your store.' , 'woocommerce' ),
2011-12-09 17:01:56 +00:00
'public' => true ,
'show_ui' => true ,
'capability_type' => 'post' ,
'capabilities' => array (
2012-01-09 13:14:36 +00:00
'publish_posts' => 'manage_woocommerce_coupons' ,
'edit_posts' => 'manage_woocommerce_coupons' ,
'edit_others_posts' => 'manage_woocommerce_coupons' ,
'delete_posts' => 'manage_woocommerce_coupons' ,
'delete_others_posts' => 'manage_woocommerce_coupons' ,
'read_private_posts' => 'manage_woocommerce_coupons' ,
'edit_post' => 'manage_woocommerce_coupons' ,
'delete_post' => 'manage_woocommerce_coupons' ,
'read_post' => 'manage_woocommerce_coupons'
2011-12-09 17:01:56 +00:00
),
'publicly_queryable' => false ,
'exclude_from_search' => true ,
'show_in_menu' => $show_in_menu ,
'hierarchical' => false ,
'rewrite' => false ,
'query_var' => false ,
'supports' => array ( 'title' ),
'show_in_nav_menus' => false ,
)
);
}
2011-08-10 17:11:11 +00:00
2011-12-09 17:01:56 +00:00
/**
* Init images
*/
function init_image_sizes () {
// Image sizes
$shop_thumbnail_crop = ( get_option ( 'woocommerce_thumbnail_image_crop' ) == 1 ) ? true : false ;
$shop_catalog_crop = ( get_option ( 'woocommerce_catalog_image_crop' ) == 1 ) ? true : false ;
$shop_single_crop = ( get_option ( 'woocommerce_single_image_crop' ) == 1 ) ? true : false ;
2011-08-10 17:11:11 +00:00
2011-12-09 17:01:56 +00:00
add_image_size ( 'shop_thumbnail' , $this -> get_image_size ( 'shop_thumbnail_image_width' ), $this -> get_image_size ( 'shop_thumbnail_image_height' ), $shop_thumbnail_crop );
add_image_size ( 'shop_catalog' , $this -> get_image_size ( 'shop_catalog_image_width' ), $this -> get_image_size ( 'shop_catalog_image_height' ), $shop_catalog_crop );
add_image_size ( 'shop_single' , $this -> get_image_size ( 'shop_single_image_width' ), $this -> get_image_size ( 'shop_single_image_height' ), $shop_single_crop );
}
2011-11-12 15:04:30 +00:00
2011-12-09 17:01:56 +00:00
/**
* Init frontend CSS
*/
function init_styles () {
$suffix = defined ( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' ;
2011-12-15 19:22:15 +00:00
$chosen_en = ( get_option ( 'woocommerce_enable_chosen' ) == 'yes' ) ? true : false ;
$lightbox_en = ( get_option ( 'woocommerce_enable_lightbox' ) == 'yes' ) ? true : false ;
2011-12-09 17:01:56 +00:00
// Optional front end css
if (( defined ( 'WOOCOMMERCE_USE_CSS' ) && WOOCOMMERCE_USE_CSS ) || ( ! defined ( 'WOOCOMMERCE_USE_CSS' ) && get_option ( 'woocommerce_frontend_css' ) == 'yes' )) :
$css = file_exists ( get_stylesheet_directory () . '/woocommerce/style.css' ) ? get_stylesheet_directory_uri () . '/woocommerce/style.css' : $this -> plugin_url () . '/assets/css/woocommerce.css' ;
wp_register_style ( 'woocommerce_frontend_styles' , $css );
wp_enqueue_style ( 'woocommerce_frontend_styles' );
endif ;
2011-11-12 15:04:30 +00:00
2011-12-15 19:22:15 +00:00
if ( $lightbox_en ) wp_enqueue_style ( 'woocommerce_fancybox_styles' , $this -> plugin_url () . '/assets/css/fancybox' . $suffix . '.css' );
if ( $chosen_en ) wp_enqueue_style ( 'woocommerce_chosen_styles' , $this -> plugin_url () . '/assets/css/chosen' . $suffix . '.css' );
2011-12-09 17:01:56 +00:00
}
/**
* Register / queue frontend scripts
*/
function frontend_scripts () {
$suffix = defined ( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' ;
$lightbox_en = ( get_option ( 'woocommerce_enable_lightbox' ) == 'yes' ) ? true : false ;
2011-12-15 19:22:15 +00:00
$chosen_en = ( get_option ( 'woocommerce_enable_chosen' ) == 'yes' ) ? true : false ;
2011-12-09 17:01:56 +00:00
$jquery_ui_en = ( get_option ( 'woocommerce_enable_jquery_ui' ) == 'yes' ) ? true : false ;
$scripts_position = ( get_option ( 'woocommerce_scripts_position' ) == 'yes' ) ? true : false ;
2012-01-07 15:36:12 +00:00
// Woocommerce.min.js is minified and contains woocommerce_plugins
wp_enqueue_script ( 'woocommerce' , $this -> plugin_url () . '/assets/js/woocommerce.min.js' , array ( 'jquery' ), '1.0' , $scripts_position );
2011-12-09 17:01:56 +00:00
2012-01-07 15:36:12 +00:00
if ( $lightbox_en )
wp_enqueue_script ( 'fancybox' , $this -> plugin_url () . '/assets/js/fancybox' . $suffix . '.js' , array ( 'jquery' ), '1.0' , $scripts_position );
2011-12-09 17:01:56 +00:00
2012-01-07 15:36:12 +00:00
if ( $chosen_en && is_checkout ())
wp_enqueue_script ( 'chosen' , $this -> plugin_url () . '/assets/js/chosen.jquery' . $suffix . '.js' , array ( 'jquery' ), '1.0' );
2011-12-15 19:22:15 +00:00
2011-12-09 17:01:56 +00:00
if ( $jquery_ui_en ) :
2012-01-07 15:36:12 +00:00
wp_enqueue_script ( 'jqueryui' , $this -> plugin_url () . '/assets/js/jquery-ui' . $suffix . '.js' , array ( 'jquery' ), '1.0' , $scripts_position );
wp_enqueue_script ( 'wc_price_slider' , $this -> plugin_url () . '/assets/js/price_slider' . $suffix . '.js' , array ( 'jqueryui' ), '1.0' , $scripts_position );
2011-12-09 17:01:56 +00:00
$woocommerce_price_slider_params = array (
2012-01-07 15:36:12 +00:00
'currency_symbol' => get_woocommerce_currency_symbol (),
'currency_pos' => get_option ( 'woocommerce_currency_pos' ),
'min_price' => isset ( $_SESSION [ 'min_price' ]) ? $_SESSION [ 'min_price' ] : '' ,
'max_price' => isset ( $_SESSION [ 'max_price' ]) ? $_SESSION [ 'max_price' ] : ''
2011-12-09 17:01:56 +00:00
);
wp_localize_script ( 'wc_price_slider' , 'woocommerce_price_slider_params' , $woocommerce_price_slider_params );
endif ;
/* Script variables */
$states = json_encode ( $this -> countries -> states );
$woocommerce_params = array (
'countries' => $states ,
2012-01-05 11:31:22 +00:00
'select_state_text' => __ ( 'Select an option…' , 'woocommerce' ),
2011-12-09 17:01:56 +00:00
'plugin_url' => $this -> plugin_url (),
'ajax_url' => ( ! is_ssl ()) ? str_replace ( 'https' , 'http' , admin_url ( 'admin-ajax.php' )) : admin_url ( 'admin-ajax.php' ),
'get_variation_nonce' => wp_create_nonce ( " get-variation " ),
'add_to_cart_nonce' => wp_create_nonce ( " add-to-cart " ),
'update_order_review_nonce' => wp_create_nonce ( " update-order-review " ),
'update_shipping_method_nonce' => wp_create_nonce ( " update-shipping-method " ),
'option_guest_checkout' => get_option ( 'woocommerce_enable_guest_checkout' ),
'checkout_url' => admin_url ( 'admin-ajax.php?action=woocommerce-checkout' ),
2012-01-07 15:36:12 +00:00
'option_ajax_add_to_cart' => get_option ( 'woocommerce_enable_ajax_add_to_cart' ),
'is_checkout' => ( is_page ( woocommerce_get_page_id ( 'checkout' )) ) ? 1 : 0 ,
'is_pay_page' => ( is_page ( woocommerce_get_page_id ( 'pay' )) ) ? 1 : 0 ,
'is_cart' => ( is_cart () ) ? 1 : 0
2011-12-09 17:01:56 +00:00
);
2012-01-07 15:36:12 +00:00
if ( is_checkout () || is_cart ())
2011-12-15 23:24:02 +00:00
$woocommerce_params [ 'locale' ] = json_encode ( $this -> countries -> get_country_locale () );
2012-01-06 17:14:31 +00:00
wp_localize_script ( 'woocommerce' , 'woocommerce_params' , apply_filters ( 'woocommerce_params' , $woocommerce_params ) );
2011-12-09 17:01:56 +00:00
}
2011-12-09 21:55:49 +00:00
/** Load Instances on demand **********************************************/
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/**
2011-12-10 17:28:32 +00:00
* Get Checkout Class
2011-12-09 21:55:49 +00:00
*/
function checkout () {
2012-01-27 16:38:39 +00:00
if ( ! class_exists ( 'WC_Checkout' ) ) :
include ( 'classes/class-wc-checkout.php' );
$this -> checkout = new WC_Checkout ();
2012-01-12 00:54:45 +00:00
endif ;
return $this -> checkout ;
2011-12-09 21:55:49 +00:00
}
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/**
2011-12-10 17:28:32 +00:00
* Get Logging Class
2011-12-09 21:55:49 +00:00
*/
function logger () {
2012-01-27 16:38:39 +00:00
if ( ! class_exists ( 'WC_Logger' ) ) include ( 'classes/class-wc-logger.php' );
return new WC_Logger ();
2011-12-09 21:55:49 +00:00
}
2011-12-10 17:28:32 +00:00
2012-01-13 00:46:56 +00:00
/**
* Get Validation Class
*/
function validation () {
2012-01-27 16:38:39 +00:00
if ( ! class_exists ( 'WC_Validation' ) ) include ( 'classes/class-wc-validation.php' );
return new WC_Validation ();
2012-01-13 00:46:56 +00:00
}
2011-12-10 17:28:32 +00:00
/**
* Email Class
*/
function send_transactional_email ( $args = array () ) {
$this -> mailer ();
do_action ( current_filter () . '_notification' , $args );
}
function mailer () {
// Init mail class
2012-01-27 16:38:39 +00:00
if ( ! class_exists ( 'WC_Email' ) ) :
include ( 'classes/class-wc-email.php' );
$this -> woocommerce_email = new WC_Email ();
2011-12-10 17:28:32 +00:00
endif ;
return $this -> woocommerce_email ;
}
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/** Helper functions ******************************************************/
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/**
* Get the plugin url
*/
function plugin_url () {
if ( $this -> plugin_url ) return $this -> plugin_url ;
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
if ( is_ssl ()) :
return $this -> plugin_url = str_replace ( 'http://' , 'https://' , WP_PLUGIN_URL ) . " / " . plugin_basename ( dirname ( __FILE__ ));
else :
return $this -> plugin_url = WP_PLUGIN_URL . " / " . plugin_basename ( dirname ( __FILE__ ));
endif ;
}
/**
* Get the plugin path
*/
function plugin_path () {
if ( $this -> plugin_path ) return $this -> plugin_path ;
return $this -> plugin_path = WP_PLUGIN_DIR . " / " . plugin_basename ( dirname ( __FILE__ ));
}
/**
* Return the URL with https if SSL is on
*/
function force_ssl ( $content ) {
if ( is_ssl ()) :
if ( is_array ( $content )) :
$content = array_map ( array ( & $this , 'force_ssl' ) , $content );
2011-12-09 17:01:56 +00:00
else :
2011-12-09 21:55:49 +00:00
$content = str_replace ( 'http:' , 'https:' , $content );
2011-12-09 17:01:56 +00:00
endif ;
2011-12-09 21:55:49 +00:00
endif ;
return $content ;
}
/**
* Get an image size
*
* Variable is filtered by woocommerce_get_image_size_ { image_size }
*/
function get_image_size ( $image_size ) {
$return = '' ;
switch ( $image_size ) :
case " shop_thumbnail_image_width " : $return = get_option ( 'woocommerce_thumbnail_image_width' ); break ;
case " shop_thumbnail_image_height " : $return = get_option ( 'woocommerce_thumbnail_image_height' ); break ;
case " shop_catalog_image_width " : $return = get_option ( 'woocommerce_catalog_image_width' ); break ;
case " shop_catalog_image_height " : $return = get_option ( 'woocommerce_catalog_image_height' ); break ;
case " shop_single_image_width " : $return = get_option ( 'woocommerce_single_image_width' ); break ;
case " shop_single_image_height " : $return = get_option ( 'woocommerce_single_image_height' ); break ;
endswitch ;
return apply_filters ( 'woocommerce_get_image_size_' . $image_size , $return );
}
/** Messages ****************************************************************/
/**
* Load Messages
*/
function load_messages () {
if ( isset ( $_SESSION [ 'errors' ])) $this -> errors = $_SESSION [ 'errors' ];
if ( isset ( $_SESSION [ 'messages' ])) $this -> messages = $_SESSION [ 'messages' ];
2011-10-06 10:46:19 +00:00
2011-12-09 21:55:49 +00:00
unset ( $_SESSION [ 'messages' ]);
unset ( $_SESSION [ 'errors' ]);
}
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/**
* Add an error
*/
function add_error ( $error ) { $this -> errors [] = $error ; }
/**
* Add a message
*/
function add_message ( $message ) { $this -> messages [] = $message ; }
/** Clear messages and errors from the session data */
function clear_messages () {
$this -> errors = $this -> messages = array ();
unset ( $_SESSION [ 'messages' ]);
unset ( $_SESSION [ 'errors' ]);
}
/**
* Get error count
*/
function error_count () { return sizeof ( $this -> errors ); }
/**
* Get message count
*/
function message_count () { return sizeof ( $this -> messages ); }
2012-02-08 15:20:32 +00:00
/**
* Get errors
*/
function get_errors () { return ( array ) $this -> errors ; }
/**
* Get messages
*/
function get_messages () { return ( array ) $this -> messages ; }
2011-12-09 21:55:49 +00:00
/**
* Output the errors and messages
*/
2012-02-08 15:20:32 +00:00
function show_messages () { woocommerce_show_messages (); }
2011-12-09 21:55:49 +00:00
2012-01-27 18:31:30 +00:00
/**
* Set session data for messages
*/
function set_messages () {
$_SESSION [ 'errors' ] = $this -> errors ;
$_SESSION [ 'messages' ] = $this -> messages ;
}
2011-12-09 21:55:49 +00:00
/**
* Redirection hook which stores messages into session data
*/
function redirect ( $location , $status ) {
global $is_IIS ;
2011-12-20 13:44:18 +00:00
2012-01-27 18:31:30 +00:00
$this -> set_messages ();
2011-12-09 17:01:56 +00:00
2011-12-20 13:44:18 +00:00
// IIS fix
if ( $is_IIS ) session_write_close ();
2012-01-06 17:14:31 +00:00
return apply_filters ( 'woocommerce_redirect' , $location );
2011-12-09 21:55:49 +00:00
}
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/** Attribute Helpers ****************************************************************/
/**
* Get attribute taxonomies
*/
function get_attribute_taxonomies () {
global $wpdb ;
if ( ! $this -> attribute_taxonomies ) :
$this -> attribute_taxonomies = $wpdb -> get_results ( " SELECT * FROM " . $wpdb -> prefix . " woocommerce_attribute_taxonomies; " );
endif ;
return $this -> attribute_taxonomies ;
}
/**
* Get a product attributes name
*/
function attribute_taxonomy_name ( $name ) {
return 'pa_' . sanitize_title ( $name );
}
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/**
* Get a product attributes label
*/
function attribute_label ( $name ) {
global $wpdb ;
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
if ( strstr ( $name , 'pa_' )) :
$name = str_replace ( 'pa_' , '' , sanitize_title ( $name ) );
$label = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT attribute_label FROM " . $wpdb -> prefix . " woocommerce_attribute_taxonomies WHERE attribute_name = %s; " , $name ) );
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
if ( $label ) return $label ; else return ucfirst ( $name );
else :
return $name ;
endif ;
}
2011-12-09 17:01:56 +00:00
2011-12-09 21:55:49 +00:00
/** Coupon Helpers ********************************************************/
2011-10-06 10:46:19 +00:00
2011-12-09 21:55:49 +00:00
/**
* Get coupon types
*/
function get_coupon_discount_types () {
if ( ! isset ( $this -> coupon_discount_types )) :
$this -> coupon_discount_types = apply_filters ( 'woocommerce_coupon_discount_types' , array (
2012-01-05 11:31:22 +00:00
'fixed_cart' => __ ( 'Cart Discount' , 'woocommerce' ),
'percent' => __ ( 'Cart % Discount' , 'woocommerce' ),
'fixed_product' => __ ( 'Product Discount' , 'woocommerce' ),
'percent_product' => __ ( 'Product % Discount' , 'woocommerce' )
2011-12-09 21:55:49 +00:00
));
endif ;
return $this -> coupon_discount_types ;
}
/**
* Get a coupon type ' s name
*/
function get_coupon_discount_type ( $type = '' ) {
$types = ( array ) $this -> get_coupon_discount_types ();
if ( isset ( $types [ $type ])) return $types [ $type ];
}
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
/** Nonces ****************************************************************/
/**
* Return a nonce field
*/
function nonce_field ( $action , $referer = true , $echo = true ) { return wp_nonce_field ( 'woocommerce-' . $action , '_n' , $referer , $echo ); }
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
/**
* Return a url with a nonce appended
*/
function nonce_url ( $action , $url = '' ) { return add_query_arg ( '_n' , wp_create_nonce ( 'woocommerce-' . $action ), $url ); }
/**
* Check a nonce and sets woocommerce error in case it is invalid
* To fail silently , set the error_message to an empty string
*
* @ param string $name the nonce name
* @ param string $action then nonce action
* @ param string $method the http request method _POST , _GET or _REQUEST
* @ param string $error_message custom error message , or false for default message , or an empty string to fail silently
*
* @ return bool
*/
function verify_nonce ( $action , $method = '_POST' , $error_message = false ) {
2011-10-06 10:46:19 +00:00
2011-12-09 19:55:09 +00:00
$name = '_n' ;
$action = 'woocommerce-' . $action ;
2011-10-06 10:46:19 +00:00
2012-01-05 11:31:22 +00:00
if ( $error_message === false ) $error_message = __ ( 'Action failed. Please refresh the page and retry.' , 'woocommerce' );
2011-12-09 19:55:09 +00:00
if ( ! in_array ( $method , array ( '_GET' , '_POST' , '_REQUEST' ))) $method = '_POST' ;
if ( isset ( $_REQUEST [ $name ]) && wp_verify_nonce ( $_REQUEST [ $name ], $action ) ) return true ;
if ( $error_message ) $this -> add_error ( $error_message );
return false ;
}
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
/** Cache Helpers *********************************************************/
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
/**
* Cache API
*/
function cache ( $id , $data , $args = array () ) {
if ( ! isset ( $this -> _cache [ $id ]) ) $this -> _cache [ $id ] = array ();
if ( empty ( $args ) ) $this -> _cache [ $id ][ 0 ] = $data ;
else $this -> _cache [ $id ][ serialize ( $args ) ] = $data ;
return $data ;
}
function cache_get ( $id , $args = array () ) {
if ( ! isset ( $this -> _cache [ $id ]) ) return null ;
if ( empty ( $args ) && isset ( $this -> _cache [ $id ][ 0 ]) ) return $this -> _cache [ $id ][ 0 ];
elseif ( isset ( $this -> _cache [ $id ][ serialize ( $args ) ] ) ) return $this -> _cache [ $id ][ serialize ( $args ) ];
}
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
/**
* Shortcode cache
*/
function shortcode_wrapper ( $function , $atts = array ()) {
if ( $content = $this -> cache_get ( $function . '-shortcode' , $atts ) ) return $content ;
ob_start ();
call_user_func ( $function , $atts );
return $this -> cache ( $function . '-shortcode' , ob_get_clean (), $atts );
}
/** Transients ************************************************************/
/**
* Clear Product Transients
*/
function clear_product_transients ( $post_id = 0 ) {
global $wpdb ;
delete_transient ( 'woocommerce_products_onsale' );
delete_transient ( 'woocommerce_hidden_product_ids' );
delete_transient ( 'woocommerce_hidden_from_search_product_ids' );
$wpdb -> query ( " DELETE FROM ` $wpdb->options ` WHERE `option_name` LIKE ('_transient_woocommerce_unfiltered_product_ids_%') " );
$wpdb -> query ( " DELETE FROM ` $wpdb->options ` WHERE `option_name` LIKE ('_transient_woocommerce_layered_nav_count_%') " );
if ( $post_id > 0 ) :
$post_id = ( int ) $post_id ;
delete_transient ( 'woocommerce_product_total_stock_' . $post_id );
delete_transient ( 'woocommerce_product_children_ids_' . $post_id );
else :
$wpdb -> query ( " DELETE FROM ` $wpdb->options ` WHERE `option_name` LIKE ('_transient_woocommerce_product_children_ids_%') " );
$wpdb -> query ( " DELETE FROM ` $wpdb->options ` WHERE `option_name` LIKE ('_transient_woocommerce_product_total_stock_%') " );
endif ;
}
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
/** Body Classes **********************************************************/
function add_body_class ( $class ) {
$this -> _body_classes [] = $class ;
}
function output_body_class ( $classes ) {
if ( sizeof ( $this -> _body_classes ) > 0 ) $classes = array_merge ( $classes , $this -> _body_classes );
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
if ( is_singular ( 'product' ) ) :
$key = array_search ( 'singular' , $classes );
if ( $key !== false ) unset ( $classes [ $key ]);
endif ;
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
return $classes ;
}
/** Inline JavaScript Helper **********************************************/
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
function add_inline_js ( $code ) {
$this -> _inline_js .= " \n " . $code . " \n " ;
}
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
function output_inline_js () {
if ( $this -> _inline_js ) :
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
echo " <!-- WooCommerce JavaScript--> \n <script type= \" text/javascript \" > \n jQuery(document).ready(function( $ ) { " ;
2011-12-09 17:01:56 +00:00
2011-12-09 19:55:09 +00:00
echo $this -> _inline_js ;
echo " }); \n </script> \n " ;
2011-12-15 16:36:11 +00:00
$this -> _inline_js = '' ;
2011-12-09 19:55:09 +00:00
endif ;
}
2011-12-09 17:01:56 +00:00
}
2011-11-06 15:45:22 +00:00
2011-12-09 17:01:56 +00:00
/**
* Init woocommerce class
*/
2012-01-21 09:01:41 +00:00
$GLOBALS [ 'woocommerce' ] = new Woocommerce ();
2011-11-06 15:45:22 +00:00
2012-01-04 20:25:51 +00:00
endif ; // class_exists check