Browse
For agents
About
Posts Table with Search & Sort
/
1.3.4
Posts Table with Search & Sort
v1.3.4
Switch version
1.4.13
trunk
1.0
1.0.1
1.0.2
1.0.3
1.0.4
1.0.5
1.0.6
1.1
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.2
1.3
1.3.1
1.3.1-v2
1.3.2
1.3.3
1.3.4
1.3.5
1.3.6
1.3.7
All 40 releases
Overview
Code
posts-data-table
/
lib
/
Registerable.php
Registerable.php
in Posts Table with Search & Sort 1.3.4, at lib/Registerable.php
18 lines
361 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
Barn2
\
PTS_Lib
;
3
4
/**
5
* An object that can be registered with WordPress via the Plugin API, i.e. add_action() and add_filter().
6
*
7
*
@package
Barn2\barn2-lib
8
*
@author
Barn2 Plugins <support@barn2.co.uk>
9
*
@license
GPL-3.0
10
*
@copyright
Barn2 Media Ltd
11
*
@version
1.0
12
*/
13
interface
Registerable
{
14
15
public
function
register
(
)
;
16
17
}
18