WC_Product_Attribute::offsetSet
OffsetSet.
Method of the class: WC_Product_Attribute{}
No Hooks.
Returns
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() WC Product Attribute::offsetSet code WC 10.9.1
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;
}
$this->extra_data[ $offset ] = $value;
break;
}
}