Browse
For agents
About
Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery
/
trunk
Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery
vtrunk
Switch version
2.1.14
2.1.13
2.1.12
2.1.11
2.1.10
2.1.9
2.1.8
2.1.7
trunk
1.2.2
1.3.2
1.3.3
1.3.4
1.3.5
1.3.6
1.3.7
1.3.8
1.4.0
1.4.1
1.4.10
1.4.11
1.4.2
1.4.3
1.4.5
1.4.6
All 74 releases
Overview
Code
pixel-gallery
/
modules
/
flame
/
module.php
module.php
in Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery trunk, at modules/flame/module.php
22 lines
353 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
PixelGallery
\
Modules
\
Flame
;
3
4
use
PixelGallery
\
Base
\
Pixel_Gallery_Module_Base
;
5
6
if
(
!
defined
(
'
ABSPATH
'
)
)
exit
;
//
Exit if accessed directly
7
8
class
Module
extends
Pixel_Gallery_Module_Base
{
9
10
public
function
get_name
(
)
{
11
return
'
flame
'
;
12
}
13
14
public
function
get_widgets
(
)
{
15
$
widgets
=
[
16
'
Flame
'
,
17
]
;
18
19
return
$
widgets
;
20
}
21
}
22