PluginProbe
Posts Table with Search & Sort / 1.3
Posts Table with Search & Sort v1.3
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 / Plugin / Plugin.php

Plugin.php in Posts Table with Search & Sort 1.3, at lib/Plugin/Plugin.php

26 lines 398 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\Plugin;
4
5 interface Plugin {
6
7 public function get_name();
8
9 public function get_version();
10
11 public function get_file();
12
13 public function get_basename();
14
15 public function get_slug();
16
17 public function get_dir_path();
18
19 public function is_woocommerce();
20
21 public function get_settings_page_url();
22
23 public function get_documentation_url();
24
25 }
26