PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
woocommerce
/
includes
<?php /** * Represents a product attribute * * Attributes can be global (taxonomy based) or local to the product itself. * Uses ArrayAccess to be BW compatible with previous ways of reading attributes. * * @package WooCommerce\Classes * @version 3.0.0 * @since 3.0.0 */ defined( 'ABSPATH' ) || exit; /** * Product attribute class. */ class WC_Product_Attribute implements ArrayAccess { /** * Data array. * * @since 3.0.0 * @var array */ protected $data = array( 'id' => 0, 'name' => '', 'options' => array(), 'position' => 0, 'visible' => false, 'variation' => false, ); /** * Return if this attribute is a taxonomy. * * @return boolean */ public function is_taxonomy() { return 0 < $this->get_id(); } /** * Get taxonomy name if applicable. * * @return string */ public function get_taxonomy() { return $this->is_taxonomy() ? $this->get_name() : ''; } /** * Get taxonomy object. * * @return array|null */ public function get_taxonomy_object() { global $wc_product_attributes; return $this->is_taxonomy() ? $wc_product_attributes[ $this->get_name() ] : null; } /** * Gets terms from the stored options. * * @return array|null */ public function get_terms() { if ( ! $this->is_taxonomy() || ! taxonomy_exists( $this->get_name() ) ) { return null; } $terms = array(); foreach ( $this->get_options() as $option ) { if ( is_int( $option ) ) { $term = get_term_by( 'id', $option, $this->get_name() ); } else { // Term names get escaped in WP. See sanitize_term_field. $term = get_term_by( 'name', $option, $this->get_name() ); if ( ! $term || is_wp_error( $term ) ) { $new_term = wp_insert_term( $option, $this->get_name() ); $term = is_wp_error( $new_term ) ? false : get_term_by( 'id', $new_term['term_id'], $this->get_name() ); } } if ( $term && ! is_wp_error( $term ) ) { $terms[] = $term; } } return $terms; } /** * Gets slugs from the stored options, or just the string if text based. * * @return array */ public function get_slugs() { if ( ! $this->is_taxonomy() || ! taxonomy_exists( $this->get_name() ) ) { return $this->get_options(); } $terms = array(); foreach ( $this->get_options() as $option ) { if ( is_int( $option ) ) { $term = get_term_by( 'id', $option, $this->get_name() ); } else { $term = get_term_by( 'name', $option, $this->get_name() ); if ( ! $term || is_wp_error( $term ) ) { $new_term = wp_insert_term( $option, $this->get_name() ); $term = is_wp_error( $new_term ) ? false : get_term_by( 'id', $new_term['term_id'], $this->get_name() ); } } if ( $term && ! is_wp_error( $term ) ) { $terms[] = $term->slug; } } return $terms; } /** * Returns all data for this object. * * @return array */ public function get_data() { return array_merge( $this->data, array( 'is_visible' => $this->get_visible() ? 1 : 0, 'is_variation' => $this->get_variation() ? 1 : 0, 'is_taxonomy' => $this->is_taxonomy() ? 1 : 0, 'value' => $this->is_taxonomy() ? '' : wc_implode_text_attributes( $this->get_options() ), ) ); } /* |-------------------------------------------------------------------------- | Setters |-------------------------------------------------------------------------- */ /** * Set ID (this is the attribute ID). * * @param int $value Attribute ID. */ public function set_id( $value ) { $this->data['id'] = absint( $value ); } /** * Set name (this is the attribute name or taxonomy). * * @param string $value Attribute name. */ public function set_name( $value ) { $this->data['name'] = $value; } /** * Set options. * * @param array $value Attribute options. */ public function set_options( $value ) { $this->data['options'] = $value; } /** * Set position. * * @param int $value Attribute position. */ public function set_position( $value ) { $this->data['position'] = absint( $value ); } /** * Set if visible. * * @param bool $value If is visible on Product's additional info tab. */ public function set_visible( $value ) { $this->data['visible'] = wc_string_to_bool( $value ); } /** * Set if variation. * * @param bool $value If is used for variations. */ public function set_variation( $value ) { $this->data['variation'] = wc_string_to_bool( $value ); } /* |-------------------------------------------------------------------------- | Getters |-------------------------------------------------------------------------- */ /** * Get the ID. * * @return int */ public function get_id() { return $this->data['id']; } /** * Get name. * * @return string */ public function get_name() { return $this->data['name']; } /** * Get options. * * @return array */ public function get_options() { return $this->data['options']; } /** * Get position. * * @return int */ public function get_position() { return $this->data['position']; } /** * Get if visible. * * @return bool */ public function get_visible() { return $this->data['visible']; } /** * Get if variation. * * @return bool */ public function get_variation() { return $this->data['variation']; } /* |-------------------------------------------------------------------------- | ArrayAccess/Backwards compatibility. |-------------------------------------------------------------------------- */ /** * OffsetGet. * * @param string $offset Offset. * @return mixed */ #[\ReturnTypeWillChange] public function offsetGet( $offset ) { switch ( $offset ) { case 'is_variation': return $this->get_variation() ? 1 : 0; case 'is_visible': return $this->get_visible() ? 1 : 0; case 'is_taxonomy': return $this->is_taxonomy() ? 1 : 0; case 'value': return $this->is_taxonomy() ? '' : wc_implode_text_attributes( $this->get_options() ); default: if ( is_callable( array( $this, "get_$offset" ) ) ) { return $this->{"get_$offset"}(); } break; } return ''; } /** * OffsetSet. * * @param string $offset Offset. * @param mixed $value Value. */ #[\ReturnTypeWillChange] public function offsetSet( $offset, $value ) { switch ( $offset ) { case 'is_variation': $this->set_variation( $value ); break; case 'is_visible': $this->set_visible( $value ); break; case 'value': $this->set_options( $value ); break; default: if ( is_callable( array( $this, "set_$offset" ) ) ) { $this->{"set_$offset"}( $value ); } break; } } /** * OffsetUnset. * * @param string $offset Offset. */ #[\ReturnTypeWillChange] public function offsetUnset( $offset ) {} /** * OffsetExists. * * @param string $offset Offset. * @return bool */ #[\ReturnTypeWillChange] public function offsetExists( $offset ) { return in_array( $offset, array_merge( array( 'is_variation', 'is_visible', 'is_taxonomy', 'value' ), array_keys( $this->data ) ), true ); } }
[+]
..
[-] wc-page-functions.php
[edit]
[-] class-wc-countries.php
[edit]
[-] class-wc-ajax.php
[edit]
[-] class-wc-privacy.php
[edit]
[+]
customizer
[+]
gateways
[-] class-wc-order-refund.php
[edit]
[-] wc-stock-functions.php
[edit]
[-] class-wc-cart.php
[edit]
[-] class-wc-tracker.php
[edit]
[-] class-wc-frontend-scripts.php
[edit]
[-] class-wc-product-download.php
[edit]
[+]
widgets
[+]
admin
[-] class-wc-auth.php
[edit]
[-] class-wc-rest-authentication.php
[edit]
[-] class-wc-data-exception.php
[edit]
[-] class-wc-log-levels.php
[edit]
[-] wc-coupon-functions.php
[edit]
[-] class-wc-order-item-shipping.php
[edit]
[+]
integrations
[-] class-wc-payment-gateways.php
[edit]
[-] wc-order-functions.php
[edit]
[+]
shipping
[-] class-wc-order-item-coupon.php
[edit]
[-] class-wc-payment-tokens.php
[edit]
[-] wc-deprecated-functions.php
[edit]
[-] class-wc-product-grouped.php
[edit]
[+]
tracks
[-] wc-product-functions.php
[edit]
[-] class-wc-datetime.php
[edit]
[-] wc-user-functions.php
[edit]
[-] wc-widget-functions.php
[edit]
[-] class-wc-breadcrumb.php
[edit]
[-] class-wc-customer-download-log.php
[edit]
[-] class-wc-order-query.php
[edit]
[-] wc-template-hooks.php
[edit]
[-] class-wc-https.php
[edit]
[-] class-wc-order.php
[edit]
[-] wc-attribute-functions.php
[edit]
[-] class-wc-session-handler.php
[edit]
[-] class-wc-product-variation.php
[edit]
[-] class-wc-query.php
[edit]
[-] class-wc-coupon.php
[edit]
[-] class-wc-shipping-zone.php
[edit]
[-] wc-account-functions.php
[edit]
[-] wc-formatting-functions.php
[edit]
[-] class-wc-integrations.php
[edit]
[-] class-wc-validation.php
[edit]
[-] class-wc-webhook.php
[edit]
[+]
traits
[-] class-wc-checkout.php
[edit]
[-] wc-core-functions.php
[edit]
[+]
emails
[-] wc-cart-functions.php
[edit]
[-] class-wc-shipping.php
[edit]
[-] class-wc-customer-download.php
[edit]
[-] class-wc-geolite-integration.php
[edit]
[-] class-wc-data-store.php
[edit]
[-] class-wc-order-item-tax.php
[edit]
[-] class-wc-customer.php
[edit]
[-] class-wc-product-attribute.php
[edit]
[+]
legacy
[+]
import
[-] class-wc-cli.php
[edit]
[+]
wccom-site
[-] class-wc-form-handler.php
[edit]
[-] class-wc-tax.php
[edit]
[-] wc-order-item-functions.php
[edit]
[+]
blocks
[-] class-wc-cache-helper.php
[edit]
[-] class-wc-cart-totals.php
[edit]
[-] class-wc-emails.php
[edit]
[-] class-wc-product-query.php
[edit]
[-] class-wc-download-handler.php
[edit]
[-] class-wc-product-external.php
[edit]
[-] class-woocommerce.php
[edit]
[-] class-wc-logger.php
[edit]
[-] class-wc-shipping-zones.php
[edit]
[-] class-wc-order-item-meta.php
[edit]
[+]
walkers
[+]
shortcodes
[-] class-wc-cart-session.php
[edit]
[+]
rest-api
[-] class-wc-autoloader.php
[edit]
[-] class-wc-meta-data.php
[edit]
[-] wc-notice-functions.php
[edit]
[+]
queue
[+]
react-admin
[-] class-wc-order-item.php
[edit]
[-] class-wc-shortcodes.php
[edit]
[-] wc-term-functions.php
[edit]
[-] wc-webhook-functions.php
[edit]
[-] class-wc-privacy-exporters.php
[edit]
[-] class-wc-privacy-background-process.php
[edit]
[-] class-wc-regenerate-images-request.php
[edit]
[-] class-wc-deprecated-filter-hooks.php
[edit]
[+]
interfaces
[-] class-wc-background-emailer.php
[edit]
[-] class-wc-geo-ip.php
[edit]
[+]
data-stores
[-] class-wc-comments.php
[edit]
[-] wc-conditional-functions.php
[edit]
[-] class-wc-product-factory.php
[edit]
[+]
theme-support
[+]
libraries
[-] class-wc-structured-data.php
[edit]
[-] class-wc-order-factory.php
[edit]
[-] class-wc-cart-fees.php
[edit]
[-] class-wc-deprecated-action-hooks.php
[edit]
[-] class-wc-order-item-fee.php
[edit]
[+]
cli
[-] class-wc-background-updater.php
[edit]
[-] class-wc-discounts.php
[edit]
[-] class-wc-rate-limiter.php
[edit]
[-] class-wc-geolocation.php
[edit]
[-] class-wc-privacy-erasers.php
[edit]
[-] class-wc-post-types.php
[edit]
[+]
export
[+]
log-handlers
[-] class-wc-regenerate-images.php
[edit]
[+]
abstracts
[-] class-wc-rest-exception.php
[edit]
[-] class-wc-order-item-product.php
[edit]
[-] class-wc-product-simple.php
[edit]
[-] wc-rest-functions.php
[edit]
[-] class-wc-post-data.php
[edit]
[-] class-wc-embed.php
[edit]
[+]
payment-tokens
[-] class-wc-template-loader.php
[edit]
[-] class-wc-product-variable.php
[edit]
[-] class-wc-install.php
[edit]
[-] class-wc-shipping-rate.php
[edit]
[-] class-wc-api.php
[edit]
[-] wc-template-functions.php
[edit]
[-] wc-update-functions.php
[edit]
[-] class-wc-register-wp-admin-settings.php
[edit]