Automattic\WooCommerce\Admin\Features\Fulfillments
Fulfillment::is_locked
Check if the fulfillment is locked.
Method of the class: Fulfillment{}
No Hooks.
Returns
bool. Whether the fulfillment is locked.
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->is_locked(): bool;
Fulfillment::is_locked() Fulfillment::is locked code WC 11.0.1
public function is_locked(): bool {
return boolval( $this->get_meta( '_is_locked' ) );
}