| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242 |
- <?php
- /**
- * WooCommerce Product Functions
- *
- * Functions for product specific things.
- *
- * @package WooCommerce/Functions
- * @version 3.0.0
- */
- defined( 'ABSPATH' ) || exit;
- /**
- * Standard way of retrieving products based on certain parameters.
- *
- * This function should be used for product retrieval so that we have a data agnostic
- * way to get a list of products.
- *
- * Args and usage: https://github.com/woocommerce/woocommerce/wiki/wc_get_products-and-WC_Product_Query
- *
- * @since 3.0.0
- * @param array $args Array of args (above).
- * @return array|stdClass Number of pages and an array of product objects if
- * paginate is true, or just an array of values.
- */
- function wc_get_products( $args ) {
- // Handle some BW compatibility arg names where wp_query args differ in naming.
- $map_legacy = array(
- 'numberposts' => 'limit',
- 'post_status' => 'status',
- 'post_parent' => 'parent',
- 'posts_per_page' => 'limit',
- 'paged' => 'page',
- );
- foreach ( $map_legacy as $from => $to ) {
- if ( isset( $args[ $from ] ) ) {
- $args[ $to ] = $args[ $from ];
- }
- }
- $query = new WC_Product_Query( $args );
- return $query->get_products();
- }
- /**
- * Main function for returning products, uses the WC_Product_Factory class.
- *
- * @since 2.2.0
- *
- * @param mixed $the_product Post object or post ID of the product.
- * @param array $deprecated Previously used to pass arguments to the factory, e.g. to force a type.
- * @return WC_Product|null|false
- */
- function wc_get_product( $the_product = false, $deprecated = array() ) {
- if ( ! did_action( 'woocommerce_init' ) ) {
- /* translators: 1: wc_get_product 2: woocommerce_init */
- wc_doing_it_wrong( __FUNCTION__, sprintf( __( '%1$s should not be called before the %2$s action.', 'woocommerce' ), 'wc_get_product', 'woocommerce_init' ), '2.5' );
- return false;
- }
- if ( ! empty( $deprecated ) ) {
- wc_deprecated_argument( 'args', '3.0', 'Passing args to wc_get_product is deprecated. If you need to force a type, construct the product class directly.' );
- }
- return WC()->product_factory->get_product( $the_product, $deprecated );
- }
- /**
- * Returns whether or not SKUS are enabled.
- *
- * @return bool
- */
- function wc_product_sku_enabled() {
- return apply_filters( 'wc_product_sku_enabled', true );
- }
- /**
- * Returns whether or not product weights are enabled.
- *
- * @return bool
- */
- function wc_product_weight_enabled() {
- return apply_filters( 'wc_product_weight_enabled', true );
- }
- /**
- * Returns whether or not product dimensions (HxWxD) are enabled.
- *
- * @return bool
- */
- function wc_product_dimensions_enabled() {
- return apply_filters( 'wc_product_dimensions_enabled', true );
- }
- /**
- * Clear all transients cache for product data.
- *
- * @param int $post_id (default: 0).
- */
- function wc_delete_product_transients( $post_id = 0 ) {
- // Core transients.
- $transients_to_clear = array(
- 'wc_products_onsale',
- 'wc_featured_products',
- 'wc_outofstock_count',
- 'wc_low_stock_count',
- 'wc_count_comments',
- );
- // Transient names that include an ID.
- $post_transient_names = array(
- 'wc_product_children_',
- 'wc_var_prices_',
- 'wc_related_',
- 'wc_child_has_weight_',
- 'wc_child_has_dimensions_',
- );
- if ( $post_id > 0 ) {
- foreach ( $post_transient_names as $transient ) {
- $transients_to_clear[] = $transient . $post_id;
- }
- // Does this product have a parent?
- $product = wc_get_product( $post_id );
- if ( $product ) {
- if ( $product->get_parent_id() > 0 ) {
- wc_delete_product_transients( $product->get_parent_id() );
- }
- if ( 'variable' === $product->get_type() ) {
- wp_cache_delete(
- WC_Cache_Helper::get_cache_prefix( 'products' ) . 'product_variation_attributes_' . $product->get_id(),
- 'products'
- );
- }
- }
- }
- // Delete transients.
- foreach ( $transients_to_clear as $transient ) {
- delete_transient( $transient );
- }
- // Increments the transient version to invalidate cache.
- WC_Cache_Helper::get_transient_version( 'product', true );
- do_action( 'woocommerce_delete_product_transients', $post_id );
- }
- /**
- * Function that returns an array containing the IDs of the products that are on sale.
- *
- * @since 2.0
- * @return array
- */
- function wc_get_product_ids_on_sale() {
- // Load from cache.
- $product_ids_on_sale = get_transient( 'wc_products_onsale' );
- // Valid cache found.
- if ( false !== $product_ids_on_sale ) {
- return $product_ids_on_sale;
- }
- $data_store = WC_Data_Store::load( 'product' );
- $on_sale_products = $data_store->get_on_sale_products();
- $product_ids_on_sale = wp_parse_id_list( array_merge( wp_list_pluck( $on_sale_products, 'id' ), array_diff( wp_list_pluck( $on_sale_products, 'parent_id' ), array( 0 ) ) ) );
- set_transient( 'wc_products_onsale', $product_ids_on_sale, DAY_IN_SECONDS * 30 );
- return $product_ids_on_sale;
- }
- /**
- * Function that returns an array containing the IDs of the featured products.
- *
- * @since 2.1
- * @return array
- */
- function wc_get_featured_product_ids() {
- // Load from cache.
- $featured_product_ids = get_transient( 'wc_featured_products' );
- // Valid cache found.
- if ( false !== $featured_product_ids ) {
- return $featured_product_ids;
- }
- $data_store = WC_Data_Store::load( 'product' );
- $featured = $data_store->get_featured_product_ids();
- $product_ids = array_keys( $featured );
- $parent_ids = array_values( array_filter( $featured ) );
- $featured_product_ids = array_unique( array_merge( $product_ids, $parent_ids ) );
- set_transient( 'wc_featured_products', $featured_product_ids, DAY_IN_SECONDS * 30 );
- return $featured_product_ids;
- }
- /**
- * Filter to allow product_cat in the permalinks for products.
- *
- * @param string $permalink The existing permalink URL.
- * @param WP_Post $post WP_Post object.
- * @return string
- */
- function wc_product_post_type_link( $permalink, $post ) {
- // Abort if post is not a product.
- if ( 'product' !== $post->post_type ) {
- return $permalink;
- }
- // Abort early if the placeholder rewrite tag isn't in the generated URL.
- if ( false === strpos( $permalink, '%' ) ) {
- return $permalink;
- }
- // Get the custom taxonomy terms in use by this post.
- $terms = get_the_terms( $post->ID, 'product_cat' );
- if ( ! empty( $terms ) ) {
- if ( function_exists( 'wp_list_sort' ) ) {
- $terms = wp_list_sort( $terms, 'term_id', 'ASC' );
- } else {
- usort( $terms, '_usort_terms_by_ID' );
- }
- $category_object = apply_filters( 'wc_product_post_type_link_product_cat', $terms[0], $terms, $post );
- $category_object = get_term( $category_object, 'product_cat' );
- $product_cat = $category_object->slug;
- if ( $category_object->parent ) {
- $ancestors = get_ancestors( $category_object->term_id, 'product_cat' );
- foreach ( $ancestors as $ancestor ) {
- $ancestor_object = get_term( $ancestor, 'product_cat' );
- $product_cat = $ancestor_object->slug . '/' . $product_cat;
- }
- }
- } else {
- // If no terms are assigned to this post, use a string instead (can't leave the placeholder there).
- $product_cat = _x( 'uncategorized', 'slug', 'woocommerce' );
- }
- $find = array(
- '%year%',
- '%monthnum%',
- '%day%',
- '%hour%',
- '%minute%',
- '%second%',
- '%post_id%',
- '%category%',
- '%product_cat%',
- );
- $replace = array(
- date_i18n( 'Y', strtotime( $post->post_date ) ),
- date_i18n( 'm', strtotime( $post->post_date ) ),
- date_i18n( 'd', strtotime( $post->post_date ) ),
- date_i18n( 'H', strtotime( $post->post_date ) ),
- date_i18n( 'i', strtotime( $post->post_date ) ),
- date_i18n( 's', strtotime( $post->post_date ) ),
- $post->ID,
- $product_cat,
- $product_cat,
- );
- $permalink = str_replace( $find, $replace, $permalink );
- return $permalink;
- }
- add_filter( 'post_type_link', 'wc_product_post_type_link', 10, 2 );
- /**
- * Get the placeholder image URL for products etc.
- *
- * @access public
- * @return string
- */
- function wc_placeholder_img_src() {
- return apply_filters( 'woocommerce_placeholder_img_src', WC()->plugin_url() . '/assets/images/placeholder.png' );
- }
- /**
- * Get the placeholder image.
- *
- * @access public
- *
- * @param string $size Image size.
- *
- * @return string
- */
- function wc_placeholder_img( $size = 'woocommerce_thumbnail' ) {
- $dimensions = wc_get_image_size( $size );
- return apply_filters( 'woocommerce_placeholder_img', '<img src="' . wc_placeholder_img_src() . '" alt="' . esc_attr__( 'Placeholder', 'woocommerce' ) . '" width="' . esc_attr( $dimensions['width'] ) . '" class="woocommerce-placeholder wp-post-image" height="' . esc_attr( $dimensions['height'] ) . '" />', $size, $dimensions );
- }
- /**
- * Variation Formatting.
- *
- * Gets a formatted version of variation data or item meta.
- *
- * @param array|WC_Product_Variation $variation Variation object.
- * @param bool $flat Should this be a flat list or HTML list? (default: false).
- * @param bool $include_names include attribute names/labels in the list.
- * @param bool $skip_attributes_in_name Do not list attributes already part of the variation name.
- * @return string
- */
- function wc_get_formatted_variation( $variation, $flat = false, $include_names = true, $skip_attributes_in_name = false ) {
- $return = '';
- if ( is_a( $variation, 'WC_Product_Variation' ) ) {
- $variation_attributes = $variation->get_attributes();
- $product = $variation;
- $variation_name = $variation->get_name();
- } else {
- $product = false;
- $variation_name = '';
- // Remove attribute_ prefix from names.
- $variation_attributes = array();
- if ( is_array( $variation ) ) {
- foreach ( $variation as $key => $value ) {
- $variation_attributes[ str_replace( 'attribute_', '', $key ) ] = $value;
- }
- }
- }
- $list_type = $include_names ? 'dl' : 'ul';
- if ( is_array( $variation_attributes ) ) {
- if ( ! $flat ) {
- $return = '<' . $list_type . ' class="variation">';
- }
- $variation_list = array();
- foreach ( $variation_attributes as $name => $value ) {
- // If this is a term slug, get the term's nice name.
- if ( taxonomy_exists( $name ) ) {
- $term = get_term_by( 'slug', $value, $name );
- if ( ! is_wp_error( $term ) && ! empty( $term->name ) ) {
- $value = $term->name;
- }
- }
- // Do not list attributes already part of the variation name.
- if ( '' === $value || ( $skip_attributes_in_name && wc_is_attribute_in_product_name( $value, $variation_name ) ) ) {
- continue;
- }
- if ( $include_names ) {
- if ( $flat ) {
- $variation_list[] = wc_attribute_label( $name, $product ) . ': ' . rawurldecode( $value );
- } else {
- $variation_list[] = '<dt>' . wc_attribute_label( $name, $product ) . ':</dt><dd>' . rawurldecode( $value ) . '</dd>';
- }
- } else {
- if ( $flat ) {
- $variation_list[] = rawurldecode( $value );
- } else {
- $variation_list[] = '<li>' . rawurldecode( $value ) . '</li>';
- }
- }
- }
- if ( $flat ) {
- $return .= implode( ', ', $variation_list );
- } else {
- $return .= implode( '', $variation_list );
- }
- if ( ! $flat ) {
- $return .= '</' . $list_type . '>';
- }
- }
- return $return;
- }
- /**
- * Function which handles the start and end of scheduled sales via cron.
- */
- function wc_scheduled_sales() {
- $data_store = WC_Data_Store::load( 'product' );
- // Sales which are due to start.
- $product_ids = $data_store->get_starting_sales();
- if ( $product_ids ) {
- do_action( 'wc_before_products_starting_sales', $product_ids );
- foreach ( $product_ids as $product_id ) {
- $product = wc_get_product( $product_id );
- if ( $product ) {
- $sale_price = $product->get_sale_price();
- if ( $sale_price ) {
- $product->set_price( $sale_price );
- $product->set_date_on_sale_from( '' );
- } else {
- $product->set_date_on_sale_to( '' );
- $product->set_date_on_sale_from( '' );
- }
- $product->save();
- }
- }
- do_action( 'wc_after_products_starting_sales', $product_ids );
- delete_transient( 'wc_products_onsale' );
- }
- // Sales which are due to end.
- $product_ids = $data_store->get_ending_sales();
- if ( $product_ids ) {
- do_action( 'wc_before_products_ending_sales', $product_ids );
- foreach ( $product_ids as $product_id ) {
- $product = wc_get_product( $product_id );
- if ( $product ) {
- $regular_price = $product->get_regular_price();
- $product->set_price( $regular_price );
- $product->set_sale_price( '' );
- $product->set_date_on_sale_to( '' );
- $product->set_date_on_sale_from( '' );
- $product->save();
- }
- }
- do_action( 'wc_after_products_ending_sales', $product_ids );
- WC_Cache_Helper::get_transient_version( 'product', true );
- delete_transient( 'wc_products_onsale' );
- }
- }
- add_action( 'woocommerce_scheduled_sales', 'wc_scheduled_sales' );
- /**
- * Get attachment image attributes.
- *
- * @access public
- * @param array $attr Image attributes.
- * @return array
- */
- function wc_get_attachment_image_attributes( $attr ) {
- if ( strstr( $attr['src'][0], 'woocommerce_uploads/' ) ) {
- $attr['src'][0] = wc_placeholder_img_src();
- }
- return $attr;
- }
- add_filter( 'wp_get_attachment_image_attributes', 'wc_get_attachment_image_attributes' );
- /**
- * Prepare attachment for JavaScript.
- *
- * @access public
- * @param array $response JS version of a attachment post object.
- * @return array
- */
- function wc_prepare_attachment_for_js( $response ) {
- if ( isset( $response['url'] ) && strstr( $response['url'], 'woocommerce_uploads/' ) ) {
- $response['full']['url'] = wc_placeholder_img_src();
- if ( isset( $response['sizes'] ) ) {
- foreach ( $response['sizes'] as $size => $value ) {
- $response['sizes'][ $size ]['url'] = wc_placeholder_img_src();
- }
- }
- }
- return $response;
- }
- add_filter( 'wp_prepare_attachment_for_js', 'wc_prepare_attachment_for_js' );
- /**
- * Track product views.
- */
- function wc_track_product_view() {
- if ( ! is_singular( 'product' ) || ! is_active_widget( false, false, 'woocommerce_recently_viewed_products', true ) ) {
- return;
- }
- global $post;
- if ( empty( $_COOKIE['woocommerce_recently_viewed'] ) ) { // @codingStandardsIgnoreLine.
- $viewed_products = array();
- } else {
- $viewed_products = wp_parse_id_list( (array) explode( '|', wp_unslash( $_COOKIE['woocommerce_recently_viewed'] ) ) ); // @codingStandardsIgnoreLine.
- }
- // Unset if already in viewed products list.
- $keys = array_flip( $viewed_products );
- if ( isset( $keys[ $post->ID ] ) ) {
- unset( $viewed_products[ $keys[ $post->ID ] ] );
- }
- $viewed_products[] = $post->ID;
- if ( count( $viewed_products ) > 15 ) {
- array_shift( $viewed_products );
- }
- // Store for session only.
- wc_setcookie( 'woocommerce_recently_viewed', implode( '|', $viewed_products ) );
- }
- add_action( 'template_redirect', 'wc_track_product_view', 20 );
- /**
- * Get product types.
- *
- * @since 2.2
- * @return array
- */
- function wc_get_product_types() {
- return (array) apply_filters( 'product_type_selector', array(
- 'simple' => __( 'Simple product', 'woocommerce' ),
- 'grouped' => __( 'Grouped product', 'woocommerce' ),
- 'external' => __( 'External/Affiliate product', 'woocommerce' ),
- 'variable' => __( 'Variable product', 'woocommerce' ),
- ) );
- }
- /**
- * Check if product sku is unique.
- *
- * @since 2.2
- * @param int $product_id Product ID.
- * @param string $sku Product SKU.
- * @return bool
- */
- function wc_product_has_unique_sku( $product_id, $sku ) {
- $data_store = WC_Data_Store::load( 'product' );
- $sku_found = $data_store->is_existing_sku( $product_id, $sku );
- if ( apply_filters( 'wc_product_has_unique_sku', $sku_found, $product_id, $sku ) ) {
- return false;
- }
- return true;
- }
- /**
- * Force a unique SKU.
- *
- * @since 3.0.0
- * @param integer $product_id Product ID.
- */
- function wc_product_force_unique_sku( $product_id ) {
- $product = wc_get_product( $product_id );
- $current_sku = $product ? $product->get_sku( 'edit' ) : '';
- if ( $current_sku ) {
- try {
- $new_sku = wc_product_generate_unique_sku( $product_id, $current_sku );
- if ( $current_sku !== $new_sku ) {
- $product->set_sku( $new_sku );
- $product->save();
- }
- } catch ( Exception $e ) {} // @codingStandardsIgnoreLine.
- }
- }
- /**
- * Recursively appends a suffix until a unique SKU is found.
- *
- * @since 3.0.0
- * @param integer $product_id Product ID.
- * @param string $sku Product SKU.
- * @param integer $index An optional index that can be added to the product SKU.
- * @return string
- */
- function wc_product_generate_unique_sku( $product_id, $sku, $index = 0 ) {
- $generated_sku = 0 < $index ? $sku . '-' . $index : $sku;
- if ( ! wc_product_has_unique_sku( $product_id, $generated_sku ) ) {
- $generated_sku = wc_product_generate_unique_sku( $product_id, $sku, ( $index + 1 ) );
- }
- return $generated_sku;
- }
- /**
- * Get product ID by SKU.
- *
- * @since 2.3.0
- * @param string $sku Product SKU.
- * @return int
- */
- function wc_get_product_id_by_sku( $sku ) {
- $data_store = WC_Data_Store::load( 'product' );
- return $data_store->get_product_id_by_sku( $sku );
- }
- /**
- * Get attibutes/data for an individual variation from the database and maintain it's integrity.
- *
- * @since 2.4.0
- * @param int $variation_id Variation ID.
- * @return array
- */
- function wc_get_product_variation_attributes( $variation_id ) {
- // Build variation data from meta.
- $all_meta = get_post_meta( $variation_id );
- $parent_id = wp_get_post_parent_id( $variation_id );
- $parent_attributes = array_filter( (array) get_post_meta( $parent_id, '_product_attributes', true ) );
- $found_parent_attributes = array();
- $variation_attributes = array();
- // Compare to parent variable product attributes and ensure they match.
- foreach ( $parent_attributes as $attribute_name => $options ) {
- if ( ! empty( $options['is_variation'] ) ) {
- $attribute = 'attribute_' . sanitize_title( $attribute_name );
- $found_parent_attributes[] = $attribute;
- if ( ! array_key_exists( $attribute, $variation_attributes ) ) {
- $variation_attributes[ $attribute ] = ''; // Add it - 'any' will be asumed.
- }
- }
- }
- // Get the variation attributes from meta.
- foreach ( $all_meta as $name => $value ) {
- // Only look at valid attribute meta, and also compare variation level attributes and remove any which do not exist at parent level.
- if ( 0 !== strpos( $name, 'attribute_' ) || ! in_array( $name, $found_parent_attributes, true ) ) {
- unset( $variation_attributes[ $name ] );
- continue;
- }
- /**
- * Pre 2.4 handling where 'slugs' were saved instead of the full text attribute.
- * Attempt to get full version of the text attribute from the parent.
- */
- if ( sanitize_title( $value[0] ) === $value[0] && version_compare( get_post_meta( $parent_id, '_product_version', true ), '2.4.0', '<' ) ) {
- foreach ( $parent_attributes as $attribute ) {
- if ( 'attribute_' . sanitize_title( $attribute['name'] ) !== $name ) {
- continue;
- }
- $text_attributes = wc_get_text_attributes( $attribute['value'] );
- foreach ( $text_attributes as $text_attribute ) {
- if ( sanitize_title( $text_attribute ) === $value[0] ) {
- $value[0] = $text_attribute;
- break;
- }
- }
- }
- }
- $variation_attributes[ $name ] = $value[0];
- }
- return $variation_attributes;
- }
- /**
- * Get all product cats for a product by ID, including hierarchy
- *
- * @since 2.5.0
- * @param int $product_id Product ID.
- * @return array
- */
- function wc_get_product_cat_ids( $product_id ) {
- $product_cats = wc_get_product_term_ids( $product_id, 'product_cat' );
- foreach ( $product_cats as $product_cat ) {
- $product_cats = array_merge( $product_cats, get_ancestors( $product_cat, 'product_cat' ) );
- }
- return $product_cats;
- }
- /**
- * Gets data about an attachment, such as alt text and captions.
- *
- * @since 2.6.0
- *
- * @param int|null $attachment_id Attachment ID.
- * @param WC_Product|bool $product WC_Product object.
- *
- * @return array
- */
- function wc_get_product_attachment_props( $attachment_id = null, $product = false ) {
- $props = array(
- 'title' => '',
- 'caption' => '',
- 'url' => '',
- 'alt' => '',
- 'src' => '',
- 'srcset' => false,
- 'sizes' => false,
- );
- $attachment = get_post( $attachment_id );
- if ( $attachment ) {
- $props['title'] = wp_strip_all_tags( $attachment->post_title );
- $props['caption'] = wp_strip_all_tags( $attachment->post_excerpt );
- $props['url'] = wp_get_attachment_url( $attachment_id );
- // Alt text.
- $alt_text = array( wp_strip_all_tags( get_post_meta( $attachment_id, '_wp_attachment_image_alt', true ) ), $props['caption'], wp_strip_all_tags( $attachment->post_title ) );
- if ( $product && $product instanceof WC_Product ) {
- $alt_text[] = wp_strip_all_tags( get_the_title( $product->get_id() ) );
- }
- $alt_text = array_filter( $alt_text );
- $props['alt'] = isset( $alt_text[0] ) ? $alt_text[0] : '';
- // Large version.
- $src = wp_get_attachment_image_src( $attachment_id, 'full' );
- $props['full_src'] = $src[0];
- $props['full_src_w'] = $src[1];
- $props['full_src_h'] = $src[2];
- // Gallery thumbnail.
- $gallery_thumbnail = wc_get_image_size( 'gallery_thumbnail' );
- $gallery_thumbnail_size = apply_filters( 'woocommerce_gallery_thumbnail_size', array( $gallery_thumbnail['width'], $gallery_thumbnail['height'] ) );
- $src = wp_get_attachment_image_src( $attachment_id, $gallery_thumbnail_size );
- $props['gallery_thumbnail_src'] = $src[0];
- $props['gallery_thumbnail_src_w'] = $src[1];
- $props['gallery_thumbnail_src_h'] = $src[2];
- // Thumbnail version.
- $src = wp_get_attachment_image_src( $attachment_id, 'woocommerce_thumbnail' );
- $props['thumb_src'] = $src[0];
- $props['thumb_src_w'] = $src[1];
- $props['thumb_src_h'] = $src[2];
- // Image source.
- $src = wp_get_attachment_image_src( $attachment_id, 'woocommerce_single' );
- $props['src'] = $src[0];
- $props['src_w'] = $src[1];
- $props['src_h'] = $src[2];
- $props['srcset'] = function_exists( 'wp_get_attachment_image_srcset' ) ? wp_get_attachment_image_srcset( $attachment_id, 'woocommerce_single' ) : false;
- $props['sizes'] = function_exists( 'wp_get_attachment_image_sizes' ) ? wp_get_attachment_image_sizes( $attachment_id, 'woocommerce_single' ) : false;
- }
- return $props;
- }
- /**
- * Get product visibility options.
- *
- * @since 3.0.0
- * @return array
- */
- function wc_get_product_visibility_options() {
- return apply_filters( 'woocommerce_product_visibility_options', array(
- 'visible' => __( 'Shop and search results', 'woocommerce' ),
- 'catalog' => __( 'Shop only', 'woocommerce' ),
- 'search' => __( 'Search results only', 'woocommerce' ),
- 'hidden' => __( 'Hidden', 'woocommerce' ),
- ) );
- }
- /**
- * Get min/max price meta query args.
- *
- * @since 3.0.0
- * @param array $args Min price and max price arguments.
- * @return array
- */
- function wc_get_min_max_price_meta_query( $args ) {
- $min = isset( $args['min_price'] ) ? floatval( $args['min_price'] ) : 0;
- $max = isset( $args['max_price'] ) ? floatval( $args['max_price'] ) : 9999999999;
- /**
- * Adjust if the store taxes are not displayed how they are stored.
- * Kicks in when prices excluding tax are displayed including tax.
- */
- if ( wc_tax_enabled() && 'incl' === get_option( 'woocommerce_tax_display_shop' ) && ! wc_prices_include_tax() ) {
- $tax_classes = array_merge( array( '' ), WC_Tax::get_tax_classes() );
- $class_min = $min;
- $class_max = $max;
- foreach ( $tax_classes as $tax_class ) {
- $tax_rates = WC_Tax::get_rates( $tax_class );
- if ( $tax_rates ) {
- $class_min = $min + WC_Tax::get_tax_total( WC_Tax::calc_exclusive_tax( $min, $tax_rates ) );
- $class_max = $max - WC_Tax::get_tax_total( WC_Tax::calc_exclusive_tax( $max, $tax_rates ) );
- }
- }
- $min = $class_min;
- $max = $class_max;
- }
- return array(
- 'key' => '_price',
- 'value' => array( $min, $max ),
- 'compare' => 'BETWEEN',
- 'type' => 'DECIMAL(10,' . wc_get_price_decimals() . ')',
- );
- }
- /**
- * Get product tax class options.
- *
- * @since 3.0.0
- * @return array
- */
- function wc_get_product_tax_class_options() {
- $tax_classes = WC_Tax::get_tax_classes();
- $tax_class_options = array();
- $tax_class_options[''] = __( 'Standard', 'woocommerce' );
- if ( ! empty( $tax_classes ) ) {
- foreach ( $tax_classes as $class ) {
- $tax_class_options[ sanitize_title( $class ) ] = $class;
- }
- }
- return $tax_class_options;
- }
- /**
- * Get stock status options.
- *
- * @since 3.0.0
- * @return array
- */
- function wc_get_product_stock_status_options() {
- return array(
- 'instock' => __( 'In stock', 'woocommerce' ),
- 'outofstock' => __( 'Out of stock', 'woocommerce' ),
- 'onbackorder' => __( 'On backorder', 'woocommerce' ),
- );
- }
- /**
- * Get backorder options.
- *
- * @since 3.0.0
- * @return array
- */
- function wc_get_product_backorder_options() {
- return array(
- 'no' => __( 'Do not allow', 'woocommerce' ),
- 'notify' => __( 'Allow, but notify customer', 'woocommerce' ),
- 'yes' => __( 'Allow', 'woocommerce' ),
- );
- }
- /**
- * Get related products based on product category and tags.
- *
- * @since 3.0.0
- * @param int $product_id Product ID.
- * @param int $limit Limit of results.
- * @param array $exclude_ids Exclude IDs from the results.
- * @return array
- */
- function wc_get_related_products( $product_id, $limit = 5, $exclude_ids = array() ) {
- $product_id = absint( $product_id );
- $limit = $limit >= -1 ? $limit : 5;
- $exclude_ids = array_merge( array( 0, $product_id ), $exclude_ids );
- $transient_name = 'wc_related_' . $product_id;
- $query_args = http_build_query( array(
- 'limit' => $limit,
- 'exclude_ids' => $exclude_ids,
- ) );
- $transient = get_transient( $transient_name );
- $related_posts = $transient && isset( $transient[ $query_args ] ) ? $transient[ $query_args ] : false;
- // We want to query related posts if they are not cached, or we don't have enough.
- if ( false === $related_posts || count( $related_posts ) < $limit ) {
- $cats_array = apply_filters( 'woocommerce_product_related_posts_relate_by_category', true, $product_id ) ? apply_filters( 'woocommerce_get_related_product_cat_terms', wc_get_product_term_ids( $product_id, 'product_cat' ), $product_id ) : array();
- $tags_array = apply_filters( 'woocommerce_product_related_posts_relate_by_tag', true, $product_id ) ? apply_filters( 'woocommerce_get_related_product_tag_terms', wc_get_product_term_ids( $product_id, 'product_tag' ), $product_id ) : array();
- // Don't bother if none are set, unless woocommerce_product_related_posts_force_display is set to true in which case all products are related.
- if ( empty( $cats_array ) && empty( $tags_array ) && ! apply_filters( 'woocommerce_product_related_posts_force_display', false, $product_id ) ) {
- $related_posts = array();
- } else {
- $data_store = WC_Data_Store::load( 'product' );
- $related_posts = $data_store->get_related_products( $cats_array, $tags_array, $exclude_ids, $limit + 10, $product_id );
- }
- if ( $transient ) {
- $transient[ $query_args ] = $related_posts;
- } else {
- $transient = array( $query_args => $related_posts );
- }
- set_transient( $transient_name, $transient, DAY_IN_SECONDS );
- }
- $related_posts = apply_filters( 'woocommerce_related_products', $related_posts, $product_id, array(
- 'limit' => $limit,
- 'excluded_ids' => $exclude_ids,
- ) );
- shuffle( $related_posts );
- return array_slice( $related_posts, 0, $limit );
- }
- /**
- * Retrieves product term ids for a taxonomy.
- *
- * @since 3.0.0
- * @param int $product_id Product ID.
- * @param string $taxonomy Taxonomy slug.
- * @return array
- */
- function wc_get_product_term_ids( $product_id, $taxonomy ) {
- $terms = get_the_terms( $product_id, $taxonomy );
- return ( empty( $terms ) || is_wp_error( $terms ) ) ? array() : wp_list_pluck( $terms, 'term_id' );
- }
- /**
- * For a given product, and optionally price/qty, work out the price with tax included, based on store settings.
- *
- * @since 3.0.0
- * @param WC_Product $product WC_Product object.
- * @param array $args Optional arguments to pass product quantity and price.
- * @return float
- */
- function wc_get_price_including_tax( $product, $args = array() ) {
- $args = wp_parse_args( $args, array(
- 'qty' => '',
- 'price' => '',
- ) );
- $price = '' !== $args['price'] ? max( 0.0, (float) $args['price'] ) : $product->get_price();
- $qty = '' !== $args['qty'] ? max( 0.0, (float) $args['qty'] ) : 1;
- if ( '' === $price ) {
- return '';
- } elseif ( empty( $qty ) ) {
- return 0.0;
- }
- $line_price = $price * $qty;
- $return_price = $line_price;
- if ( $product->is_taxable() ) {
- if ( ! wc_prices_include_tax() ) {
- $tax_rates = WC_Tax::get_rates( $product->get_tax_class() );
- $taxes = WC_Tax::calc_tax( $line_price, $tax_rates, false );
- $tax_amount = WC_Tax::get_tax_total( $taxes );
- $return_price = round( $line_price + $tax_amount, wc_get_price_decimals() );
- } else {
- $tax_rates = WC_Tax::get_rates( $product->get_tax_class() );
- $base_tax_rates = WC_Tax::get_base_tax_rates( $product->get_tax_class( 'unfiltered' ) );
- /**
- * If the customer is excempt from VAT, remove the taxes here.
- * Either remove the base or the user taxes depending on woocommerce_adjust_non_base_location_prices setting.
- */
- if ( ! empty( WC()->customer ) && WC()->customer->get_is_vat_exempt() ) { // @codingStandardsIgnoreLine.
- $remove_taxes = apply_filters( 'woocommerce_adjust_non_base_location_prices', true ) ? WC_Tax::calc_tax( $line_price, $base_tax_rates, true ) : WC_Tax::calc_tax( $line_price, $tax_rates, true );
- $remove_tax = array_sum( $remove_taxes );
- $return_price = round( $line_price - $remove_tax, wc_get_price_decimals() );
- /**
- * The woocommerce_adjust_non_base_location_prices filter can stop base taxes being taken off when dealing with out of base locations.
- * e.g. If a product costs 10 including tax, all users will pay 10 regardless of location and taxes.
- * This feature is experimental @since 2.4.7 and may change in the future. Use at your risk.
- */
- } elseif ( $tax_rates !== $base_tax_rates && apply_filters( 'woocommerce_adjust_non_base_location_prices', true ) ) {
- $base_taxes = WC_Tax::calc_tax( $line_price, $base_tax_rates, true );
- $modded_taxes = WC_Tax::calc_tax( $line_price - array_sum( $base_taxes ), $tax_rates, false );
- $return_price = round( $line_price - array_sum( $base_taxes ) + wc_round_tax_total( array_sum( $modded_taxes ), wc_get_price_decimals() ), wc_get_price_decimals() );
- }
- }
- }
- return apply_filters( 'woocommerce_get_price_including_tax', $return_price, $qty, $product );
- }
- /**
- * For a given product, and optionally price/qty, work out the price with tax excluded, based on store settings.
- *
- * @since 3.0.0
- * @param WC_Product $product WC_Product object.
- * @param array $args Optional arguments to pass product quantity and price.
- * @return float
- */
- function wc_get_price_excluding_tax( $product, $args = array() ) {
- $args = wp_parse_args( $args, array(
- 'qty' => '',
- 'price' => '',
- ) );
- $price = '' !== $args['price'] ? max( 0.0, (float) $args['price'] ) : $product->get_price();
- $qty = '' !== $args['qty'] ? max( 0.0, (float) $args['qty'] ) : 1;
- if ( '' === $price ) {
- return '';
- } elseif ( empty( $qty ) ) {
- return 0.0;
- }
- $line_price = $price * $qty;
- if ( $product->is_taxable() && wc_prices_include_tax() ) {
- $tax_rates = WC_Tax::get_rates( $product->get_tax_class() );
- $base_tax_rates = WC_Tax::get_base_tax_rates( $product->get_tax_class( 'unfiltered' ) );
- $remove_taxes = apply_filters( 'woocommerce_adjust_non_base_location_prices', true ) ? WC_Tax::calc_tax( $line_price, $base_tax_rates, true ) : WC_Tax::calc_tax( $line_price, $tax_rates, true );
- $return_price = $line_price - array_sum( $remove_taxes );
- } else {
- $return_price = $line_price;
- }
- return apply_filters( 'woocommerce_get_price_excluding_tax', $return_price, $qty, $product );
- }
- /**
- * Returns the price including or excluding tax, based on the 'woocommerce_tax_display_shop' setting.
- *
- * @since 3.0.0
- * @param WC_Product $product WC_Product object.
- * @param array $args Optional arguments to pass product quantity and price.
- * @return float
- */
- function wc_get_price_to_display( $product, $args = array() ) {
- $args = wp_parse_args( $args, array(
- 'qty' => 1,
- 'price' => $product->get_price(),
- ) );
- $price = $args['price'];
- $qty = $args['qty'];
- return 'incl' === get_option( 'woocommerce_tax_display_shop' ) ?
- wc_get_price_including_tax( $product, array(
- 'qty' => $qty,
- 'price' => $price,
- ) ) :
- wc_get_price_excluding_tax( $product, array(
- 'qty' => $qty,
- 'price' => $price,
- ) );
- }
- /**
- * Returns the product categories in a list.
- *
- * @param int $product_id Product ID.
- * @param string $sep (default: ', ').
- * @param string $before (default: '').
- * @param string $after (default: '').
- * @return string
- */
- function wc_get_product_category_list( $product_id, $sep = ', ', $before = '', $after = '' ) {
- return get_the_term_list( $product_id, 'product_cat', $before, $sep, $after );
- }
- /**
- * Returns the product tags in a list.
- *
- * @param int $product_id Product ID.
- * @param string $sep (default: ', ').
- * @param string $before (default: '').
- * @param string $after (default: '').
- * @return string
- */
- function wc_get_product_tag_list( $product_id, $sep = ', ', $before = '', $after = '' ) {
- return get_the_term_list( $product_id, 'product_tag', $before, $sep, $after );
- }
- /**
- * Callback for array filter to get visible only.
- *
- * @since 3.0.0
- * @param WC_Product $product WC_Product object.
- * @return bool
- */
- function wc_products_array_filter_visible( $product ) {
- return $product && is_a( $product, 'WC_Product' ) && $product->is_visible();
- }
- /**
- * Callback for array filter to get visible grouped products only.
- *
- * @since 3.1.0
- * @param WC_Product $product WC_Product object.
- * @return bool
- */
- function wc_products_array_filter_visible_grouped( $product ) {
- return $product && is_a( $product, 'WC_Product' ) && ( 'publish' === $product->get_status() || current_user_can( 'edit_product', $product->get_id() ) );
- }
- /**
- * Callback for array filter to get products the user can edit only.
- *
- * @since 3.0.0
- * @param WC_Product $product WC_Product object.
- * @return bool
- */
- function wc_products_array_filter_editable( $product ) {
- return $product && is_a( $product, 'WC_Product' ) && current_user_can( 'edit_product', $product->get_id() );
- }
- /**
- * Callback for array filter to get products the user can view only.
- *
- * @since 3.4.0
- * @param WC_Product $product WC_Product object.
- * @return bool
- */
- function wc_products_array_filter_readable( $product ) {
- return $product && is_a( $product, 'WC_Product' ) && current_user_can( 'read_product', $product->get_id() );
- }
- /**
- * Sort an array of products by a value.
- *
- * @since 3.0.0
- *
- * @param array $products List of products to be ordered.
- * @param string $orderby Optional order criteria.
- * @param string $order Ascending or descending order.
- *
- * @return array
- */
- function wc_products_array_orderby( $products, $orderby = 'date', $order = 'desc' ) {
- $orderby = strtolower( $orderby );
- $order = strtolower( $order );
- switch ( $orderby ) {
- case 'title':
- case 'id':
- case 'date':
- case 'modified':
- case 'menu_order':
- case 'price':
- usort( $products, 'wc_products_array_orderby_' . $orderby );
- break;
- default:
- shuffle( $products );
- break;
- }
- if ( 'desc' === $order ) {
- $products = array_reverse( $products );
- }
- return $products;
- }
- /**
- * Sort by title.
- *
- * @since 3.0.0
- * @param WC_Product $a First WC_Product object.
- * @param WC_Product $b Second WC_Product object.
- * @return int
- */
- function wc_products_array_orderby_title( $a, $b ) {
- return strcasecmp( $a->get_name(), $b->get_name() );
- }
- /**
- * Sort by id.
- *
- * @since 3.0.0
- * @param WC_Product $a First WC_Product object.
- * @param WC_Product $b Second WC_Product object.
- * @return int
- */
- function wc_products_array_orderby_id( $a, $b ) {
- if ( $a->get_id() === $b->get_id() ) {
- return 0;
- }
- return ( $a->get_id() < $b->get_id() ) ? -1 : 1;
- }
- /**
- * Sort by date.
- *
- * @since 3.0.0
- * @param WC_Product $a First WC_Product object.
- * @param WC_Product $b Second WC_Product object.
- * @return int
- */
- function wc_products_array_orderby_date( $a, $b ) {
- if ( $a->get_date_created() === $b->get_date_created() ) {
- return 0;
- }
- return ( $a->get_date_created() < $b->get_date_created() ) ? -1 : 1;
- }
- /**
- * Sort by modified.
- *
- * @since 3.0.0
- * @param WC_Product $a First WC_Product object.
- * @param WC_Product $b Second WC_Product object.
- * @return int
- */
- function wc_products_array_orderby_modified( $a, $b ) {
- if ( $a->get_date_modified() === $b->get_date_modified() ) {
- return 0;
- }
- return ( $a->get_date_modified() < $b->get_date_modified() ) ? -1 : 1;
- }
- /**
- * Sort by menu order.
- *
- * @since 3.0.0
- * @param WC_Product $a First WC_Product object.
- * @param WC_Product $b Second WC_Product object.
- * @return int
- */
- function wc_products_array_orderby_menu_order( $a, $b ) {
- if ( $a->get_menu_order() === $b->get_menu_order() ) {
- return 0;
- }
- return ( $a->get_menu_order() < $b->get_menu_order() ) ? -1 : 1;
- }
- /**
- * Sort by price low to high.
- *
- * @since 3.0.0
- * @param WC_Product $a First WC_Product object.
- * @param WC_Product $b Second WC_Product object.
- * @return int
- */
- function wc_products_array_orderby_price( $a, $b ) {
- if ( $a->get_price() === $b->get_price() ) {
- return 0;
- }
- return ( $a->get_price() < $b->get_price() ) ? -1 : 1;
- }
- /**
- * Queue a product for syncing at the end of the request.
- *
- * @param int $product_id Product ID.
- */
- function wc_deferred_product_sync( $product_id ) {
- global $wc_deferred_product_sync;
- if ( empty( $wc_deferred_product_sync ) ) {
- $wc_deferred_product_sync = array();
- }
- $wc_deferred_product_sync[] = $product_id;
- }
|