├── .gitignore ├── 3rd-parties ├── listrak │ └── functions.listrak.php ├── mailchimp │ └── functions.mailchimp.php ├── multitouch │ └── functions.multitouch.php ├── salesforce │ └── salesforce setup cf7 - screenshot.png └── service_test.php ├── README.md ├── forms-3rdparty-integration.php ├── i_plugin.png ├── includes.php ├── plugin-ui.php ├── plugin.admin.css ├── plugin.admin.js ├── plugins ├── contactform7.php ├── fplugin_base.php ├── gravityforms.php └── ninjaforms.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── sprites.png └── upgrade.php /.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | wp-config.php 3 | wp-content/uploads/ 4 | wp-content/blogs.dir/ 5 | wp-content/upgrade/ 6 | wp-content/backup-db/ 7 | wp-content/advanced-cache.php 8 | wp-content/wp-cache-config.php 9 | sitemap.xml 10 | *.log 11 | wp-content/cache/ 12 | wp-content/backups/ 13 | sitemap.xml 14 | sitemap.xml.gz 15 | .svn 16 | .svn* -------------------------------------------------------------------------------- /3rd-parties/listrak/functions.listrak.php: -------------------------------------------------------------------------------- 1 | scanned_form_tags as $i => $tag){ 64 | if( 'interested' === $tag['name'] ){ 65 | foreach($tag['raw_values'] as $option){ 66 | //if we haven't already seen the option, then it was unchecked 67 | if( ! in_array($option, $selected_options) ){ 68 | $list[$field.$option] = 'off'; 69 | } 70 | }// loop raw_values 71 | } 72 | }// loop scanned_form_tags 73 | 74 | $values = array_merge($values, $list); 75 | endif; //isset checkbox.main profile 76 | 77 | return $values; 78 | }//-- function listrak_subscribe_filter 79 | 80 | 81 | }//--- class Cf73rdParty_ListrakCallbacks 82 | 83 | //start 'em up 84 | $cf73rdpartycallback_instance = new Cf73rdParty_ListrakCallbacks(); 85 | endif; //class-exists 86 | 87 | #endregion ------------------------------- CUSTOM FUNCTION CALLS --------------------------------- 88 | 89 | 90 | ?> -------------------------------------------------------------------------------- /3rd-parties/mailchimp/functions.mailchimp.php: -------------------------------------------------------------------------------- 1 | getMessage()); 39 | } 40 | 41 | #wp_mail( 'debug_address@email.com', 'Callback Hit', 'callback:'.__FUNCTION__."\n\ndata:\n".print_r($response,true)."\n\nresults:\n".print_r($results, true) ); 42 | }//-- function mailchimp_newsletter_action 43 | 44 | 45 | }//--- class Forms3rdpartyIntegration_MailchimpCallbacks 46 | 47 | //start 'em up 48 | $Forms3rdpartyIntegrationcallback_instance = new Forms3rdpartyIntegration_MailchimpCallbacks(); 49 | endif; //class-exists 50 | 51 | #endregion ------------------------------- CUSTOM FUNCTION CALLS --------------------------------- 52 | -------------------------------------------------------------------------------- /3rd-parties/multitouch/functions.multitouch.php: -------------------------------------------------------------------------------- 1 | Errors:
72 | |
---|
83 | |
' . __('Settings saved.') . '