PluginProbe
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO / 2.7.0
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO v2.7.0
2.7.0 2.6.0 2.5.0 2.4.0 2.3.0 2.2.0 2.1.1 2.1.0 2.0.2 2.0.1 2.0.0 1.32.0 1.31.0 1.30.0 1.29.0 1.28.0 1.27.0 1.26.0 1.25.0 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.10.0 All 48 releases
← All changes | includes/admin/class-manager.php +15 -5 2.3.02.7.0 View file →
@@ -21,8 +21,9 @@
21 21 use ThinkRank\Admin\Elementor_Metabox;
22 22 use ThinkRank\Admin\Oxygen_Metabox;
23 23 use ThinkRank\Admin\Divi_Metabox;
24 24 use ThinkRank\Admin\Bricks_Metabox;
25 +use ThinkRank\Admin\Beaver_Metabox;
25 26 use ThinkRank\Admin\Bulk_Action_Manager;
26 27 use ThinkRank\Admin\Post_List_Filters;
27 28
28 29 // Prevent direct access
@@ -88,8 +89,15 @@
88 89 */
89 90 private Bricks_Metabox $bricks_metabox;
90 91
91 92 /**
93 + * Beaver Builder metabox integration
94 + *
95 + * @var Beaver_Metabox
96 + */
97 + private Beaver_Metabox $beaver_metabox;
98 +
99 + /**
92 100 * Post list columns instance
93 101 *
94 102 * @var Post_List_Columns
95 103 */
@@ -143,8 +151,9 @@
143 151 $this->elementor_metabox = new Elementor_Metabox($this->metabox_manager);
144 152 $this->oxygen_metabox = new Oxygen_Metabox($this->metabox_manager);
145 153 $this->divi_metabox = new Divi_Metabox($this->metabox_manager);
146 154 $this->bricks_metabox = new Bricks_Metabox($this->metabox_manager);
155 + $this->beaver_metabox = new Beaver_Metabox($this->metabox_manager);
147 156 $this->post_list_columns = new Post_List_Columns();
148 157 $this->focus_keyword_ajax = new Focus_Keyword_Ajax();
149 158 $this->seo_quick_edit_ajax = new Seo_Quick_Edit_Ajax();
150 159 $this->bulk_action_manager = new Bulk_Action_Manager();
@@ -184,8 +193,12 @@
184 193 // Initialize Bricks builder integration (hooks gate on Bricks' own
185 194 // builder detector, so they no-op without Bricks)
186 195 $this->bricks_metabox->init();
187 196
197 + // Initialize Beaver Builder integration (hooks gate on Beaver Builder's
198 + // own builder detector, so they no-op without Beaver Builder)
199 + $this->beaver_metabox->init();
200 +
188 201 // Initialize post list columns
189 202 $this->post_list_columns->init();
190 203
191 204 // Initialize focus keyword AJAX handler
@@ -439,13 +452,10 @@
439 452 'sectionCaps' => Capability_Manager::section_map(),
440 453 'canManageRoles' => Capability_Manager::current_user_can(Capability_Manager::MANAGE_ROLES),
441 454 // Pro detection flag
442 455 'isPro' => Plan_Config::is_pro(),
443 - // Data update frequency (Pro: daily, Free: every 3 days)
444 - 'dataUpdateFrequency' => Plan_Config::is_pro() ? 'daily' : '3days',
445 - // NB: no per-feature capability maps here. Email Reporting reads
446 - // its capabilities from GET /thinkrank/v1/email-report/config;
447 - // localizing a second copy only invited the two to drift.
456 + // NB: no per-feature capability maps here; each screen reads its
457 + // own state over REST, so a localized copy cannot drift from it.
448 458 // MCP (Model Context Protocol) connection details for the MCP page.
449 459 'mcp' => $this->get_mcp_globals(),
450 460 // Google OAuth: JS only ever gets a nonce-signed admin-post URL.
451 461 // The consent URL, client ID, and scopes are assembled by the proxy,