WC_Product_Download::offsetSet
OffsetSet.
Method of the class: WC_Product_Download{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Product_Download = new WC_Product_Download(); $WC_Product_Download->offsetSet( $offset, $value );
- $offset(string) (required)
- Offset.
- $value(mixed) (required)
- Offset value.
WC_Product_Download::offsetSet() WC Product Download::offsetSet code WC 10.7.0
public function offsetSet( $offset, $value ) {
switch ( $offset ) {
default:
if ( is_callable( array( $this, "set_$offset" ) ) ) {
$this->{"set_$offset"}( $value );
break;
}
$this->extra_data[ $offset ] = $value;
break;
}
}