PluginProbe
Posts Table with Search & Sort / 1.3.1
Posts Table with Search & Sort v1.3.1
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
posts-data-table / lib / Registerable.php

Registerable.php in Posts Table with Search & Sort 1.3.1, at lib/Registerable.php

23 lines 472 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Barn2\Lib;
4
5 if ( ! \interface_exists( __NAMESPACE__ . '\\Registerable' ) ) {
6
7 /**
8 * An object that can be registered with WordPress via the Plugin API, i.e. add_action() and add_filter().
9 *
10 * @package Barn2/barn2-lib
11 * @author Barn2 Plugins <info@barn2.co.uk>
12 * @license GPL-3.0
13 * @copyright Barn2 Media Ltd
14 * @version 1.0
15 */
16 interface Registerable {
17
18 public function register();
19
20 }
21
22 }
23