Automattic\WooCommerce\RestApi\Utilities
ImageAttachment::__construct
Constructor.
Метод класса: ImageAttachment{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ImageAttachment = new ImageAttachment(); $ImageAttachment->__construct( $id, $object_id );
- $id(int)
- Attachment ID.
- $object_id(int)
- Object ID.
Код ImageAttachment::__construct() ImageAttachment:: construct WC 10.7.0
public function __construct( $id = 0, $object_id = 0 ) {
$this->id = (int) $id;
$this->object_id = (int) $object_id;
}