Browse
For agents
About
Email Log
/
2.1.0
Email Log
v2.1.0
Switch version
2.63
2.4.8
2.4.9
2.6
2.61
2.62
trunk
0.1
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.8.1
0.9
0.9.1
0.9.2
1.1
1.5
1.5.1
1.5.2
1.5.3
1.5.4
All 61 releases
Overview
Code
email-log
/
include
/
Core
/
Loadie.php
Loadie.php
in Email Log 2.1.0, at include/Core/Loadie.php
21 lines
450 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
namespace
EmailLog
\
Core
;
2
3
defined
(
'
ABSPATH
'
)
||
exit
;
//
Exit if accessed directly.
4
5
/**
6
* EmailLog Loadie interface.
7
* The `load()` method of this interface will be called by Email Log.
8
* Even though Loadie is not an actual word it sound more logical than subscriber.
9
*
10
*
@since
2.0.0
11
*/
12
interface
Loadie
{
13
14
/**
15
* This method will be called by Email Log after `wp-loaded` event.
16
*
17
*
@return
void
18
*/
19
public
function
load
(
)
;
20
}
21