PluginProbe
Posts Table with Search & Sort / 1.3.5
Posts Table with Search & Sort v1.3.5
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 1.3.8 All 39 releases
posts-data-table / lib / Conditional.php

Conditional.php in Posts Table with Search & Sort 1.3.5, at lib/Conditional.php

22 lines 393 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Barn2\PTS_Lib;
3
4 /**
5 * An object which is loaded conditionally.
6 *
7 * @package Barn2\barn2-lib
8 * @author Barn2 Plugins <support@barn2.com>
9 * @license GPL-3.0
10 * @copyright Barn2 Media Ltd
11 */
12 interface Conditional {
13
14 /**
15 * Is this object required?
16 *
17 * @return boolean true if required, false otherwise.
18 */
19 public function is_required();
20
21 }
22