| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/painel/mkt/MailWizzApi/Endpoint/ |
Upload File : |
<?php
/**
* This file contains the lists endpoint for MailWizzApi PHP-SDK.
*
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @link http://www.mailwizz.com/
* @copyright 2013-2017 http://www.mailwizz.com/
*/
/**
* MailWizzApi_Endpoint_Lists handles all the API calls for lists.
*
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @package MailWizzApi
* @subpackage Endpoint
* @since 1.0
*/
class MailWizzApi_Endpoint_Lists extends MailWizzApi_Base
{
/**
* Get all the mail list of the current customer
*
* Note, the results returned by this endpoint can be cached.
*
* @param integer $page
* @param integer $perPage
* @return MailWizzApi_Http_Response
*/
public function getLists($page = 1, $perPage = 10)
{
$client = new MailWizzApi_Http_Client(array(
'method' => MailWizzApi_Http_Client::METHOD_GET,
'url' => $this->config->getApiUrl('lists'),
'paramsGet' => array(
'page' => (int)$page,
'per_page' => (int)$perPage
),
'enableCache' => true,
));
return $response = $client->request();
}
/**
* Get one list
*
* Note, the results returned by this endpoint can be cached.
*
* @param string $listUid
* @return MailWizzApi_Http_Response
*/
public function getList($listUid)
{
$client = new MailWizzApi_Http_Client(array(
'method' => MailWizzApi_Http_Client::METHOD_GET,
'url' => $this->config->getApiUrl(sprintf('lists/%s', (string)$listUid)),
'paramsGet' => array(),
'enableCache' => true,
));
return $response = $client->request();
}
/**
* Create a new mail list for the customer
*
* The $data param must contain following indexed arrays:
* -> general
* -> defaults
* -> notifications
* -> company
*
* @param array $data
* @return MailWizzApi_Http_Response
*/
public function create(array $data)
{
$client = new MailWizzApi_Http_Client(array(
'method' => MailWizzApi_Http_Client::METHOD_POST,
'url' => $this->config->getApiUrl('lists'),
'paramsPost' => $data,
));
return $response = $client->request();
}
/**
* Update existing mail list for the customer
*
* The $data param must contain following indexed arrays:
* -> general
* -> defaults
* -> notifications
* -> company
*
* @param string $listUid
* @param array $data
* @return MailWizzApi_Http_Response
*/
public function update($listUid, array $data)
{
$client = new MailWizzApi_Http_Client(array(
'method' => MailWizzApi_Http_Client::METHOD_PUT,
'url' => $this->config->getApiUrl(sprintf('lists/%s', $listUid)),
'paramsPut' => $data,
));
return $response = $client->request();
}
/**
* Copy existing mail list for the customer
*
* @param string $listUid
* @return MailWizzApi_Http_Response
*/
public function copy($listUid)
{
$client = new MailWizzApi_Http_Client(array(
'method' => MailWizzApi_Http_Client::METHOD_POST,
'url' => $this->config->getApiUrl(sprintf('lists/%s/copy', $listUid)),
));
return $response = $client->request();
}
/**
* Delete existing mail list for the customer
*
* @param string $listUid
* @return MailWizzApi_Http_Response
*/
public function delete($listUid)
{
$client = new MailWizzApi_Http_Client(array(
'method' => MailWizzApi_Http_Client::METHOD_DELETE,
'url' => $this->config->getApiUrl(sprintf('lists/%s', $listUid)),
));
return $response = $client->request();
}
}