芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentformpro/src/Integrations/ConstantContact/Bootstrap.php
logo = fluentFormMix('img/integrations/constantcontact.png'); $this->description = 'Connect Constant Contact with Fluent Forms and create subscriptions forms right into WordPress and grow your list.'; $this->registerAdminHooks(); add_filter('fluentform/save_integration_value_' . $this->integrationKey, [$this, 'validate'], 10, 3); //add_filter('fluentform/notifying_async_constatantcontact', '__return_false'); } public function validate($settings, $integrationId, $formId) { if (empty($settings['email_address'])) { wp_send_json_error([ 'message' => __('Email is Required', 'fluentformpro'), 'errors' =>[] ], 422); } return $settings; } public function getGlobalFields($fields) { return [ 'logo' => $this->logo, 'menu_title' => __('Constant Contact API Settings', 'fluentformpro'), 'menu_description' => __('Constant Contact is an integrated email marketing, marketing automation, and small business CRM. Save time while growing your business with sales automation. Use Fluent Forms to collect customer information and automatically add it to your Constant Contact list. If you don\'t have an Constant Contact account, you can
sign up for one here.
', 'fluentformpro'), 'valid_message' => __('Your Constant Contact configuration is valid', 'fluentformpro'), 'invalid_message' => __('Your Constant Contact configuration is invalid', 'fluentformpro'), 'save_button_text' => __('Verify Constant Contact ', 'fluentformpro'), 'config_instruction' => $this->getConfigInstractions(), 'fields' => [ 'accessToken' => [ 'type' => 'text', 'placeholder' => 'access token Key', 'label_tips' => __("Enter your Constant Contact access token Key, if you do not have
Please click here to get yours", 'fluentformpro'), 'label' => __('Constant Contact access Key', 'fluentformpro'), ], ], 'hide_on_valid' => true, 'discard_settings' => [ 'section_description' => __('Your Constant Contact API integration is up and running', 'fluentformpro'), 'button_text' => __('Disconnect Constant Contact', 'fluentformpro'), 'data' => [ 'accessToken' => '' ], 'show_verify' => true ] ]; } public function getGlobalSettings($settings) { $globalSettings = get_option($this->optionKey); if (!$globalSettings) { $globalSettings = []; } $defaults = [ 'accessToken' => '', 'status' => '' ]; return wp_parse_args($globalSettings, $defaults); } /* * Saving The Global Settings * */ public function saveGlobalSettings($settings) { if (!$settings['accessToken']) { $integrationSettings = [ 'accessToken' => '', 'status' => false ]; // Update the details with access token update_option($this->optionKey, $integrationSettings, 'no'); wp_send_json_success([ 'message' => __('Your settings has been updated', 'fluentformpro'), 'status' => false, 'require_load' => true ], 200); } try { $settings['status'] = false; update_option($this->optionKey, $settings, 'no'); $api = new API($settings['accessToken']); $auth = $api->auth_test(); if (!ArrayHelper::get($auth, '0.error_key')) { $settings['status'] = true; update_option($this->optionKey, $settings, 'no'); wp_send_json_success([ 'status' => true, 'message' => __('Your settings has been updated!', 'fluentformpro') ], 200); } throw new \Exception('Invalid Credentials', 400); } catch (\Exception $e) { wp_send_json_error([ 'status' => false, 'message' => $e->getMessage() ], $e->getCode()); } } public function pushIntegration($integrations, $formId) { $integrations[$this->integrationKey] = [ 'title' => $this->title . ' Integration', 'logo' => $this->logo, 'is_active' => $this->isConfigured(), 'configure_title' => __('Configuration required!', 'fluentformpro'), 'global_configure_url' => admin_url('admin.php?page=fluent_forms_settings#general-constatantcontact-settings'), 'configure_message' => __('Constant Contact is not configured yet! Please configure your Constant Contact api first', 'fluentformpro'), 'configure_button_text' => __('Set Constant Contact API', 'fluentformpro') ]; return $integrations; } public function getIntegrationDefaults($settings, $formId) { return [ 'name' => '', 'list_id' => '', 'email_address' => '', 'first_name' => '', 'last_name' => '', 'job_title' => '', 'company_name' => '', 'home_phone' => '', 'work_phone' => '', 'address_line_1' => '', 'address_line_2' => '', 'city_name' => '', 'state_name' => '', 'zip_code' => '', 'country_name' => '', 'custom_fields' => (object)[], 'conditionals' => [ 'conditions' => [], 'status' => false, 'type' => 'all' ], 'update_if_exist' => false, 'enabled' => true ]; } public function getSettingsFields($settings, $formId) { return [ 'fields' => [ [ 'key' => 'name', 'label' => __('Name', 'fluentformpro'), 'required' => true, 'placeholder' => __('Your Feed Title', 'fluentformpro'), 'component' => 'text' ], [ 'key' => 'list_id', 'label' => __('Constant Contact List', 'fluentformpro'), 'placeholder' => __('Select Constant Contact Mailing List', 'fluentformpro'), 'tips' => __('Select the Constant Contact Mailing List you would like to add your contacts to.', 'fluentformpro'), 'component' => 'list_ajax_options', 'options' => $this->getLists(), ], [ 'key' => 'custom_fields', 'require_list' => true, 'label' => __('Map Fields', 'fluentformpro'), 'tips' => __('Select which Fluent Forms fields pair with their
respective Constant Contact fields.', 'fluentformpro'), 'component' => 'map_fields', 'field_label_remote' => __('Constant Contact Field', 'fluentformpro'), 'field_label_local' => __('Form Field', 'fluentformpro'), 'primary_fileds' => [ [ 'key' => 'email_address', 'label' => __('Email Address', 'fluentformpro'), 'required' => true, 'input_options' => 'emails' ], [ 'key' => 'first_name', 'label' => __('First Name', 'fluentformpro'), ], [ 'key' => 'last_name', 'label' => __('Last Name', 'fluentformpro'), ], [ 'key' => 'job_title', 'label' => __('Job Title', 'fluentformpro') ], [ 'key' => 'company_name', 'label' => __('Company name', 'fluentformpro') ], [ 'key' => 'home_phone', 'label' => __('Home Phone Number', 'fluentformpro') ], [ 'key' => 'work_phone', 'label' => __('Work Phone Number', 'fluentformpro') ], [ 'key' => 'address_line_1', 'label' => __('Address Line 1', 'fluentformpro') ], [ 'key' => 'address_line_2', 'label' => __('Address Line 2', 'fluentformpro') ], [ 'key' => 'city_name', 'label' => __('City', 'fluentformpro') ], [ 'key' => 'state_name', 'label' => __('State', 'fluentformpro') ], [ 'key' => 'zip_code', 'label' => __('ZIP Code', 'fluentformpro') ] ] ], [ 'require_list' => true, 'key' => 'conditionals', 'label' => __('Conditional Logics', 'fluentformpro'), 'tips' => __('Allow Constant Contact integration conditionally based on your submission values', 'fluentformpro'), 'component' => 'conditional_block' ], [ 'require_list' => true, 'key' => 'enabled', 'label' => __('Status', 'fluentformpro'), 'component' => 'checkbox-single', 'checkbox_label' => __('Enable This feed', 'fluentformpro') ] ], 'button_require_list' => true, 'integration_title' => $this->title ]; } protected function getLists() { $api = $this->getRemoteApi(); $lists = $api->get_lists(); $formateddLists = []; if(is_wp_error($lists)) { return $formateddLists; } foreach ($lists as $list) { $formateddLists[$list['id']] = $list['name']; } return $formateddLists; } protected function getConfigInstractions() { ob_start(); ?>
Constant contact V3 is beta, so we just downgrade to V2 as per user request, see this instruction bellow to reauthenticate with V2
Click here to
Get Access Token
.
Then If you already have an account click "I already have an account"
Copy your Constant Contact access token and paste bellow field
getRemoteApi(); return $api->makeAuthorizationUrl(); } public function notify($feed, $formData, $entry, $form) { $feedData = $feed['processedValues']; if (!is_email($feedData['email_address'])) { $feedData['email_address'] = ArrayHelper::get($formData, $feedData['email_address']); } if (!is_email($feedData['email_address']) || !$feedData['list_id']) { do_action('fluentform/integration_action_result', $feed, 'failed', __('Constant Contact API call has been skipped because no valid email available', 'fluentformpro')); return false; } /* Prepare audience member import array. */ $subscriber_details = array( 'custom_fields' => array(), ); $mapFields = ArrayHelper::only($feedData, [ 'email_address', 'list_id', 'first_name', 'last_name', 'job_title', 'company_name', 'home_phone', 'work_phone', 'address_line_1', 'address_line_2', 'city_name', 'state_name', 'zip_code' ]); foreach ($mapFields as $field_name => $field_value) { if(!$field_value) { continue; } $emailTypes = [ 'email_address' => 'email_address' ]; if(in_array($field_name, array_keys($emailTypes))) { $field_value = trim( $field_value ); if ( ! isset( $subscriber_details['email_address'] ) ) { $subscriber_details['email_addresses'] = array(); } $subscriber_details['email_addresses'][0][ $emailTypes[$field_name] ] = $field_value; continue; } $addressTypes = [ 'address_line_1' => 'line1', 'address_line_2' => 'line2', 'city_name' => 'city', 'state_name' => 'state', 'zip_code' => 'postal_code', ]; if(in_array($field_name, array_keys($addressTypes))) { $field_value = trim( $field_value ); if ( ! isset( $subscriber_details['addresses'] ) ) { $subscriber_details['addresses'] = array(); } $subscriber_details['addresses'][0][ $addressTypes[$field_name] ] = $field_value; continue; } $listTypes = [ 'list_id' => 'id' ]; if(in_array($field_name, array_keys($listTypes))) { $field_value = trim( $field_value ); if ( ! isset( $subscriber_details['lists'] ) ) { $subscriber_details['lists'] = array(); } $subscriber_details['lists'][0][ $listTypes[$field_name] ] = $field_value; continue; } if ( ! isset( $subscriber_details[ $field_name ] ) ) { $subscriber_details[ $field_name ] = $field_value; } } if($subscriber_details['addresses']){ $subscriber_details['addresses'][0]['address_type'] = 'BUSINESS'; } if( !empty($feedData['work_number'])){ $subscriber_details['work_phone'] = $feedData['work_number']; } if( !empty($feedData['home_number'])){ $subscriber_details['home_phone'] = $feedData['home_number']; } if($customFiels = ArrayHelper::get($feedData, 'custom_fields')) { foreach ($customFiels as $fieldKey => $fieldValue) { if(!$fieldValue) { continue; } $subscriber_details['custom_fields'][] = array( 'custom_field_id' => $fieldKey, 'value' => $field_value, ); } } $subscriber_details = apply_filters_deprecated( 'fluentform_integration_data_' . $this->integrationKey, [ $subscriber_details, $feed, $entry ], FLUENTFORM_FRAMEWORK_UPGRADE, 'fluentform/integration_data_' . $this->integrationKey, 'Use fluentform/integration_data_' . $this->integrationKey . ' instead of fluentform_integration_data_' . $this->integrationKey ); $subscriber_details = apply_filters('fluentform/integration_data_' . $this->integrationKey, $subscriber_details, $feed, $entry); $api = $this->getRemoteApi(); $subscription_results = $api->subscribeToList($subscriber_details); if ( !is_wp_error( $subscription_results ) && isset($subscription_results['id']) ) { do_action('fluentform/integration_action_result', $feed, 'success', __('Constant Contact has been successfully initialed and pushed data', 'fluentformpro')); } else { do_action('fluentform/integration_action_result', $feed, 'failed', ArrayHelper::get($subscription_results[0], 'error_message')); } } public function getMergeFields($list, $listId, $formId) { return []; } protected function getRemoteApi() { $Settings = get_option($this->optionKey); return new API($Settings['accessToken']); } }