PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.14
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.14
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
← All changes | boot/app.php +7 -1 6.2.66.2.14 View file →
@@ -28,12 +28,18 @@
28 28 add_action('fluentform/global_menu', $renderNotice);
29 29 add_action('fluentform/after_form_menu', $renderNotice);
30 30 });
31 31 }
32 +
33 + fluentform_maybe_disable_contaminated_pro();
32 34 });
33 35
34 36 $app = new Application($file);
35 37
38 + // Boot the MCP server (Abilities API tools + endpoint). Self-guards: ships
39 + // off, and its Abilities/adapter hooks fire only when those systems exist.
40 + \FluentForm\App\Modules\MCP\MCPInit::boot();
41 +
36 42 register_activation_hook($file, function ($network_wide) use ($app) {
37 43 ($app->make(ActivationHandler::class))->handle($network_wide);
38 44 });
39 45
@@ -111,9 +117,9 @@
111 117 'support' => '<a rel="noopener" href="https://wpmanageninja.com/support-tickets/#/" style="color: #197efb;font-weight: 600;" aria-label="' . esc_attr__('Get Support', 'fluentform') . '" target="_blank">' . esc_html__('Support', 'fluentform') . '</a>',
112 118 'developer_docs' => '<a rel="noopener" href="https://developers.fluentforms.com" style="color: #197efb;font-weight: 600;" aria-label="' . esc_attr__('Developer Docs', 'fluentform') . '" target="_blank">' . esc_html__('Developer Docs', 'fluentform') . '</a>',
113 119 ];
114 120 if (!defined('FLUENTFORMPRO')) {
115 - $row_meta['pro'] = '<a rel="noopener" href="https://fluentforms.com" style="color: #7742e6;font-weight: bold;" aria-label="' . esc_attr__('Upgrade to Pro', 'fluentform') . '" target="_blank">' . esc_html__('Upgrade to Pro', 'fluentform') . '</a>';
121 + $row_meta['pro'] = '<a rel="noopener" href="' . esc_url(fluentform_upgrade_url('plugin_row_meta')) . '" style="color: #7742e6;font-weight: bold;" aria-label="' . esc_attr__('Upgrade to Pro', 'fluentform') . '" target="_blank">' . esc_html__('Upgrade to Pro', 'fluentform') . '</a>';
116 122 }
117 123 return array_merge($links, $row_meta);
118 124 }
119 125 return (array)$links;