WC_Order_Item::__construct()
Constructor.
Метод класса: WC_Order_Item{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Order_Item = new WC_Order_Item(); $WC_Order_Item->__construct( $item );
- $item(int|объект|массив)
- ID to load from the DB, or WC_Order_Item object.
Код WC_Order_Item::__construct() WC Order Item:: construct WC 9.3.3
public function __construct( $item = 0 ) { parent::__construct( $item ); if ( $item instanceof WC_Order_Item ) { $this->set_id( $item->get_id() ); } elseif ( is_numeric( $item ) && $item > 0 ) { $this->set_id( $item ); } else { $this->set_object_read( true ); } $type = 'line_item' === $this->get_type() ? 'product' : $this->get_type(); $this->data_store = WC_Data_Store::load( 'order-item-' . $type ); if ( $this->get_id() > 0 ) { $this->data_store->read( $this ); } }