Changeset 2115503
- Timestamp:
- 07/01/2019 01:39:14 PM (7 years ago)
- Location:
- add-on-contact-form-7-mailpoet
- Files:
-
- 4 edited
- 12 copied
-
tags/1.3.11 (copied) (copied from add-on-contact-form-7-mailpoet/trunk)
-
tags/1.3.11/add-on-contact-form-7-mailpoet.php (copied) (copied from add-on-contact-form-7-mailpoet/trunk/add-on-contact-form-7-mailpoet.php)
-
tags/1.3.11/changelog.txt (copied) (copied from add-on-contact-form-7-mailpoet/trunk/changelog.txt)
-
tags/1.3.11/includes/class-mailpoet-cf7-consent.php (copied) (copied from add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-consent.php)
-
tags/1.3.11/includes/class-mailpoet-cf7-custom-field.php (copied) (copied from add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-custom-field.php)
-
tags/1.3.11/includes/class-mailpoet-cf7-integration.php (copied) (copied from add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-integration.php)
-
tags/1.3.11/includes/class-mailpoet-cf7-submit-form.php (copied) (copied from add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-submit-form.php)
-
tags/1.3.11/includes/class-mailpoet-cf7-unsubscribe.php (copied) (copied from add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-unsubscribe.php)
-
tags/1.3.11/index.php (copied) (copied from add-on-contact-form-7-mailpoet/trunk/index.php)
-
tags/1.3.11/languages/add-on-contact-form-7-mailpoet.pot (copied) (copied from add-on-contact-form-7-mailpoet/trunk/languages/add-on-contact-form-7-mailpoet.pot)
-
tags/1.3.11/languages/how-to-translate.txt (copied) (copied from add-on-contact-form-7-mailpoet/trunk/languages/how-to-translate.txt)
-
tags/1.3.11/readme.txt (copied) (copied from add-on-contact-form-7-mailpoet/trunk/readme.txt)
-
trunk/add-on-contact-form-7-mailpoet.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/class-mailpoet-cf7-submit-form.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
add-on-contact-form-7-mailpoet/trunk/add-on-contact-form-7-mailpoet.php
r2103858 r2115503 3 3 * Plugin Name: Add-on Contact Form 7 - Mailpoet 3 4 4 * Description: Add a MailPoet 3 signup field to your Contact Form 7 forms. 5 * Version: 1.3.1 15 * Version: 1.3.12 6 6 * Author: Tikweb 7 7 * Author URI: http://www.tikweb.dk/ -
add-on-contact-form-7-mailpoet/trunk/changelog.txt
r2103858 r2115503 1 1 == Changelog == 2 3 = 1.3.12 – 2019-07-01 = 4 * Used MailPoet API to unsubscribe user 2 5 3 6 = 1.3.11 – 2019-06-10 = -
add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-submit-form.php
r2103858 r2115503 258 258 259 259 if ( $subscriber !== false ) { 260 261 $subscriber->status = 'unsubscribed'; 262 $subscriber->save(); 260 try { 261 $subscriber = \MailPoet\API\API::MP('v1')->unsubscribeFromList($subscriber, \MailPoet\API\API::MP('v1')->getLists()); 262 } catch(Exception $exception) { 263 // return $exception->getMessage(); 264 } 263 265 264 266 return true; -
add-on-contact-form-7-mailpoet/trunk/readme.txt
r2103858 r2115503 4 4 Donate link: http://www.tikweb.dk/donate/ 5 5 Requires at least: 4.6 6 Tested up to: 5.2. 16 Tested up to: 5.2.2 7 7 Requires PHP: 5.2 8 Stable tag: 1.3.1 18 Stable tag: 1.3.12 9 9 10 10 Add a MailPoet 3 signup field to your Contact Form 7 forms.
Note: See TracChangeset
for help on using the changeset viewer.