Changeset 1341206
- Timestamp:
- 02/02/2016 08:07:04 AM (10 years ago)
- Location:
- sendmachine
- Files:
-
- 8 edited
- 1 copied
-
tags/1.0.8 (copied) (copied from sendmachine/trunk)
-
tags/1.0.8/api/SendmachineApiClient.php (modified) (2 diffs)
-
tags/1.0.8/api/library/Lists.php (modified) (1 diff)
-
tags/1.0.8/readme.txt (modified) (2 diffs)
-
tags/1.0.8/sendmachine_wp.php (modified) (1 diff)
-
trunk/api/SendmachineApiClient.php (modified) (2 diffs)
-
trunk/api/library/Lists.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/sendmachine_wp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sendmachine/tags/1.0.8/api/SendmachineApiClient.php
r1332124 r1341206 1 1 <?php 2 2 defined('CURL_SSLVERSION_DEFAULT') || define('CURL_SSLVERSION_DEFAULT', 0); 3 4 class Sendmachine_Error extends Exception { 5 6 private $err_status; 7 8 public function __construct($error_reason = "", $error_status = "") { 9 10 parent::__construct($error_reason); 11 12 $this->err_status = $error_status; 13 } 14 15 public function getSendmachineStatus() { 16 return $this->err_status; 17 } 18 19 } 20 21 class Http_Error extends Sendmachine_Error {} 22 3 23 4 24 require_once __dir__ . '/library/Account.php'; … … 187 207 188 208 } 189 190 class Sendmachine_Error extends Exception {191 192 private $err_status;193 194 public function __construct($error_reason = "", $error_status = "") {195 196 parent::__construct($error_reason);197 198 $this->err_status = $error_status;199 }200 201 public function getSendmachineStatus() {202 return $this->err_status;203 }204 205 }206 207 class Http_Error extends Sendmachine_Error {} -
sendmachine/tags/1.0.8/api/library/Lists.php
r1287956 r1341206 273 273 274 274 } 275 276 class Sendmachine_Lists_Exception extends Sendmachine_Error{} -
sendmachine/tags/1.0.8/readme.txt
r1332124 r1341206 4 4 Requires at least: 3.2.1 5 5 Tested up to: 4.4 6 Stable tag: 1.0. 76 Stable tag: 1.0.8 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 96 96 == Changelog == 97 97 98 = 1.0.8 = 99 * Removed list exception 100 98 101 = 1.0.7 = 99 102 * fixed curl constant not defined bug -
sendmachine/tags/1.0.8/sendmachine_wp.php
r1332124 r1341206 5 5 Plugin URI: https://www.sendmachine.com 6 6 Description: The official Sendmachine plugin featuring subscribe forms, users sync, news feed, email sending and transactional campaigns. 7 Version: 1.0. 77 Version: 1.0.8 8 8 Author: Sendmachine team 9 9 Author URI: http://developers.sendmachine.com/ -
sendmachine/trunk/api/SendmachineApiClient.php
r1332124 r1341206 1 1 <?php 2 2 defined('CURL_SSLVERSION_DEFAULT') || define('CURL_SSLVERSION_DEFAULT', 0); 3 4 class Sendmachine_Error extends Exception { 5 6 private $err_status; 7 8 public function __construct($error_reason = "", $error_status = "") { 9 10 parent::__construct($error_reason); 11 12 $this->err_status = $error_status; 13 } 14 15 public function getSendmachineStatus() { 16 return $this->err_status; 17 } 18 19 } 20 21 class Http_Error extends Sendmachine_Error {} 22 3 23 4 24 require_once __dir__ . '/library/Account.php'; … … 187 207 188 208 } 189 190 class Sendmachine_Error extends Exception {191 192 private $err_status;193 194 public function __construct($error_reason = "", $error_status = "") {195 196 parent::__construct($error_reason);197 198 $this->err_status = $error_status;199 }200 201 public function getSendmachineStatus() {202 return $this->err_status;203 }204 205 }206 207 class Http_Error extends Sendmachine_Error {} -
sendmachine/trunk/api/library/Lists.php
r1287956 r1341206 273 273 274 274 } 275 276 class Sendmachine_Lists_Exception extends Sendmachine_Error{} -
sendmachine/trunk/readme.txt
r1332124 r1341206 4 4 Requires at least: 3.2.1 5 5 Tested up to: 4.4 6 Stable tag: 1.0. 76 Stable tag: 1.0.8 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 96 96 == Changelog == 97 97 98 = 1.0.8 = 99 * Removed list exception 100 98 101 = 1.0.7 = 99 102 * fixed curl constant not defined bug -
sendmachine/trunk/sendmachine_wp.php
r1332124 r1341206 5 5 Plugin URI: https://www.sendmachine.com 6 6 Description: The official Sendmachine plugin featuring subscribe forms, users sync, news feed, email sending and transactional campaigns. 7 Version: 1.0. 77 Version: 1.0.8 8 8 Author: Sendmachine team 9 9 Author URI: http://developers.sendmachine.com/
Note: See TracChangeset
for help on using the changeset viewer.