Browse
For agents
About
AliNext – WooCommerce Dropshipping Plugin for AliExpress
/
trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress
vtrunk
Overview
Code
ali2woo-lite
/
includes
/
classes
/
utils
/
EditionHelper.php
EditionHelper.php
in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/utils/EditionHelper.php
16 lines
251 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
namespace
AliNext_Lite
;
;
3
4
class
EditionHelper
5
{
6
public
static
function
isLite
(
)
:
bool
7
{
8
return
a2wl_check_defined
(
'
ALINEXT_IS_LITE
'
)
;
9
}
10
11
public
static
function
isFull
(
)
:
bool
12
{
13
return
!
self
::
isLite
(
)
;
14
}
15
}
16