This file contains hidden or 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 | |
// put this in your controller | |
protected function getErrorsFromForm(FormInterface $form) | |
{ | |
$errors = array(); | |
foreach ($form->getErrors() as $error) { | |
$errors[] = $error->getMessage(); | |
} |
This file contains hidden or 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
<aplicativoposxml xmlns="http://tempuri.org/posxml.xsd"> | |
<pagina nome="principal"> | |
<editaarquivo nomearquivo="config.dat" chave="iphost" valor="50.16.188.58" /> | |
<editaarquivo nomearquivo="config.dat" chave="portahost" valor="8087" /> | |
<editaarquivo nomearquivo="config.dat" chave="withssl" valor="0" /> | |
<variavelint valor="0" variavel="iMenu"/> | |
<menu opcoes="1 - Download Param\2 - Download apps\3 - Menu de servicos\" variavel="$(iMenu)"/> | |
<if variavel="$(iMenu)" operador="igual" valor="1"> | |
<chamafuncao nome="WalkServicesDownloadParamFile" /> |