This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$items = array( | |
array('componentType' => 'Jsw.Pathbar.Item', 'title' => 'Page 1', 'href' => '/my/page/1'), | |
array('componentType' => 'Jsw.Pathbar.Item', 'title' => 'Page 2', 'href' => '/my/page/2') | |
array('componentType' => 'Jsw.Pathbar.Item', 'title' => 'Page 3', 'href' => '/my/page/3') | |
); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* PHP version 5 | |
* | |
* @package konstati | |
* @author Pedro Padron <[email protected]> | |
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$vt = new VirtualTarget('usuario', 'senha'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$po = new Po4a(array( | |
'masterTranslationFile' => "{$this->translationsDir}/%master.pot", | |
'translationFile' => "{$this->translationsDir}/%master-%lang.po", | |
'sourceLanguage' => 'pt', | |
'targetLanguages' => array('en', 'es', 'de'), | |
'force' => true, | |
'files' => array( | |
array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul id="faq"> | |
<li> | |
<a href="#intro">1. Introdução</a><br/> | |
<ol> | |
<li><a href="#auth">1.1 Autenticação</a></li> | |
<li><a href="#format">1.2 Formato de Dados</a></li> | |
<li> | |
<a href="#response-codes">Códigos de Resposta</a><br/> | |
<ul> | |
<li><a href="#response-codes-success">Sucesso</a></li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main> | |
<emkt trans="11.05"> | |
<nome>Minha Lista de Contatos</nome> | |
<substituir>S</substituir> | |
<destinatario> | |
<nome>John Doe</nome> | |
<email>[email protected]</email> | |
</destinatario> | |
</emkt> | |
</main> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version=”1.0″ encoding=”UTF-8″?> | |
<AKNA> | |
<FUNC TRANS=”" KEY=”0dc001e4ca76574defca18cfbbfd”> | |
<RETURN ID=”11″>XML em formato inválido Error: Variável do XML está sem conteúdo ou não foi informada.</RETURN> | |
</FUNC> | |
</AKNA> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main> | |
<emkt trans=”11.10″> | |
<nome>Lista de Contatos Importada via FTP</nome> | |
<arquivo>ftp://meuusuario:[email protected]/contatos.csv</arquivo> | |
<separador>;</separador> | |
<campos> | |
<nome col=”0″/> | |
<email col=”1″/> | |
<empresa col=”3″/> | |
</campos> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'Akna.php'; | |
$usuario = "[email protected]"; | |
$senha = "minhasenha"; | |
$akna = new Akna($usuario, $senha); | |
$contacts = $akna->emailMarketing->contacts; | |
$detalhes = array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"username": "minhaempresa", | |
"emailAddress": "[email protected]", | |
"apiKey": "0e4fe7b1c0", | |
"rateLimit": { | |
"max": 10000, | |
"reset": 1313389829, | |
"current": 11 | |
} | |
} |
OlderNewer