Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: VendorStatus.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * The status of the [Vendor]($m/Vendor), * whether a [Vendor]($m/Vendor) is active or inactive. */ class VendorStatus { /** * Vendor is active and can receive purchase orders. */ public const ACTIVE = 'ACTIVE'; /** * Vendor is inactive and cannot receive purchase orders. */ public const INACTIVE = 'INACTIVE'; }
Save
Cancel