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
<?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
$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 | |
/** | |
* 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
<?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') | |
); | |
?> |
NewerOlder