PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.23
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.23
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/views/frm-form-actions/default_actions.php +0 -13 6.286.23 View file →
@@ -95,19 +95,8 @@
95 95 }
96 96 }
97 97
98 98 /**
99 - * Add n8n action.
100 - */
101 -class FrmDefN8NAction extends FrmFormAction {
102 - public function __construct() {
103 - $action_ops = FrmFormAction::default_action_opts( 'frm_n8n_icon frm_show_upgrade' );
104 - $action_ops['color'] = '#EA4B71';
105 - parent::__construct( 'n8n', 'n8n', $action_ops );
106 - }
107 -}
108 -
109 -/**
110 99 * Add twilio action.
111 100 */
112 101 class FrmDefTwilioAction extends FrmFormAction {
113 102 public function __construct() {
@@ -153,13 +142,11 @@
153 142 $action_ops = FrmFormAction::default_action_opts( 'frm_hubspot_icon frm_show_upgrade' );
154 143 $action_ops['color'] = 'var(--orange)';
155 144
156 145 $action_ops['message'] = '';
157 -
158 146 if ( ! FrmAppHelper::pro_is_installed() ) {
159 147 $action_ops['message'] .= __( 'The HubSpot integration is not available on your plan. Did you know you can upgrade to unlock more awesome features?', 'formidable' ) . '<br/><br/>';
160 148 }
161 -
162 149 $link = FrmAppHelper::admin_upgrade_link( 'add-action', 'knowledgebase/hubspot-forms/' );
163 150 $action_ops['message'] .= '<a href="' . esc_url( $link ) . '" target="_blank" rel="noopener" class="button button-secondary frm-button-secondary">Get Free HubSpot Account</a>';
164 151 parent::__construct( 'hubspot', 'Hubspot', $action_ops );
165 152 }