PluginProbe
Posts Table with Search & Sort / 1.4.13
Posts Table with Search & Sort v1.4.13
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
← All changes | src/Plugin.php +33 -50 1.3.61.4.13 View file →
@@ -1,12 +1,12 @@
1 1 <?php
2 2
3 3 namespace Barn2\Plugin\Posts_Table_Search_Sort;
4 4
5 -use Barn2\PTS_Lib\Plugin\Simple_Plugin;
6 -use Barn2\PTS_Lib\Registerable;
7 -use Barn2\PTS_Lib\Service_Provider;
8 -use Barn2\PTS_Lib\Util;
5 +use Barn2\Plugin\Posts_Table_Search_Sort\Admin\Settings_Page;
6 +use Barn2\Plugin\Posts_Table_Search_Sort\Dependencies\Lib\Admin\Help_Scout_Beacon;
7 +use Barn2\Plugin\Posts_Table_Search_Sort\Dependencies\Lib\Plugin\Simple_Plugin;
8 +use Barn2\Plugin\Posts_Table_Search_Sort\Dependencies\Lib\Util;
9 9
10 10 /**
11 11 * The main plugin class.
12 12 *
@@ -14,20 +14,16 @@
14 14 * @author Barn2 Plugins <support@barn2.com>
15 15 * @license GPL-3.0
16 16 * @copyright Barn2 Media Ltd
17 17 */
18 -class Plugin extends Simple_Plugin implements Registerable, Service_Provider {
18 +class Plugin extends Simple_Plugin {
19 19
20 20 const NAME = 'Posts Table with Search and Sort';
21 21 const ITEM_ID = 8006;
22 22
23 - /**
24 - * @var array $services
25 - */
26 - private $services;
27 23
28 24 /**
29 - * Constructs and initalizes an EDD VAT plugin instance.
25 + * Constructs and initializes posts table plugin instance.
30 26 *
31 27 * @param string $file The main plugin __FILE__
32 28 * @param string $version The current plugin version
33 29 */
@@ -33,55 +29,42 @@
33 29 */
34 30 public function __construct( $file = null, $version = '1.0' ) {
35 31 parent::__construct(
36 32 [
37 - 'id' => self::ITEM_ID,
38 - 'name' => self::NAME,
39 - 'version' => $version,
40 - 'file' => $file
33 + 'id' => self::ITEM_ID,
34 + 'name' => self::NAME,
35 + 'version' => $version,
36 + 'file' => $file,
37 + 'documentation_path' => '/kb-categories/posts-table-search-sort-free-kb/',
38 + 'settings_path' => 'options-general.php?page=' . Settings_Page::MENU_SLUG
41 39 ]
42 40 );
43 -
44 - include_once plugin_dir_path( $file ) . 'src/deprecated.php';
45 -
46 - // Services
47 - $this->services['shortcode'] = new Table_Shortcode();
48 - $this->services['scripts'] = new Frontend_Scripts( $this );
49 -
50 - // Admin only services
51 - if ( Util::is_admin() ) {
52 - $this->services['admin'] = new Admin\Admin_Controller( $this );
53 - }
54 41 }
55 42
56 - public function register() {
57 - add_action( 'plugins_loaded', [ $this, 'maybe_load_plugin' ] );
58 - }
59 -
43 +
60 44 public function maybe_load_plugin() {
61 45 // Don't load plugin if Pro version active
62 - if ( class_exists( '\Posts_Table_Pro_Plugin' ) ) {
63 - return;
46 + if ( ! Util::is_barn2_plugin_active('\\Barn2\\Plugin\\Posts_Table_Pro\\ptp') ) {
47 + add_action('after_setup_theme', [$this, 'start_standard_services']);
64 48 }
65 -
66 - add_action( 'init', [ $this, 'load_textdomain' ] );
67 -
68 - Util::register_services( $this->services );
69 49 }
70 -
71 - public function load_textdomain() {
72 - load_plugin_textdomain( 'posts-data-table', false, $this->get_slug() . '/languages' );
73 - }
74 -
75 - public function get_service( $id ) {
76 - if ( isset( $this->services[ $id ] ) ) {
77 - return $this->services[ $id ];
78 - }
79 -
80 - return null;
81 - }
82 -
83 - public function get_services() {
84 - return $this->services;
50 +
51 + public function add_services() {
52 + $this->add_service( 'plugin_setup', new Plugin_Setup( $this->get_file(), $this ), true );
53 + $this->add_service( 'shortcode', new Table_Shortcode() );
54 + $this->add_service( 'scripts', new Frontend_Scripts( $this ) );
55 + $this->add_service( 'setup_wizard', new Admin\Wizard\Setup_Wizard( $this ) );
56 + $this->add_service( 'admin', new Admin\Admin_Controller( $this ) );
57 + $this->add_service(
58 + 'helpscout_beacon',
59 + new Help_Scout_Beacon(
60 + $this,
61 + [
62 + 'plugin_slug' => 'posts-table-pro',
63 + 'screen_hooks' => [ 'settings_page_posts_table_search_sort' ],
64 + 'capability' => 'manage_options',
65 + ]
66 + )
67 + );
85 68 }
86 69
87 70 }