Bom Marcelo.. Hum.. agora entendi....
Eu resolvo assim.
<?php
/**
* Contato form.
*
* @package symbimetal
* @subpackage form
* @author Your name here
* @version SVN: $Id: sfPropelFormTemplate.php 10377 2008-07-21 07:10:32Z dwhittle $
*/
class NovoContatoForm extends BaseContatoForm
{
public function configure()
{
// Configurações [ Aqui inseri o valor dentro do campo ]
$this->setDefaults(array(
'email' => 'Digite seu email',
'nome' => 'Digite seu nome'
)); $this->widgetSchema->setLabels(array(
'faleconosco_id' => 'Fale Conosco'
));
// Validação do sistema
$this->setValidators(array(
'nome' => new sfValidatorString(array('required' => true)), // validando
'email' => new sfValidatorEmail(array('required' => true)), // validando
'mensagem' => new sfValidatorString(array('required' => true, 'min_length' => 4)), // validando
'id' => new sfValidatorString(array('required' => false)),
'telefone' => new sfValidatorString(array('required' => false)),
'faleconosco_id' => new sfValidatorString(array('required' => false)),
'cidade' => new sfValidatorString(array('required' => false)),
));
// Remove esse itens da exibição
unset($this['created_at']);
unset($this['status']);
unset($this['deleted']);
}
}