Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: LocationStatus.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * A location's status. */ class LocationStatus { /** * A location that is active for business. */ public const ACTIVE = 'ACTIVE'; /** * A location that is not active for business. Inactive locations provide historical * information. Hide inactive locations unless the user has requested to see them. */ public const INACTIVE = 'INACTIVE'; }
Save
Cancel