2011-08-09 15:16:18 +00:00
< ? php
2016-11-02 18:50:42 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
/**
* Legacy product contains all deprecated methods for this class and can be
* removed in the future .
*/
include_once ( 'abstract-wc-legacy-product.php' );
2011-08-09 15:16:18 +00:00
/**
2015-11-03 13:53:50 +00:00
* Abstract Product Class
2012-08-06 23:33:52 +00:00
*
2011-08-10 17:11:11 +00:00
* The WooCommerce product class handles individual product data .
2011-08-09 15:16:18 +00:00
*
2016-09-23 07:19:35 +00:00
* @ version 2.7 . 0
* @ package WooCommerce / Abstracts
* @ category Abstract Class
* @ author WooThemes
*/
class WC_Product extends WC_Abstract_Legacy_Product {
2016-11-02 18:50:42 +00:00
/**
* Post type .
* @ var string
*/
protected $post_type = 'product' ;
2016-09-23 07:19:35 +00:00
/**
2016-10-17 20:22:38 +00:00
* Stores product data .
2016-09-23 07:19:35 +00:00
*
* @ var array
*/
protected $data = array (
2016-11-02 18:50:42 +00:00
'name' => '' ,
'slug' => '' ,
'date_created' => '' ,
'date_modified' => '' ,
'status' => false ,
'featured' => false ,
'catalog_visibility' => 'hidden' ,
'description' => '' ,
'short_description' => '' ,
'sku' => '' ,
'price' => '' ,
'regular_price' => '' ,
'sale_price' => '' ,
'date_on_sale_from' => '' ,
'date_on_sale_to' => '' ,
'total_sales' => '0' ,
'tax_status' => 'taxable' ,
'tax_class' => '' ,
'manage_stock' => false ,
'stock_quantity' => null ,
'stock_status' => '' ,
'backorders' => 'no' ,
'sold_individually' => false ,
'weight' => '' ,
'length' => '' ,
'width' => '' ,
'height' => '' ,
'upsell_ids' => array (),
'cross_sell_ids' => array (),
'parent_id' => 0 ,
'reviews_allowed' => true ,
'purchase_note' => '' ,
'attributes' => array (),
'default_attributes' => array (),
'menu_order' => 0 ,
'virtual' => false ,
'downloadable' => false ,
'category_ids' => array (),
'tag_ids' => array (),
'shipping_class_id' => 0 ,
'downloads' => array (),
'image_id' => '' ,
'gallery_image_ids' => array (),
'download_limit' => - 1 ,
'download_expiry' => - 1 ,
2016-09-23 07:19:35 +00:00
);
/**
* Data stored in meta keys , but not considered " meta " .
*
* @ since 2.7 . 0
* @ var array
*/
2016-10-26 17:02:50 +00:00
protected $internal_meta_keys = array (
'_visibility' ,
'_sku' ,
'_price' ,
'_regular_price' ,
'_sale_price' ,
'_sale_price_dates_from' ,
'_sale_price_dates_to' ,
'total_sales' ,
'_tax_status' ,
'_tax_class' ,
'_manage_stock' ,
'_stock' ,
'_stock_status' ,
'_backorders' ,
'_sold_individually' ,
'_weight' ,
'_length' ,
'_width' ,
'_height' ,
'_upsell_ids' ,
'_crosssell_ids' ,
'_purchase_note' ,
'_default_attributes' ,
'_product_attributes' ,
'_virtual' ,
'_downloadable' ,
'_featured' ,
'_downloadable_files' ,
);
2016-09-23 07:19:35 +00:00
/**
* Supported features such as 'ajax_add_to_cart' .
*
* @ var array
*/
protected $supports = array ();
/**
* Get the product if ID is passed , otherwise the product is new and empty .
* This class should NOT be instantiated , but the wc_get_product () function
* should be used . It is possible , but the wc_get_product () is preferred .
*
* @ param int | WC_Product | object $product Product to init .
*/
2016-10-26 17:02:50 +00:00
public function __construct ( $product = 0 ) {
2016-10-17 20:22:38 +00:00
parent :: __construct ( $product );
2016-09-23 07:19:35 +00:00
if ( is_numeric ( $product ) && $product > 0 ) {
2016-11-11 14:31:15 +00:00
$this -> set_id ( $product );
2016-09-23 07:19:35 +00:00
} elseif ( $product instanceof self ) {
2016-11-11 14:31:15 +00:00
$this -> set_id ( absint ( $product -> get_id () ) );
2016-09-23 07:19:35 +00:00
} elseif ( ! empty ( $product -> ID ) ) {
2016-11-11 14:31:15 +00:00
$this -> set_id ( absint ( $product -> ID ) );
} else {
$this -> set_object_read ( true );
}
$this -> data_store = WC_Data_Store :: load ( 'product_' . $this -> get_type () );
if ( $this -> get_id () > 0 ) {
$this -> data_store -> read ( $this );
2016-09-23 07:19:35 +00:00
}
}
2016-11-03 12:03:19 +00:00
/**
* Prefix for action and filter hooks on data .
*
* @ since 2.7 . 0
* @ return string
*/
protected function get_hook_prefix () {
return 'woocommerce_product_get_' ;
}
2016-10-17 20:22:38 +00:00
2016-10-17 13:46:46 +00:00
/**
2016-11-02 18:50:42 +00:00
* Get internal type . Should return string and * should be overridden * by child classes .
2016-10-17 13:46:46 +00:00
* @ since 2.7 . 0
* @ return string
*/
public function get_type () {
2016-11-02 18:50:42 +00:00
// product_type is @deprecated but here for BW compat with child classes.
return $this -> product_type ;
2016-10-17 13:46:46 +00:00
}
2016-11-03 12:03:19 +00:00
/*
|--------------------------------------------------------------------------
| Getters
|--------------------------------------------------------------------------
|
| Methods for getting data from the product object .
*/
2016-11-09 12:26:46 +00:00
/**
* Get all class data in array format .
* @ since 2.7 . 0
* @ return array
*/
public function get_data () {
return array_merge (
array (
'id' => $this -> get_id (),
),
$this -> data ,
array (
'meta_data' => $this -> get_meta_data (),
)
);
}
2016-09-23 07:19:35 +00:00
/**
* Get product name .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_name ( $context = 'view' ) {
return $this -> get_prop ( 'name' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get product slug .
2016-11-03 12:03:19 +00:00
*
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_slug ( $context = 'view' ) {
return $this -> get_prop ( 'slug' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get product created date .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string Timestamp .
*/
2016-11-03 12:03:19 +00:00
public function get_date_created ( $context = 'view' ) {
return $this -> get_prop ( 'date_created' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get product modified date .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string Timestamp .
*/
2016-11-03 12:03:19 +00:00
public function get_date_modified ( $context = 'view' ) {
return $this -> get_prop ( 'date_modified' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get product status .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_status ( $context = 'view' ) {
return $this -> get_prop ( 'status' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* If the product is featured .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-17 13:46:46 +00:00
* @ return boolean
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_featured ( $context = 'view' ) {
return $this -> get_prop ( 'featured' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get catalog visibility .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_catalog_visibility ( $context = 'view' ) {
return $this -> get_prop ( 'catalog_visibility' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get product description .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_description ( $context = 'view' ) {
return $this -> get_prop ( 'description' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get product short description .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_short_description ( $context = 'view' ) {
return $this -> get_prop ( 'short_description' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get SKU ( Stock - keeping unit ) - product unique ID .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_sku ( $context = 'view' ) {
return $this -> get_prop ( 'sku' , $context );
2016-09-23 07:19:35 +00:00
}
2016-10-20 16:15:03 +00:00
/**
* Returns the product ' s active price .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-20 16:15:03 +00:00
* @ return string price
*/
2016-11-03 12:03:19 +00:00
public function get_price ( $context = 'view' ) {
return $this -> get_prop ( 'price' , $context );
2016-10-20 16:15:03 +00:00
}
2016-09-23 07:19:35 +00:00
/**
* Returns the product ' s regular price .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string price
*/
2016-11-03 12:03:19 +00:00
public function get_regular_price ( $context = 'view' ) {
return $this -> get_prop ( 'regular_price' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns the product ' s sale price .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string price
*/
2016-11-03 12:03:19 +00:00
public function get_sale_price ( $context = 'view' ) {
return $this -> get_prop ( 'sale_price' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get date on sale from .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_date_on_sale_from ( $context = 'view' ) {
return $this -> get_prop ( 'date_on_sale_from' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get date on sale to .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_date_on_sale_to ( $context = 'view' ) {
return $this -> get_prop ( 'date_on_sale_to' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get number total of sales .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return int
*/
2016-11-03 12:03:19 +00:00
public function get_total_sales ( $context = 'view' ) {
return $this -> get_prop ( 'total_sales' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns the tax status .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_tax_status ( $context = 'view' ) {
return $this -> get_prop ( 'tax_status' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns the tax class .
2016-11-03 12:03:19 +00:00
*
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_tax_class ( $context = 'view' ) {
return $this -> get_prop ( 'tax_class' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Return if product manage stock .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-17 13:46:46 +00:00
* @ return boolean
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_manage_stock ( $context = 'view' ) {
return $this -> get_prop ( 'manage_stock' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns number of items available for sale .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-17 13:46:46 +00:00
* @ return int | null
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_stock_quantity ( $context = 'view' ) {
return $this -> get_prop ( 'stock_quantity' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Return the stock status .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_stock_status ( $context = 'view' ) {
return $this -> get_prop ( 'stock_status' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get backorders .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ return string yes no or notify
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_backorders ( $context = 'view' ) {
return $this -> get_prop ( 'backorders' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Return if should be sold individually .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ return boolean
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_sold_individually ( $context = 'view' ) {
return $this -> get_prop ( 'sold_individually' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns the product ' s weight .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_weight ( $context = 'view' ) {
return $this -> get_prop ( 'weight' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns the product length .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_length ( $context = 'view' ) {
return $this -> get_prop ( 'length' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns the product width .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_width ( $context = 'view' ) {
return $this -> get_prop ( 'width' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns the product height .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_height ( $context = 'view' ) {
return $this -> get_prop ( 'height' , $context );
2016-09-23 07:19:35 +00:00
}
/**
2016-10-17 13:46:46 +00:00
* Get upsel IDs .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-17 13:46:46 +00:00
* @ return array
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_upsell_ids ( $context = 'view' ) {
return $this -> get_prop ( 'upsell_ids' , $context );
2016-09-23 07:19:35 +00:00
}
/**
2016-10-17 13:46:46 +00:00
* Get cross sell IDs .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-17 13:46:46 +00:00
* @ return array
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_cross_sell_ids ( $context = 'view' ) {
return $this -> get_prop ( 'cross_sell_ids' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get parent ID .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-29 23:02:50 +00:00
* @ return int
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_parent_id ( $context = 'view' ) {
return $this -> get_prop ( 'parent_id' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Return if reviews is allowed .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return bool
*/
2016-11-03 12:03:19 +00:00
public function get_reviews_allowed ( $context = 'view' ) {
return $this -> get_prop ( 'reviews_allowed' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get purchase note .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_purchase_note ( $context = 'view' ) {
return $this -> get_prop ( 'purchase_note' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Returns product attributes .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return array
*/
2016-11-03 12:03:19 +00:00
public function get_attributes ( $context = 'view' ) {
return $this -> get_prop ( 'attributes' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get default attributes .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-29 23:02:50 +00:00
* @ return array
2016-09-23 07:19:35 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_default_attributes ( $context = 'view' ) {
return $this -> get_prop ( 'default_attributes' , $context );
2016-09-23 07:19:35 +00:00
}
/**
* Get menu order .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-09-23 07:19:35 +00:00
* @ return int
*/
2016-11-03 12:03:19 +00:00
public function get_menu_order ( $context = 'view' ) {
return $this -> get_prop ( 'menu_order' , $context );
2016-09-23 07:19:35 +00:00
}
2016-10-17 20:22:38 +00:00
/**
2016-10-24 09:32:15 +00:00
* Get category ids .
2016-10-17 20:22:38 +00:00
*
2016-10-24 09:32:15 +00:00
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-24 09:32:15 +00:00
* @ return array
2016-10-17 20:22:38 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_category_ids ( $context = 'view' ) {
return $this -> get_prop ( 'category_ids' , $context );
2016-10-17 20:22:38 +00:00
}
/**
2016-10-24 09:32:15 +00:00
* Get tag ids .
2016-10-17 20:22:38 +00:00
*
2016-10-24 09:32:15 +00:00
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-17 20:22:38 +00:00
* @ return array
*/
2016-11-03 12:03:19 +00:00
public function get_tag_ids ( $context = 'view' ) {
return $this -> get_prop ( 'tag_ids' , $context );
2016-10-17 20:22:38 +00:00
}
2016-10-26 17:02:50 +00:00
/**
* Get virtual .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-26 17:02:50 +00:00
* @ return bool
*/
2016-11-03 12:03:19 +00:00
public function get_virtual ( $context = 'view' ) {
return $this -> get_prop ( 'virtual' , $context );
2016-10-26 17:02:50 +00:00
}
2016-10-25 20:24:27 +00:00
/**
* Returns the gallery attachment ids .
*
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-25 20:24:27 +00:00
* @ return array
*/
2016-11-03 12:03:19 +00:00
public function get_gallery_image_ids ( $context = 'view' ) {
return $this -> get_prop ( 'gallery_image_ids' , $context );
2016-10-25 20:24:27 +00:00
}
2016-10-26 17:02:50 +00:00
/**
* Get shipping class ID .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-26 17:02:50 +00:00
* @ return int
*/
2016-11-03 12:03:19 +00:00
public function get_shipping_class_id ( $context = 'view' ) {
return $this -> get_prop ( 'shipping_class_id' , $context );
2016-10-26 17:02:50 +00:00
}
/**
* Get downloads .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-26 17:02:50 +00:00
* @ return array
*/
2016-11-03 12:03:19 +00:00
public function get_downloads ( $context = 'view' ) {
return $this -> get_prop ( 'downloads' , $context );
2016-10-26 17:02:50 +00:00
}
2016-10-25 20:24:27 +00:00
/**
* Get download expiry .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-25 20:24:27 +00:00
* @ return int
*/
2016-11-03 12:03:19 +00:00
public function get_download_expiry ( $context = 'view' ) {
return $this -> get_prop ( 'download_expiry' , $context );
2016-10-25 20:24:27 +00:00
}
/**
2016-10-28 15:13:46 +00:00
* Get downloadable .
2016-10-25 20:24:27 +00:00
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-28 15:13:46 +00:00
* @ return bool
2016-10-25 20:24:27 +00:00
*/
2016-11-03 12:03:19 +00:00
public function get_downloadable ( $context = 'view' ) {
return $this -> get_prop ( 'downloadable' , $context );
2016-10-28 15:13:46 +00:00
}
/**
* Get download limit .
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-28 15:13:46 +00:00
* @ return int
*/
2016-11-03 12:03:19 +00:00
public function get_download_limit ( $context = 'view' ) {
return $this -> get_prop ( 'download_limit' , $context );
2016-10-25 20:24:27 +00:00
}
/**
2016-11-09 16:59:14 +00:00
* Get main image ID .
2016-10-25 20:24:27 +00:00
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param string $context
2016-10-25 20:24:27 +00:00
* @ return string
*/
2016-11-03 12:03:19 +00:00
public function get_image_id ( $context = 'view' ) {
return $this -> get_prop ( 'image_id' , $context );
2016-10-25 20:24:27 +00:00
}
2016-09-23 07:19:35 +00:00
/*
|--------------------------------------------------------------------------
| Setters
|--------------------------------------------------------------------------
|
| Functions for setting product data . These should not update anything in the
| database itself and should only change what is stored in the class
| object .
*/
/**
* Set product name .
*
* @ since 2.7 . 0
* @ param string $name Product name .
*/
public function set_name ( $name ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'name' , $name );
2016-09-23 07:19:35 +00:00
}
/**
* Set product slug .
*
* @ since 2.7 . 0
* @ param string $slug Product slug .
*/
public function set_slug ( $slug ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'slug' , $slug );
2016-09-23 07:19:35 +00:00
}
/**
* Set product created date .
*
* @ since 2.7 . 0
* @ param string $timestamp Timestamp .
*/
public function set_date_created ( $timestamp ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'date_created' , is_numeric ( $timestamp ) ? $timestamp : strtotime ( $timestamp ) );
2016-09-23 07:19:35 +00:00
}
/**
2016-09-29 23:02:50 +00:00
* Set product modified date .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
* @ param string $timestamp Timestamp .
*/
public function set_date_modified ( $timestamp ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'date_modified' , is_numeric ( $timestamp ) ? $timestamp : strtotime ( $timestamp ) );
2016-09-23 07:19:35 +00:00
}
/**
2016-09-29 23:02:50 +00:00
* Set product status .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
* @ param string $status Product status .
*/
public function set_status ( $status ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'status' , $status );
2016-09-23 07:19:35 +00:00
}
/**
* Set if the product is featured .
*
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ param bool | string
2016-09-23 07:19:35 +00:00
*/
public function set_featured ( $featured ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'featured' , wc_string_to_bool ( $featured ) );
2016-09-23 07:19:35 +00:00
}
/**
* Set catalog visibility .
*
* @ since 2.7 . 0
* @ throws WC_Data_Exception
* @ param string $visibility Options : 'hidden' , 'visible' , 'search' and 'catalog' .
*/
public function set_catalog_visibility ( $visibility ) {
$options = array_keys ( wc_get_product_visibility_options () );
if ( ! in_array ( $visibility , $options , true ) ) {
$this -> error ( 'product_invalid_catalog_visibility' , __ ( 'Invalid catalog visibility option.' , 'woocommerce' ) );
}
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'catalog_visibility' , $visibility );
2016-09-23 07:19:35 +00:00
}
/**
* Set product description .
*
* @ since 2.7 . 0
* @ param string $description Product description .
*/
public function set_description ( $description ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'description' , $description );
2016-09-23 07:19:35 +00:00
}
/**
* Set product short description .
*
* @ since 2.7 . 0
* @ param string $short_description Product short description .
*/
public function set_short_description ( $short_description ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'short_description' , $short_description );
2016-09-23 07:19:35 +00:00
}
/**
* Set SKU .
*
* @ since 2.7 . 0
* @ throws WC_Data_Exception
* @ param string $sku Product SKU .
*/
public function set_sku ( $sku ) {
2016-10-26 17:02:50 +00:00
$sku = ( string ) $sku ;
2016-09-29 23:16:42 +00:00
if ( ! empty ( $sku ) && ! wc_product_has_unique_sku ( $this -> get_id (), $sku ) ) {
2016-09-23 07:19:35 +00:00
$this -> error ( 'product_invalid_sku' , __ ( 'Invalid or duplicated SKU.' , 'woocommerce' ) );
}
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'sku' , $sku );
2016-09-23 07:19:35 +00:00
}
2016-10-20 16:15:03 +00:00
/**
* Set the product ' s active price .
*
* @ param string $price Price .
*/
public function set_price ( $price ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'price' , wc_format_decimal ( $price ) );
2016-10-20 16:15:03 +00:00
}
2016-09-23 07:19:35 +00:00
/**
* Set the product ' s regular price .
*
* @ since 2.7 . 0
* @ param string $price Regular price .
*/
public function set_regular_price ( $price ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'regular_price' , wc_format_decimal ( $price ) );
2016-09-23 07:19:35 +00:00
}
/**
* Set the product ' s sale price .
*
* @ since 2.7 . 0
* @ param string $price sale price .
*/
public function set_sale_price ( $price ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'sale_price' , wc_format_decimal ( $price ) );
2016-09-23 07:19:35 +00:00
}
/**
* Set date on sale from .
*
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ param string $timestamp Sale from date .
2016-09-23 07:19:35 +00:00
*/
2016-10-17 13:46:46 +00:00
public function set_date_on_sale_from ( $timestamp ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'date_on_sale_from' , is_numeric ( $timestamp ) ? $timestamp : strtotime ( $timestamp ) );
2016-09-23 07:19:35 +00:00
}
/**
* Set date on sale to .
*
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ param string $timestamp Sale to date .
2016-09-23 07:19:35 +00:00
*/
2016-10-17 14:56:16 +00:00
public function set_date_on_sale_to ( $timestamp ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'date_on_sale_to' , is_numeric ( $timestamp ) ? $timestamp : strtotime ( $timestamp ) );
2016-09-23 07:19:35 +00:00
}
/**
* Set number total of sales .
*
* @ since 2.7 . 0
* @ param int $total Total of sales .
*/
public function set_total_sales ( $total ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'total_sales' , absint ( $total ) );
2016-09-23 07:19:35 +00:00
}
/**
* Set the tax status .
*
* @ since 2.7 . 0
* @ throws WC_Data_Exception
* @ param string $status Tax status .
*/
public function set_tax_status ( $status ) {
$options = array (
'taxable' ,
'shipping' ,
'none' ,
);
2016-09-29 23:16:42 +00:00
// Set default if empty.
if ( empty ( $status ) ) {
$status = 'taxable' ;
}
2016-09-23 07:19:35 +00:00
if ( ! in_array ( $status , $options , true ) ) {
$this -> error ( 'product_invalid_tax_status' , __ ( 'Invalid product tax status.' , 'woocommerce' ) );
}
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'tax_status' , $status );
2016-09-23 07:19:35 +00:00
}
/**
* Set the tax class .
*
* @ since 2.7 . 0
* @ param string $class Tax class .
*/
public function set_tax_class ( $class ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'tax_class' , wc_clean ( $class ) );
2016-09-23 07:19:35 +00:00
}
/**
2016-09-29 23:02:50 +00:00
* Set if product manage stock .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ param bool
2016-09-23 07:19:35 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_manage_stock ( $manage_stock ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'manage_stock' , wc_string_to_bool ( $manage_stock ) );
2016-09-23 07:19:35 +00:00
}
/**
2016-09-29 23:02:50 +00:00
* Set number of items available for sale .
2016-09-23 07:19:35 +00:00
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
* @ param float | null $quantity Stock quantity .
2016-09-23 07:19:35 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_stock_quantity ( $quantity ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'stock_quantity' , '' !== $quantity ? wc_stock_amount ( $quantity ) : null );
2016-09-23 07:19:35 +00:00
}
/**
* Set stock status .
*
* @ param string $status New status .
*/
2016-11-11 14:31:15 +00:00
public function set_stock_status ( $status = '' ) {
2016-11-09 12:26:46 +00:00
$this -> set_prop ( 'stock_status' , 'outofstock' === $status ? 'outofstock' : 'instock' );
2016-09-23 07:19:35 +00:00
}
/**
2016-09-29 23:02:50 +00:00
* Set backorders .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-09-29 23:02:50 +00:00
* @ param string $backorders Options : 'yes' , 'no' or 'notify' .
2016-09-23 07:19:35 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_backorders ( $backorders ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'backorders' , $backorders );
2016-09-23 07:19:35 +00:00
}
/**
2016-09-29 23:02:50 +00:00
* Set if should be sold individually .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ param bool
2016-09-23 07:19:35 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_sold_individually ( $sold_individually ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'sold_individually' , wc_string_to_bool ( $sold_individually ) );
2016-09-23 07:19:35 +00:00
}
/**
2016-09-29 23:02:50 +00:00
* Set the product ' s weight .
2016-09-23 07:19:35 +00:00
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
* @ param float $weigth Total weigth .
2016-09-23 07:19:35 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_weight ( $weight ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'weight' , '' === $weight ? '' : wc_format_decimal ( $weight ) );
2016-09-23 07:19:35 +00:00
}
2012-08-06 23:33:52 +00:00
2015-02-10 15:01:04 +00:00
/**
2016-09-29 23:02:50 +00:00
* Set the product length .
2015-02-10 15:01:04 +00:00
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
* @ param float $weigth Total weigth .
2015-02-10 15:01:04 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_length ( $length ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'length' , '' === $length ? '' : wc_format_decimal ( $length ) );
2016-09-23 07:19:35 +00:00
}
2012-08-15 17:08:42 +00:00
2015-01-20 13:00:56 +00:00
/**
2016-09-29 23:02:50 +00:00
* Set the product width .
2015-02-10 15:01:04 +00:00
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
* @ param float $width Total width .
2015-02-10 15:01:04 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_width ( $width ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'width' , '' === $width ? '' : wc_format_decimal ( $width ) );
2016-09-23 07:19:35 +00:00
}
2012-08-15 17:08:42 +00:00
2015-02-10 15:01:04 +00:00
/**
2016-09-29 23:02:50 +00:00
* Set the product height .
2015-02-10 15:01:04 +00:00
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
* @ param float $height Total height .
2015-02-10 15:01:04 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_height ( $height ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'height' , '' === $height ? '' : wc_format_decimal ( $height ) );
2016-09-23 07:19:35 +00:00
}
2012-11-21 18:07:45 +00:00
2015-02-10 15:01:04 +00:00
/**
2016-10-17 13:46:46 +00:00
* Set upsell IDs .
2015-02-10 15:01:04 +00:00
*
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
2016-11-11 14:31:15 +00:00
* @ param array $upsell_ids IDs from the up - sell products .
2015-02-10 15:01:04 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_upsell_ids ( $upsell_ids ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'upsell_ids' , array_filter ( ( array ) $upsell_ids ) );
2016-09-23 07:19:35 +00:00
}
2015-01-20 13:00:56 +00:00
2015-02-10 15:01:04 +00:00
/**
2016-10-17 13:46:46 +00:00
* Set crosssell IDs .
2015-02-10 15:01:04 +00:00
*
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
2016-11-11 14:31:15 +00:00
* @ param array $cross_sell_ids IDs from the cross - sell products .
2015-02-10 15:01:04 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_cross_sell_ids ( $cross_sell_ids ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'cross_sell_ids' , array_filter ( ( array ) $cross_sell_ids ) );
2016-09-23 07:19:35 +00:00
}
2015-01-20 13:00:56 +00:00
2016-09-23 07:19:35 +00:00
/**
2016-09-29 23:02:50 +00:00
* Set parent ID .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-09-29 23:02:50 +00:00
* @ param int $parent_id Product parent ID .
2016-09-23 07:19:35 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_parent_id ( $parent_id ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'parent_id' , absint ( $parent_id ) );
2016-09-23 07:19:35 +00:00
}
2015-12-02 11:46:51 +00:00
2015-11-02 11:23:50 +00:00
/**
2016-09-29 23:02:50 +00:00
* Set if reviews is allowed .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-09-29 23:02:50 +00:00
* @ param bool $reviews_allowed Reviews allowed or not .
2015-11-02 11:23:50 +00:00
*/
2016-09-29 23:02:50 +00:00
public function set_reviews_allowed ( $reviews_allowed ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'reviews_allowed' , wc_string_to_bool ( $reviews_allowed ) );
2016-09-23 07:19:35 +00:00
}
2015-11-02 11:23:50 +00:00
2011-08-09 15:16:18 +00:00
/**
2016-09-29 23:02:50 +00:00
* Set purchase note .
2012-11-27 16:22:47 +00:00
*
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
2016-09-29 23:02:50 +00:00
* @ param string $purchase_note Purchase note .
2011-08-09 15:16:18 +00:00
*/
2016-09-29 23:16:42 +00:00
public function set_purchase_note ( $purchase_note ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'purchase_note' , $purchase_note );
2011-08-09 15:16:18 +00:00
}
2012-11-27 16:22:47 +00:00
2012-12-19 23:04:25 +00:00
/**
2016-10-17 20:22:38 +00:00
* Set product attributes .
2012-12-19 23:04:25 +00:00
*
2016-10-26 17:02:50 +00:00
* Attributes are made up of :
* id - 0 for product level attributes . ID for global attributes .
* name - Attribute name .
* options - attribute value or array of term ids / names .
* position - integer sort order .
* visible - If visible on frontend .
* variation - If used for variations .
* Indexed by unqiue key to allow clearing old ones after a set .
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
2016-10-26 17:02:50 +00:00
* @ param array $raw_attributes Array of WC_Product_Attribute objects .
2016-09-23 07:19:35 +00:00
*/
2016-10-26 17:02:50 +00:00
public function set_attributes ( $raw_attributes ) {
2016-11-09 12:26:46 +00:00
$attributes = array_fill_keys ( array_keys ( $this -> get_attributes ( 'edit' ) ), null );
2016-10-26 17:02:50 +00:00
foreach ( $raw_attributes as $attribute ) {
if ( is_a ( $attribute , 'WC_Product_Attribute' ) ) {
$attributes [ sanitize_title ( $attribute -> get_name () ) ] = $attribute ;
}
}
uasort ( $attributes , 'wc_product_attribute_uasort_comparison' );
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'attributes' , $attributes );
2016-09-23 07:19:35 +00:00
}
/**
2016-10-17 13:46:46 +00:00
* Set default attributes .
2016-09-23 07:19:35 +00:00
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ param array $default_attributes List of default attributes .
2012-12-19 23:04:25 +00:00
*/
2016-10-17 13:46:46 +00:00
public function set_default_attributes ( $default_attributes ) {
2016-11-11 14:31:15 +00:00
$this -> set_prop ( 'default_attributes' , array_filter ( ( array ) $default_attributes ) );
2012-12-19 23:04:25 +00:00
}
2012-11-27 16:22:47 +00:00
2012-11-21 18:07:45 +00:00
/**
2016-10-17 13:46:46 +00:00
* Set menu order .
2012-11-27 16:22:47 +00:00
*
2016-09-29 23:02:50 +00:00
* @ since 2.7 . 0
2016-10-17 13:46:46 +00:00
* @ param int $menu_order Menu order .
2012-11-21 18:07:45 +00:00
*/
2016-10-17 13:46:46 +00:00
public function set_menu_order ( $menu_order ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'menu_order' , intval ( $menu_order ) );
2016-10-17 13:46:46 +00:00
}
/**
2016-10-24 09:32:15 +00:00
* Set the product categories .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-10-24 09:32:15 +00:00
* @ param array $term_ids List of terms IDs .
2016-09-23 07:19:35 +00:00
*/
2016-10-24 09:32:15 +00:00
public function set_category_ids ( $term_ids ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'category_ids' , $this -> sanitize_term_ids ( $term_ids , 'product_cat' ) );
2016-09-23 07:19:35 +00:00
}
2012-12-20 11:54:38 +00:00
2016-09-23 07:19:35 +00:00
/**
2016-10-24 09:32:15 +00:00
* Set the product tags .
2016-09-23 07:19:35 +00:00
*
* @ since 2.7 . 0
2016-10-24 09:32:15 +00:00
* @ param array $term_ids List of terms IDs .
2016-09-23 07:19:35 +00:00
*/
2016-10-24 09:32:15 +00:00
public function set_tag_ids ( $term_ids ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'tag_ids' , $this -> sanitize_term_ids ( $term_ids , 'product_tag' ) );
2016-09-23 07:19:35 +00:00
}
2012-12-20 11:54:38 +00:00
2016-10-26 17:02:50 +00:00
/**
* Set if the product is virtual .
*
* @ since 2.7 . 0
* @ param bool | string
*/
public function set_virtual ( $virtual ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'virtual' , wc_string_to_bool ( $virtual ) );
2016-10-26 17:02:50 +00:00
}
/**
2016-10-28 15:13:46 +00:00
* Set shipping class ID .
2016-10-26 17:02:50 +00:00
*
* @ since 2.7 . 0
2016-10-28 15:13:46 +00:00
* @ param int
2016-10-26 17:02:50 +00:00
*/
2016-10-28 15:13:46 +00:00
public function set_shipping_class_id ( $id ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'shipping_class_id' , absint ( $id ) );
2016-10-26 17:02:50 +00:00
}
/**
2016-10-28 15:13:46 +00:00
* Set if the product is downloadable .
2016-10-26 17:02:50 +00:00
*
* @ since 2.7 . 0
2016-10-28 15:13:46 +00:00
* @ param bool | string
2016-10-26 17:02:50 +00:00
*/
2016-10-28 15:13:46 +00:00
public function set_downloadable ( $downloadable ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'downloadable' , wc_string_to_bool ( $downloadable ) );
2016-10-26 17:02:50 +00:00
}
/**
* Set downloads .
*
* @ since 2.7 . 0
2016-11-11 11:58:57 +00:00
* @ param $raw_downloads array of arrays with download data ( name / file )
2016-10-26 17:02:50 +00:00
*/
2016-11-11 11:58:57 +00:00
public function set_downloads ( $raw_downloads ) {
$downloads = array ();
$errors = array ();
$allowed_file_types = apply_filters ( 'woocommerce_downloadable_file_allowed_mime_types' , get_allowed_mime_types () );
2016-10-26 17:02:50 +00:00
2016-11-11 11:58:57 +00:00
foreach ( $raw_downloads as $raw_download ) {
$file_name = wc_clean ( $raw_download [ 'name' ] );
// Find type and file URL
if ( 0 === strpos ( $raw_download [ 'file' ], 'http' ) ) {
$file_is = 'absolute' ;
$file_url = esc_url_raw ( $raw_download [ 'file' ] );
} elseif ( '[' === substr ( $raw_download [ 'file' ], 0 , 1 ) && ']' === substr ( $raw_download [ 'file' ], - 1 ) ) {
$file_is = 'shortcode' ;
$file_url = wc_clean ( $raw_download [ 'file' ] );
2016-10-26 17:02:50 +00:00
} else {
2016-11-11 11:58:57 +00:00
$file_is = 'relative' ;
$file_url = wc_clean ( $raw_download [ 'file' ] );
2016-10-26 17:02:50 +00:00
}
2016-11-11 11:58:57 +00:00
$file_name = wc_clean ( $raw_download [ 'name' ] );
2016-10-26 17:02:50 +00:00
// Validate the file extension
2016-11-11 11:58:57 +00:00
if ( in_array ( $file_is , array ( 'absolute' , 'relative' ) ) ) {
$file_type = wp_check_filetype ( strtok ( $file_url , '?' ), $allowed_file_types );
$parsed_url = parse_url ( $file_url , PHP_URL_PATH );
$extension = pathinfo ( $parsed_url , PATHINFO_EXTENSION );
if ( ! empty ( $extension ) && ! in_array ( $file_type [ 'type' ], $allowed_file_types ) ) {
$errors [] = sprintf ( __ ( 'The downloadable file %1$s cannot be used as it does not have an allowed file type. Allowed types include: %2$s' , 'woocommerce' ), '<code>' . basename ( $file_url ) . '</code>' , '<code>' . implode ( ', ' , array_keys ( $allowed_file_types ) ) . '</code>' );
continue ;
}
2016-10-26 17:02:50 +00:00
}
2016-11-02 18:50:42 +00:00
// Validate the file exists.
2016-11-11 11:58:57 +00:00
if ( 'relative' === $file_is ) {
$_file_url = $file_url ;
if ( '..' === substr ( $file_url , 0 , 2 ) || '/' !== substr ( $file_url , 0 , 1 ) ) {
$_file_url = realpath ( ABSPATH . $file_url );
}
if ( ! apply_filters ( 'woocommerce_downloadable_file_exists' , file_exists ( $_file_url ), $file_url ) ) {
$errors [] = sprintf ( __ ( 'The downloadable file %s cannot be used as it does not exist on the server.' , 'woocommerce' ), '<code>' . $file_url . '</code>' );
continue ;
}
2016-10-26 17:02:50 +00:00
}
2016-11-11 11:58:57 +00:00
$downloads [ md5 ( $file_url ) ] = array (
'name' => $file_name ,
'file' => $file_url ,
);
2016-10-26 17:02:50 +00:00
}
2016-11-11 11:58:57 +00:00
$this -> set_prop ( 'downloads' , $downloads );
2016-10-26 17:02:50 +00:00
if ( $errors ) {
$this -> error ( 'product_invalid_download' , $errors [ 0 ] );
}
}
2016-10-25 20:24:27 +00:00
/**
* Set download limit .
*
* @ since 2.7 . 0
* @ param int $download_limit
*/
public function set_download_limit ( $download_limit ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'download_limit' , - 1 === ( int ) $download_limit || '' === $download_limit ? - 1 : absint ( $download_limit ) );
2016-10-25 20:24:27 +00:00
}
/**
* Set download expiry .
*
* @ since 2.7 . 0
* @ param int $download_expiry
*/
public function set_download_expiry ( $download_expiry ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'download_expiry' , - 1 === ( int ) $download_expiry || '' === $download_expiry ? - 1 : absint ( $download_expiry ) );
2016-10-25 20:24:27 +00:00
}
/**
2016-10-28 15:13:46 +00:00
* Set gallery attachment ids .
2016-10-25 20:24:27 +00:00
*
* @ since 2.7 . 0
2016-11-03 12:03:19 +00:00
* @ param array $image_ids
2016-10-25 20:24:27 +00:00
*/
2016-11-03 12:03:19 +00:00
public function set_gallery_image_ids ( $image_ids ) {
$this -> set_prop ( 'gallery_image_ids' , array_filter ( array_filter ( $image_ids ), 'wp_attachment_is_image' ) );
2016-10-25 20:24:27 +00:00
}
/**
2016-11-02 18:50:42 +00:00
* Set main image ID .
2016-10-25 20:24:27 +00:00
*
* @ since 2.7 . 0
2016-11-02 18:50:42 +00:00
* @ param int $image_id
2016-10-25 20:24:27 +00:00
*/
2016-11-02 18:50:42 +00:00
public function set_image_id ( $image_id = '' ) {
2016-11-03 12:03:19 +00:00
$this -> set_prop ( 'image_id' , $image_id );
2016-10-25 20:24:27 +00:00
}
2016-09-23 07:19:35 +00:00
/*
|--------------------------------------------------------------------------
2016-11-11 14:31:15 +00:00
| Other Methods
2016-09-23 07:19:35 +00:00
|--------------------------------------------------------------------------
*/
2012-12-20 11:54:38 +00:00
2016-10-24 09:32:15 +00:00
/**
* Get term ids from either a list of names , ids , or terms .
*
* @ since 2.7 . 0
* @ param array $terms
* @ param string $taxonomy
*/
protected function sanitize_term_ids ( $terms , $taxonomy ) {
$term_ids = array ();
foreach ( $terms as $term ) {
if ( is_object ( $term ) ) {
$term_ids [] = $term -> term_id ;
} elseif ( is_integer ( $term ) ) {
$term_ids [] = absint ( $term );
} else {
$term_object = get_term_by ( 'name' , $term , $taxonomy );
if ( $term_object && ! is_wp_error ( $term_object ) ) {
$term_ids [] = $term_object -> term_id ;
}
}
}
return $term_ids ;
}
2016-11-09 12:26:46 +00:00
/**
* Ensure properties are set correctly before save .
* @ since 2.7 . 0
*/
public function validate_props () {
// Before updating, ensure stock props are all aligned. Qty and backorders are not needed if not stock managed.
if ( ! $this -> get_manage_stock () ) {
$this -> set_stock_quantity ( '' );
$this -> set_backorders ( 'no' );
// If we are stock managing and we don't have stock, force out of stock status.
} elseif ( $this -> get_stock_quantity () <= get_option ( 'woocommerce_notify_no_stock_amount' ) && 'no' === $this -> get_backorders () ) {
$this -> set_stock_status ( 'outofstock' );
// If the stock level is changing and we do now have enough, force in stock status.
} elseif ( $this -> get_stock_quantity () > get_option ( 'woocommerce_notify_no_stock_amount' ) && array_key_exists ( 'stock_quantity' , $this -> get_changes () ) ) {
$this -> set_stock_status ( 'instock' );
}
}
2015-12-04 20:17:25 +00:00
/**
2016-09-23 07:19:35 +00:00
* Save data ( either create or update depending on if we are working on an existing product ) .
2015-12-04 20:17:25 +00:00
*
2016-09-23 07:19:35 +00:00
* @ since 2.7 . 0
2015-12-04 20:17:25 +00:00
*/
2016-09-23 07:19:35 +00:00
public function save () {
2016-11-09 12:26:46 +00:00
$this -> validate_props ();
2016-11-03 12:03:19 +00:00
2016-11-11 14:31:15 +00:00
if ( $this -> data_store ) {
if ( $this -> get_id () ) {
$this -> data_store -> update ( $this );
2016-11-11 11:58:57 +00:00
} else {
2016-11-11 14:31:15 +00:00
$this -> data_store -> create ( $this );
2016-10-26 17:02:50 +00:00
}
2016-11-11 14:31:15 +00:00
return $this -> get_id ();
2016-10-26 17:02:50 +00:00
}
2016-10-24 09:32:15 +00:00
}
2016-09-23 07:19:35 +00:00
/*
|--------------------------------------------------------------------------
2016-10-20 14:02:25 +00:00
| Conditionals
2016-09-23 07:19:35 +00:00
|--------------------------------------------------------------------------
*/
2016-10-20 14:02:25 +00:00
/**
* Check if a product supports a given feature .
*
* Product classes should override this to declare support ( or lack of support ) for a feature .
*
* @ param string $feature string The name of a feature to test support for .
* @ return bool True if the product supports the feature , false otherwise .
* @ since 2.5 . 0
*/
public function supports ( $feature ) {
return apply_filters ( 'woocommerce_product_supports' , in_array ( $feature , $this -> supports ) ? true : false , $feature , $this );
}
2014-02-07 17:31:25 +00:00
/**
2016-10-20 14:02:25 +00:00
* Returns whether or not the product post exists .
2014-02-07 17:31:25 +00:00
*
2016-10-20 14:02:25 +00:00
* @ return bool
2014-02-07 17:31:25 +00:00
*/
2016-10-20 14:02:25 +00:00
public function exists () {
return false !== $this -> get_status ();
2014-02-07 17:31:25 +00:00
}
/**
2016-10-20 14:02:25 +00:00
* Checks the product type .
2015-11-14 16:34:47 +00:00
*
2016-10-20 14:02:25 +00:00
* Backwards compat with downloadable / virtual .
*
* @ param string $type Array or string of types
* @ return bool
2014-02-07 17:31:25 +00:00
*/
2016-10-20 14:02:25 +00:00
public function is_type ( $type ) {
return ( $this -> get_type () === $type || ( is_array ( $type ) && in_array ( $this -> get_type (), $type ) ) );
}
2016-01-27 13:00:50 +00:00
2016-10-20 14:02:25 +00:00
/**
* Checks if a product is downloadable .
*
* @ return bool
*/
public function is_downloadable () {
2016-11-09 12:26:46 +00:00
return apply_filters ( 'woocommerce_is_downloadable' , true === $this -> get_downloadable (), $this );
2014-02-07 17:31:25 +00:00
}
2012-08-06 23:33:52 +00:00
2012-12-28 09:59:20 +00:00
/**
2016-10-20 14:02:25 +00:00
* Checks if a product is virtual ( has no shipping ) .
*
* @ return bool
2012-12-28 09:59:20 +00:00
*/
2016-10-20 14:02:25 +00:00
public function is_virtual () {
2016-11-09 12:26:46 +00:00
return apply_filters ( 'woocommerce_is_virtual' , true === $this -> get_virtual (), $this );
2014-04-25 14:27:58 +00:00
}
2013-08-13 15:56:09 +00:00
2014-04-25 14:27:58 +00:00
/**
2016-10-20 14:02:25 +00:00
* Returns whether or not the product is featured .
2014-04-25 14:27:58 +00:00
*
2016-10-20 14:02:25 +00:00
* @ return bool
*/
public function is_featured () {
return true === $this -> get_featured ();
}
/**
* Check if a product is sold individually ( no quantities ) .
2014-04-25 14:27:58 +00:00
*
2016-10-20 14:02:25 +00:00
* @ return bool
2014-04-25 14:27:58 +00:00
*/
2016-10-20 14:02:25 +00:00
public function is_sold_individually () {
return apply_filters ( 'woocommerce_is_sold_individually' , true === $this -> get_sold_individually (), $this );
}
2014-04-25 14:27:58 +00:00
2016-10-20 14:02:25 +00:00
/**
* Returns whether or not the product is visible in the catalog .
*
* @ return bool
*/
public function is_visible () {
$visible = 'visible' === $this -> get_catalog_visibility () || ( is_search () && 'search' === $this -> get_catalog_visibility () ) || ( ! is_search () && 'catalog' === $this -> get_catalog_visibility () );
2014-04-25 14:27:58 +00:00
2016-10-20 14:02:25 +00:00
if ( 'publish' !== $this -> get_status () && ! current_user_can ( 'edit_post' , $this -> get_id () ) ) {
$visible = false ;
}
if ( 'yes' === get_option ( 'woocommerce_hide_out_of_stock_items' ) && ! $this -> is_in_stock () ) {
$visible = false ;
}
return apply_filters ( 'woocommerce_product_is_visible' , $visible , $this -> get_id () );
}
/**
* Returns false if the product cannot be bought .
*
* @ return bool
*/
public function is_purchasable () {
2016-11-09 12:26:46 +00:00
return apply_filters ( 'woocommerce_is_purchasable' , $this -> exists () && ( 'publish' === $this -> get_status () || current_user_can ( 'edit_post' , $this -> get_id () ) ) && '' !== $this -> get_price (), $this );
2016-10-20 14:02:25 +00:00
}
/**
* Returns whether or not the product is on sale .
*
* @ return bool
*/
public function is_on_sale () {
2016-10-28 15:13:46 +00:00
if ( '' !== ( string ) $this -> get_sale_price () && $this -> get_regular_price () > $this -> get_sale_price () ) {
2016-10-20 16:15:03 +00:00
$onsale = true ;
2016-10-28 15:13:46 +00:00
if ( '' !== ( string ) $this -> get_date_on_sale_from () && $this -> get_date_on_sale_from () > strtotime ( 'NOW' , current_time ( 'timestamp' ) ) ) {
2016-10-20 16:15:03 +00:00
$onsale = false ;
}
2016-10-28 15:13:46 +00:00
if ( '' !== ( string ) $this -> get_date_on_sale_to () && $this -> get_date_on_sale_to () < strtotime ( 'NOW' , current_time ( 'timestamp' ) ) ) {
2016-10-20 16:15:03 +00:00
$onsale = false ;
}
} else {
$onsale = false ;
}
return apply_filters ( 'woocommerce_product_is_on_sale' , $onsale , $this );
2016-10-20 14:02:25 +00:00
}
/**
* Returns whether or not the product has dimensions set .
*
* @ return bool
*/
public function has_dimensions () {
2016-11-11 11:58:57 +00:00
return $this -> get_length () || $this -> get_height () || $this -> get_width ();
2016-10-20 14:02:25 +00:00
}
/**
* Returns whether or not the product has weight set .
*
* @ return bool
*/
public function has_weight () {
2016-11-11 11:58:57 +00:00
return $this -> get_weight () ? true : false ;
2016-10-20 14:02:25 +00:00
}
/**
* Returns whether or not the product is in stock .
*
* @ return bool
*/
public function is_in_stock () {
return apply_filters ( 'woocommerce_product_is_in_stock' , 'instock' === $this -> get_stock_status (), $this );
}
/**
* Checks if a product needs shipping .
*
* @ return bool
*/
public function needs_shipping () {
return apply_filters ( 'woocommerce_product_needs_shipping' , ! $this -> is_virtual (), $this );
}
/**
* Returns whether or not the product is taxable .
*
* @ return bool
*/
public function is_taxable () {
return apply_filters ( 'woocommerce_product_is_taxable' , $this -> get_tax_status () === 'taxable' && wc_tax_enabled (), $this );
}
/**
* Returns whether or not the product shipping is taxable .
*
* @ return bool
*/
public function is_shipping_taxable () {
return $this -> get_tax_status () === 'taxable' || $this -> get_tax_status () === 'shipping' ;
}
/**
* Returns whether or not the product is stock managed .
*
* @ return bool
*/
public function managing_stock () {
2016-11-09 12:26:46 +00:00
if ( 'yes' === get_option ( 'woocommerce_manage_stock' ) ) {
return $this -> get_manage_stock ();
}
return false ;
2016-10-20 14:02:25 +00:00
}
/**
* Returns whether or not the product can be backordered .
*
* @ return bool
*/
public function backorders_allowed () {
return apply_filters ( 'woocommerce_product_backorders_allowed' , ( 'yes' === $this -> get_backorders () || 'notify' === $this -> get_backorders () ), $this -> get_id (), $this );
}
/**
* Returns whether or not the product needs to notify the customer on backorder .
*
* @ return bool
*/
public function backorders_require_notification () {
return apply_filters ( 'woocommerce_product_backorders_require_notification' , ( $this -> managing_stock () && 'notify' === $this -> get_backorders () ), $this );
}
/**
* Check if a product is on backorder .
*
* @ param int $qty_in_cart ( default : 0 )
* @ return bool
*/
public function is_on_backorder ( $qty_in_cart = 0 ) {
2016-11-02 18:50:42 +00:00
return $this -> managing_stock () && $this -> backorders_allowed () && ( $this -> get_stock_quantity () - $qty_in_cart ) < 0 ? true : false ;
2016-10-20 14:02:25 +00:00
}
/**
* Returns whether or not the product has enough stock for the order .
*
* @ param mixed $quantity
* @ return bool
*/
public function has_enough_stock ( $quantity ) {
2016-11-09 12:26:46 +00:00
return ! $this -> managing_stock () || $this -> backorders_allowed () || $this -> get_stock_quantity () >= $quantity ;
2016-10-20 14:02:25 +00:00
}
2016-11-11 11:58:57 +00:00
/**
* Returns whether or not we are showing dimensions on the product page .
*
* @ return bool
*/
public function enable_dimensions_display () {
return apply_filters ( 'wc_product_enable_dimensions_display' , ! $this -> get_virtual () ) && ( $this -> has_dimensions () || $this -> has_weight () );
}
2016-10-26 17:02:50 +00:00
/**
* Returns whether or not the product has any visible attributes .
*
* @ return boolean
*/
public function has_attributes () {
foreach ( $this -> get_attributes () as $attribute ) {
if ( $attribute -> get_visible () ) {
return true ;
}
}
return false ;
}
2016-10-27 13:08:16 +00:00
/**
* Returns whether or not the product has any child product .
*
* @ return bool
*/
public function has_child () {
return 0 < count ( $this -> get_children () );
}
2016-10-20 14:02:25 +00:00
/*
|--------------------------------------------------------------------------
| Non - CRUD Getters
|--------------------------------------------------------------------------
*/
2016-11-02 18:50:42 +00:00
/**
* Product permalink .
* @ return string
*/
public function get_permalink () {
return get_permalink ( $this -> get_id () );
}
2016-10-27 13:08:16 +00:00
/**
* Returns the children IDs if applicable . Overridden by child classes .
*
* @ return array of IDs
*/
public function get_children () {
return array ();
}
2016-11-09 12:26:46 +00:00
/**
* If the stock level comes from another product ID , this should be modified .
* @ since 2.7 . 0
* @ return int
*/
public function get_stock_managed_by_id () {
return $this -> get_id ();
}
2016-10-20 16:15:03 +00:00
/**
* Returns the price in html format .
* @ return string
*/
public function get_price_html ( $deprecated = '' ) {
if ( '' === $this -> get_price () ) {
return apply_filters ( 'woocommerce_empty_price_html' , '' , $this );
}
if ( $this -> is_on_sale () ) {
2016-11-09 12:26:46 +00:00
$price = wc_format_sale_price ( wc_get_price_to_display ( $this , array ( 'price' => $this -> get_regular_price () ) ), wc_get_price_to_display ( $this ) ) . wc_get_price_suffix ( $this );
2016-10-20 16:15:03 +00:00
} else {
$price = wc_price ( wc_get_price_to_display ( $this ) ) . wc_get_price_suffix ( $this );
}
return apply_filters ( 'woocommerce_get_price_html' , $price , $this );
}
2016-10-20 14:06:44 +00:00
/**
* Get product name with SKU or ID . Used within admin .
*
* @ return string Formatted product name
*/
public function get_formatted_name () {
if ( $this -> get_sku () ) {
$identifier = $this -> get_sku ();
} else {
$identifier = '#' . $this -> get_id ();
}
return sprintf ( '%s – %s' , $identifier , $this -> get_name () );
}
2016-10-20 14:02:25 +00:00
/**
* Get the add to url used mainly in loops .
*
* @ return string
*/
public function add_to_cart_url () {
2016-11-02 18:50:42 +00:00
return apply_filters ( 'woocommerce_product_add_to_cart_url' , $this -> get_permalink (), $this );
2016-10-20 14:02:25 +00:00
}
/**
* Get the add to cart button text for the single page .
*
* @ return string
*/
public function single_add_to_cart_text () {
return apply_filters ( 'woocommerce_product_single_add_to_cart_text' , __ ( 'Add to cart' , 'woocommerce' ), $this );
}
/**
* Get the add to cart button text .
*
* @ return string
*/
public function add_to_cart_text () {
return apply_filters ( 'woocommerce_product_add_to_cart_text' , __ ( 'Read more' , 'woocommerce' ), $this );
}
/**
* Returns the main product image .
*
* @ param string $size ( default : 'shop_thumbnail' )
* @ param array $attr
* @ param bool True to return $placeholder if no image is found , or false to return an empty string .
* @ return string
*/
public function get_image ( $size = 'shop_thumbnail' , $attr = array (), $placeholder = true ) {
if ( has_post_thumbnail ( $this -> get_id () ) ) {
$image = get_the_post_thumbnail ( $this -> get_id (), $size , $attr );
} elseif ( ( $parent_id = wp_get_post_parent_id ( $this -> get_id () ) ) && has_post_thumbnail ( $parent_id ) ) {
$image = get_the_post_thumbnail ( $parent_id , $size , $attr );
} elseif ( $placeholder ) {
$image = wc_placeholder_img ( $size );
} else {
$image = '' ;
}
return str_replace ( array ( 'https://' , 'http://' ), '//' , $image );
}
2016-10-26 17:02:50 +00:00
/**
* Returns the product shipping class SLUG .
*
* @ return string
*/
public function get_shipping_class () {
if ( $class_id = $this -> get_shipping_class_id () ) {
$term = get_term_by ( 'id' , $class_id , 'product_shipping_class' );
if ( $term && ! is_wp_error ( $term ) ) {
return $term -> slug ;
}
}
return '' ;
}
/**
* Returns a single product attribute as a string .
* @ param string $attribute to get .
* @ return string
*/
public function get_attribute ( $attribute ) {
$attributes = $this -> get_attributes ();
$attribute = sanitize_title ( $attribute );
if ( isset ( $attributes [ $attribute ] ) ) {
$attribute_object = $attributes [ $attribute ];
} elseif ( isset ( $attributes [ 'pa_' . $attribute ] ) ) {
$attribute_object = $attributes [ 'pa_' . $attribute ];
} else {
return '' ;
}
return $attribute_object -> is_taxonomy () ? implode ( ', ' , wc_get_product_terms ( $this -> get_id (), $attribute_object -> get_name (), array ( 'fields' => 'names' ) ) ) : wc_implode_text_attributes ( $attribute_object -> get_options () );
}
2016-11-11 11:58:57 +00:00
/*
|--------------------------------------------------------------------------
| @ todo download functions
|--------------------------------------------------------------------------
*/
/**
* Check if downloadable product has a file attached .
*
* @ since 1.6 . 2
*
* @ param string $download_id file identifier
* @ return bool Whether downloadable product has a file attached .
*/
public function has_file ( $download_id = '' ) {
return ( $this -> is_downloadable () && $this -> get_file ( $download_id ) ) ? true : false ;
}
2013-09-20 16:01:09 +00:00
/**
2016-11-11 11:58:57 +00:00
* Gets an array of downloadable files for this product .
*
* @ since 2.1 . 0
*
* @ return array
2013-09-20 16:01:09 +00:00
*/
2016-11-11 11:58:57 +00:00
public function get_files () {
$downloads = $this -> get_downloads ();
$downloadable_files = array_filter ( ! empty ( $downloads ) ? ( array ) maybe_unserialize ( $downloads ) : array () );
if ( ! empty ( $downloadable_files ) ) {
2013-09-20 16:01:09 +00:00
2016-11-11 11:58:57 +00:00
foreach ( $downloadable_files as $key => $file ) {
if ( ! is_array ( $file ) ) {
$downloadable_files [ $key ] = array (
'file' => $file ,
'name' => '' ,
);
}
// Set default name
if ( empty ( $file [ 'name' ] ) ) {
$downloadable_files [ $key ][ 'name' ] = wc_get_filename_from_url ( $file [ 'file' ] );
}
// Filter URL
$downloadable_files [ $key ][ 'file' ] = apply_filters ( 'woocommerce_file_download_path' , $downloadable_files [ $key ][ 'file' ], $this , $key );
}
2013-09-20 16:01:09 +00:00
}
2016-11-11 11:58:57 +00:00
return apply_filters ( 'woocommerce_product_files' , $downloadable_files , $this );
2013-09-20 16:01:09 +00:00
}
/**
2015-11-03 12:28:01 +00:00
* Get a file by $download_id .
2013-09-20 16:01:09 +00:00
*
* @ param string $download_id file identifier
* @ return array | false if not found
*/
2014-04-24 15:00:35 +00:00
public function get_file ( $download_id = '' ) {
2016-11-11 11:58:57 +00:00
$files = $this -> get_files ();
2013-09-20 16:01:09 +00:00
2014-04-24 15:00:35 +00:00
if ( '' === $download_id ) {
$file = sizeof ( $files ) ? current ( $files ) : false ;
} elseif ( isset ( $files [ $download_id ] ) ) {
2013-09-20 16:01:09 +00:00
$file = $files [ $download_id ];
2013-11-24 10:42:36 +00:00
} else {
2013-09-20 16:01:09 +00:00
$file = false ;
2013-11-24 10:42:36 +00:00
}
2013-09-20 16:01:09 +00:00
2016-11-11 11:58:57 +00:00
// allow overriding based on the particular file being requested
2013-12-16 23:27:57 +00:00
return apply_filters ( 'woocommerce_product_file' , $file , $this , $download_id );
2012-07-31 11:58:00 +00:00
}
2012-11-27 16:22:47 +00:00
2012-08-28 15:21:54 +00:00
/**
2015-11-03 12:28:01 +00:00
* Get file download path identified by $download_id .
2012-11-27 16:22:47 +00:00
*
2012-08-28 15:21:54 +00:00
* @ param string $download_id file identifier
2013-09-20 16:01:09 +00:00
* @ return string
2012-08-28 15:21:54 +00:00
*/
2013-07-23 10:28:59 +00:00
public function get_file_download_path ( $download_id ) {
2016-11-11 11:58:57 +00:00
$files = $this -> get_files ();
if ( isset ( $files [ $download_id ] ) ) {
$file_path = $files [ $download_id ][ 'file' ];
} else {
$file_path = '' ;
}
2012-08-28 15:21:54 +00:00
// allow overriding based on the particular file being requested
2013-12-16 23:27:57 +00:00
return apply_filters ( 'woocommerce_product_file_download_path' , $file_path , $this , $download_id );
2012-08-28 15:21:54 +00:00
}
2016-11-11 11:58:57 +00:00
/*
|--------------------------------------------------------------------------
| @ todo misc
|--------------------------------------------------------------------------
*/
/**
* Does a child have dimensions set ?
*
* @ since 2.7 . 0
* @ return bool
*/
public function child_has_dimensions () {
return false ;
}
/**
* Does a child have a weight set ?
* @ since 2.7 . 0
* @ return boolean
*/
public function child_has_weight () {
return false ;
}
/**
* Returns formatted dimensions .
* @ return string
*/
public function get_dimensions () {
$dimensions = implode ( ' x ' , array_filter ( array (
wc_format_localized_decimal ( $this -> get_length () ),
wc_format_localized_decimal ( $this -> get_width () ),
wc_format_localized_decimal ( $this -> get_height () ),
) ) );
if ( ! empty ( $dimensions ) ) {
$dimensions .= ' ' . get_option ( 'woocommerce_dimension_unit' );
}
return apply_filters ( 'woocommerce_product_dimensions' , $dimensions , $this );
}
/**
* Get the average rating of product . This is calculated once and stored in postmeta .
* @ return string
*/
public function get_average_rating () {
// No meta data? Do the calculation
if ( ! metadata_exists ( 'post' , $this -> get_id (), '_wc_average_rating' ) ) {
$this -> sync_average_rating ( $this -> get_id () );
}
return ( string ) floatval ( get_post_meta ( $this -> get_id (), '_wc_average_rating' , true ) );
}
/**
* Get the total amount ( COUNT ) of ratings .
* @ param int $value Optional . Rating value to get the count for . By default returns the count of all rating values .
* @ return int
*/
public function get_rating_count ( $value = null ) {
// No meta data? Do the calculation
if ( ! metadata_exists ( 'post' , $this -> get_id (), '_wc_rating_count' ) ) {
$this -> sync_rating_count ( $this -> get_id () );
}
$counts = get_post_meta ( $this -> get_id (), '_wc_rating_count' , true );
if ( is_null ( $value ) ) {
return array_sum ( $counts );
} else {
return isset ( $counts [ $value ] ) ? $counts [ $value ] : 0 ;
}
}
/**
* Sync product rating . Can be called statically .
* @ param int $post_id
*/
public static function sync_average_rating ( $post_id ) {
if ( ! metadata_exists ( 'post' , $post_id , '_wc_rating_count' ) ) {
self :: sync_rating_count ( $post_id );
}
$count = array_sum ( ( array ) get_post_meta ( $post_id , '_wc_rating_count' , true ) );
if ( $count ) {
global $wpdb ;
$ratings = $wpdb -> get_var ( $wpdb -> prepare ( "
SELECT SUM ( meta_value ) FROM $wpdb -> commentmeta
LEFT JOIN $wpdb -> comments ON $wpdb -> commentmeta . comment_id = $wpdb -> comments . comment_ID
WHERE meta_key = 'rating'
AND comment_post_ID = % d
AND comment_approved = '1'
AND meta_value > 0
" , $post_id ) );
$average = number_format ( $ratings / $count , 2 , '.' , '' );
} else {
$average = 0 ;
}
update_post_meta ( $post_id , '_wc_average_rating' , $average );
}
/**
* Sync product rating count . Can be called statically .
* @ param int $post_id
*/
public static function sync_rating_count ( $post_id ) {
global $wpdb ;
$counts = array ();
$raw_counts = $wpdb -> get_results ( $wpdb -> prepare ( "
SELECT meta_value , COUNT ( * ) as meta_value_count FROM $wpdb -> commentmeta
LEFT JOIN $wpdb -> comments ON $wpdb -> commentmeta . comment_id = $wpdb -> comments . comment_ID
WHERE meta_key = 'rating'
AND comment_post_ID = % d
AND comment_approved = '1'
AND meta_value > 0
GROUP BY meta_value
" , $post_id ) );
foreach ( $raw_counts as $count ) {
$counts [ $count -> meta_value ] = $count -> meta_value_count ;
}
update_post_meta ( $post_id , '_wc_rating_count' , $counts );
}
/**
* Returns the product rating in html format .
*
* @ param string $rating ( default : '' )
*
* @ return string
*/
public function get_rating_html ( $rating = null ) {
$rating_html = '' ;
if ( ! is_numeric ( $rating ) ) {
$rating = $this -> get_average_rating ();
}
if ( $rating > 0 ) {
$rating_html = '<div class="star-rating" title="' . sprintf ( __ ( 'Rated %s out of 5' , 'woocommerce' ), $rating ) . '">' ;
$rating_html .= '<span style="width:' . ( ( $rating / 5 ) * 100 ) . '%"><strong class="rating">' . $rating . '</strong> ' . __ ( 'out of 5' , 'woocommerce' ) . '</span>' ;
$rating_html .= '</div>' ;
}
return apply_filters ( 'woocommerce_product_get_rating_html' , $rating_html , $rating );
}
/**
* Get the total amount ( COUNT ) of reviews .
*
* @ since 2.3 . 2
* @ return int The total numver of product reviews
*/
public function get_review_count () {
global $wpdb ;
// No meta date? Do the calculation
if ( ! metadata_exists ( 'post' , $this -> get_id (), '_wc_review_count' ) ) {
$count = $wpdb -> get_var ( $wpdb -> prepare ( "
SELECT COUNT ( * ) FROM $wpdb -> comments
WHERE comment_parent = 0
AND comment_post_ID = % d
AND comment_approved = '1'
" , $this->get_id () ) );
update_post_meta ( $this -> get_id (), '_wc_review_count' , $count );
} else {
$count = get_post_meta ( $this -> get_id (), '_wc_review_count' , true );
}
return apply_filters ( 'woocommerce_product_review_count' , $count , $this );
}
2013-12-02 11:34:27 +00:00
}