Browse
For agents
About
Ultimate Post Kit
/
trunk
Ultimate Post Kit
vtrunk
Switch version
4.2.1
4.2.2
4.2.3
4.5.0
4.5.2
4.5.3
4.2.0
4.1.18
4.1.17
4.1.16
4.1.15
4.1.14
4.1.13
4.1.12
4.1.11
4.1.10
4.1.9
4.1.8
4.0.9
4.1.0
4.1.1
4.1.2
4.1.3
4.1.4
4.1.5
All 145 releases
Overview
Code
ultimate-post-kit
/
modules
/
timeline
/
module.php
module.php
in Ultimate Post Kit trunk, at modules/timeline/module.php
23 lines
379 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
UltimatePostKit
\
Modules
\
Timeline
;
3
4
use
UltimatePostKit
\
Base
\
Ultimate_Post_Kit_Module_Base
;
5
6
if
(
!
defined
(
'
ABSPATH
'
)
)
exit
;
//
Exit if accessed directly
7
8
class
Module
extends
Ultimate_Post_Kit_Module_Base
{
9
10
public
function
get_name
(
)
{
11
return
'
timeline
'
;
12
}
13
14
public
function
get_widgets
(
)
{
15
16
$
widgets
=
[
17
'
Timeline
'
,
18
]
;
19
20
return
$
widgets
;
21
}
22
}
23