Symfony 1.4(FORMS)可以通过sfWidgetFormInputText设置value属性

时间:2012-04-10 18:21:48

标签: forms symfony1 input symfony-1.4

我想预定义TEXT-INPUT字段 - 属性VALUE。是否可以通过设置方法中的其他选项的sfWidgetFormInputText来做到这一点?

1 个答案:

答案 0 :(得分:2)

Read the doc

class ContactForm extends BaseForm
{
  public function configure()
  {
    // ...

    $this->setDefault('email', 'Your Email Here');

    $this->setDefaults(array('email' => 'Your Email Here', 'name' => 'Your Name Here'));
  }
}