WC_Product_Download::offsetGet
OffsetGet.
Метод класса: WC_Product_Download{}
Хуков нет.
Возвращает
Разное.
Использование
$WC_Product_Download = new WC_Product_Download(); $WC_Product_Download->offsetGet( $offset );
- $offset(строка) (обязательный)
- Offset.
Код WC_Product_Download::offsetGet() WC Product Download::offsetGet WC 10.7.0
public function offsetGet( $offset ) {
switch ( $offset ) {
default:
if ( is_callable( array( $this, "get_$offset" ) ) ) {
return $this->{"get_$offset"}();
}
if ( isset( $this->extra_data[ $offset ] ) ) {
return $this->extra_data[ $offset ];
}
break;
}
return '';
}