How to set default value or option in the Symfony embeded form inside the Action

Let’s say you have Symfony 1.4 form User with embedded form Entry class UserForm extends Something { public function configure() { $this->embedForm(’entry’, new EntryForm()); } }