# socketlabs/trunk/includes/class-socketlabs-api-status.php

SocketLabs, version trunk. 30 lines.

- Page: https://pluginprobe.com/plugins/socketlabs/trunk/code/includes/class-socketlabs-api-status.php
- Raw: https://pluginprobe.com/plugins/socketlabs/trunk/raw/includes/class-socketlabs-api-status.php
- Modified: 2019-06-11T15:50:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/socketlabs/trunk/code/includes/class-socketlabs-api-status.php#L10-L20`.

```php
<?php

/**
 * All of the possible api status possibilities
 *
 * @link       http://socketlabs.com
 * @since      1.0.0
 *
 * @package    Socketlabs
 * @subpackage Socketlabs/includes
 */

/**
 * Maintain the status of the SocketLabs injection api.
 *
 * @package    Socketlabs
 * @subpackage Socketlabs/includes
 * @author     SocketLabs Dev Team <support@socketlabs.com>
 */

class Socketlabs_Api_Status {
    
    public static $SUCCESS = "Success";
    public static $NETWORK_ERROR = "Your firewall or network settings may be blocking SocketLabs from connecting to its API...";
    public static $NO_CREDENTIALS = "Mailings will not be handled by this plugin until the server id and api key have both been configured.";
    public static $BAD_CREDENTIALS = "The supplied server id or api key is not correct.";
    public static $UNKNOWN = "There was an unknown error.";
    
}

```
