Browse
For agents
About
CommerceBird – AI Command Center, ERP Integrations & B2B for WooCommerce (Zoho, Exact Online).
/
3.0.3
CommerceBird – AI Command Center, ERP Integrations & B2B for WooCommerce (Zoho, Exact Online).
v3.0.3
Switch version
3.0.3
3.0.2
3.0.1
trunk
2.2.14
2.2.15
2.2.16
2.2.17
2.2.18
2.2.19
2.3.0
2.3.1
2.3.10
2.3.11
2.3.12
2.3.13
2.3.14
2.3.2
2.3.3
2.3.4
2.3.5
2.3.6
2.3.7
2.3.8
2.3.9
All 65 releases
Overview
Code
commercebird
/
admin
/
includes
/
Mappings
/
ReviewResolution.php
ReviewResolution.php
in CommerceBird – AI Command Center, ERP Integrations & B2B for WooCommerce (Zoho, Exact Online). 3.0.3, at admin/includes/Mappings/ReviewResolution.php
14 lines
261 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
CommerceBird
\
Admin
\
Mappings
;
4
5
if
(
!
defined
(
'
ABSPATH
'
)
)
{
6
exit
;
7
}
8
9
enum
ReviewResolution
:
string
{
10
case
KeepExisting
=
'
keep_existing
'
;
11
case
ReplaceWithPending
=
'
replace_with_pending
'
;
12
case
DiscardBoth
=
'
discard_both
'
;
13
}
14