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