File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/sendpress/classes/class-sendpress-sendgrid-smtp-api.php
<?php
// Prevent loading this file directly
if ( !defined('SENDPRESS_VERSION') ) {
	header('HTTP/1.0 403 Forbidden');
	die;
}
# Version 1.0
# Last Updated 6/22/2009

class SendPress_SendGrid_SMTP_API
{
var $data;

function addTo($tos)
{
if (!isset($this->data['to']))
{
$this->data['to'] = array();
}
$this->data['to'] = array_merge($this->data['to'], (array)$tos);
}

function addSubVal($var, $val)
{
if (!isset($this->data['sub']))
{
$this->data['sub'] = array();
}

if (!isset($this->data['sub'][$var]))
{
$this->data['sub'][$var] = array();
}
$this->data['sub'][$var] = array_merge($this->data['sub'][$var], (array)$val);
}

function setUniqueArgs($val)
{
if (!is_array($val)) return;
// checking for associative array
$diff = array_diff_assoc($val, array_values($val));
if(((empty($diff)) ? false : true))
{
$this->data['unique_args'] = $val;
}
}

function setCategory($cat)
{
$this->data['category'] = $cat;
}

function addFilterSetting($filter, $setting, $value)
{
if (!isset($this->data['filters']))
{
$this->data['filters'] = array();
}

if (!isset($this->data['filters'][$filter]))
{
$this->data['filters'][$filter] = array();
}

if (!isset($this->data['filters'][$filter]['settings']))
{
$this->data['filters'][$filter]['settings'] = array();
}
$this->data['filters'][$filter]['settings'][$setting] = $value;
}

function asJSON()
{
$json = json_encode($this->data);
// Add spaces so that the field can be folded
$json = preg_replace('/(["\]}])([,:])(["\[{])/', '$1$2 $3', $json);
return $json;
}

function as_string()
{
$json = $this->asJSON();
$str = "X-SMTPAPI: " . wordwrap($json, 76, "\n ");
return $str;
}

}