WC_Product_Attribute::offsetSet()publicWC 1.0ReturnTypeWillChange

OffsetSet.

Method of the class: WC_Product_Attribute{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Product_Attribute = new WC_Product_Attribute();
$WC_Product_Attribute->offsetSet( $offset, $value );
$offset(string) (required)
Offset.
$value(mixed) (required)
Value.

WC_Product_Attribute::offsetSet() code WC 8.7.0

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;
	}
}