Plugin Directory

Changeset 1341206


Ignore:
Timestamp:
02/02/2016 08:07:04 AM (10 years ago)
Author:
sendmachine
Message:

removed list exception

Location:
sendmachine
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • sendmachine/tags/1.0.8/api/SendmachineApiClient.php

    r1332124 r1341206  
    11<?php
    22defined('CURL_SSLVERSION_DEFAULT') || define('CURL_SSLVERSION_DEFAULT', 0);
     3
     4class 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
     21class Http_Error extends Sendmachine_Error {}
     22
    323
    424require_once __dir__ . '/library/Account.php';
     
    187207
    188208}
    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  
    273273
    274274}
    275 
    276 class Sendmachine_Lists_Exception extends Sendmachine_Error{}
  • sendmachine/tags/1.0.8/readme.txt

    r1332124 r1341206  
    44Requires at least: 3.2.1
    55Tested up to: 4.4
    6 Stable tag: 1.0.7
     6Stable tag: 1.0.8
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9696== Changelog ==
    9797
     98= 1.0.8 =
     99* Removed list exception
     100
    98101= 1.0.7 =
    99102* fixed curl constant not defined bug
  • sendmachine/tags/1.0.8/sendmachine_wp.php

    r1332124 r1341206  
    55  Plugin URI: https://www.sendmachine.com
    66  Description: The official Sendmachine plugin featuring subscribe forms, users sync, news feed, email sending and transactional campaigns.
    7   Version: 1.0.7
     7  Version: 1.0.8
    88  Author: Sendmachine team
    99  Author URI: http://developers.sendmachine.com/
  • sendmachine/trunk/api/SendmachineApiClient.php

    r1332124 r1341206  
    11<?php
    22defined('CURL_SSLVERSION_DEFAULT') || define('CURL_SSLVERSION_DEFAULT', 0);
     3
     4class 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
     21class Http_Error extends Sendmachine_Error {}
     22
    323
    424require_once __dir__ . '/library/Account.php';
     
    187207
    188208}
    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  
    273273
    274274}
    275 
    276 class Sendmachine_Lists_Exception extends Sendmachine_Error{}
  • sendmachine/trunk/readme.txt

    r1332124 r1341206  
    44Requires at least: 3.2.1
    55Tested up to: 4.4
    6 Stable tag: 1.0.7
     6Stable tag: 1.0.8
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9696== Changelog ==
    9797
     98= 1.0.8 =
     99* Removed list exception
     100
    98101= 1.0.7 =
    99102* fixed curl constant not defined bug
  • sendmachine/trunk/sendmachine_wp.php

    r1332124 r1341206  
    55  Plugin URI: https://www.sendmachine.com
    66  Description: The official Sendmachine plugin featuring subscribe forms, users sync, news feed, email sending and transactional campaigns.
    7   Version: 1.0.7
     7  Version: 1.0.8
    88  Author: Sendmachine team
    99  Author URI: http://developers.sendmachine.com/
Note: See TracChangeset for help on using the changeset viewer.