Browse
For agents
About
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster
/
trunk
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster
vtrunk
Switch version
2.6.0
trunk
1.1.0
1.1.4
1.2.1
1.2.2
1.2.3
1.2.5
1.2.9
1.3.1
1.3.2
1.5.0
1.5.1
1.5.4
1.5.7
1.5.8
1.5.9
1.6.2
1.6.5
1.6.8
1.7.2
1.7.4
1.7.5
1.7.9
1.8.1
All 42 releases
Overview
Code
sellkit
/
includes
/
elementor
/
modules
/
accept-reject-button
/
module.php
module.php
in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster trunk, at includes/elementor/modules/accept-reject-button/module.php
15 lines
283 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
defined
(
'
ABSPATH
'
)
||
die
(
)
;
4
5
class
Sellkit_Elementor_Accept_Reject_Button_Module
extends
Sellkit_Elementor_Base_Module
{
6
7
public
static
function
is_active
(
)
{
8
return
function_exists
(
'
WC
'
)
;
9
}
10
11
public
function
get_widgets
(
)
{
12
return
[
'
accept-reject-button
'
]
;
13
}
14
}
15