PluginProbe
Posts Table with Search & Sort / 1.4.11
Posts Table with Search & Sort v1.4.11
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 +0 -12 1.4.131.4.11 View file →
@@ -2,9 +2,8 @@
2 2
3 3 namespace Barn2\Plugin\Posts_Table_Search_Sort;
4 4
5 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 6 use Barn2\Plugin\Posts_Table_Search_Sort\Dependencies\Lib\Plugin\Simple_Plugin;
8 7 use Barn2\Plugin\Posts_Table_Search_Sort\Dependencies\Lib\Util;
9 8
10 9 /**
@@ -53,18 +52,7 @@
53 52 $this->add_service( 'shortcode', new Table_Shortcode() );
54 53 $this->add_service( 'scripts', new Frontend_Scripts( $this ) );
55 54 $this->add_service( 'setup_wizard', new Admin\Wizard\Setup_Wizard( $this ) );
56 55 $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 - );
68 56 }
69 57
70 58 }