Browse
For agents
About
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder
/
2.0.1
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder
v2.0.1
Switch version
3.1.4
3.0.8
3.0.9
3.1.0
3.1.2
3.1.3
3.0.7
3.0.5
3.0.4
3.0.3
3.0.2
trunk
1.5.0
1.5.1
1.5.2
1.6.1
1.6.2
1.6.3
1.6.4
2.0.0
2.0.1
2.0.2
2.0.3
2.0.4
2.0.5
All 93 releases
Overview
Code
ultimate-store-kit
/
modules
/
brand-carousel
/
module.php
module.php
in Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder 2.0.1, at modules/brand-carousel/module.php
22 lines
397 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
UltimateStoreKit
\
Modules
\
BrandCarousel
;
3
4
use
UltimateStoreKit
\
Base
\
Ultimate_Store_Kit_Module_Base
;
5
6
if
(
!
defined
(
'
ABSPATH
'
)
)
exit
;
//
Exit if accessed directly
7
8
class
Module
extends
Ultimate_Store_Kit_Module_Base
{
9
10
public
function
get_name
(
)
{
11
return
'
brand-carousel
'
;
12
}
13
14
public
function
get_widgets
(
)
{
15
$
widgets
=
[
16
'
Brand_Carousel
'
,
17
]
;
18
19
return
$
widgets
;
20
}
21
}
22