/**
 * Class constructor
 *
 * @param   array  $options  Associative array of options
 *
 * @since  1.7.0
 */
public function __construct($options = array())
{
    parent::__construct($options);
    // Set mime type
    if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/json') === false && strpos($_SERVER['HTTP_ACCEPT'], 'text/html') !== false) {
        // Internet Explorer < 10
        $this->_mime = 'text/plain';
    } else {
        $this->_mime = 'application/json';
    }
    // Set document type
    $this->_type = 'json';
}