WC_Product_Download::offsetGet
OffsetGet.
Method of the class: WC_Product_Download{}
No Hooks.
Returns
Mixed.
Usage
$WC_Product_Download = new WC_Product_Download(); $WC_Product_Download->offsetGet( $offset );
- $offset(string) (required)
- Offset.
WC_Product_Download::offsetGet() WC Product Download::offsetGet code WC 10.5.0
public function offsetGet( $offset ) {
switch ( $offset ) {
default:
if ( is_callable( array( $this, "get_$offset" ) ) ) {
return $this->{"get_$offset"}();
}
break;
}
return '';
}