Created
December 12, 2012 10:17
-
-
Save nixilla/4266627 to your computer and use it in GitHub Desktop.
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 | |
| class EntryForm extends BaseEntryForm | |
| { | |
| public function configure() | |
| { | |
| $this->widgetSchema['cars'] = new sfWidgetFormChoice(array( | |
| 'choices' => array(), | |
| 'expanded' => true | |
| )); | |
| $this->validatorSchema['cars'] = new sfValidatorChoice(array( | |
| 'choices' => array() | |
| )); | |
| } | |
| } |
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 | |
| class UserForm extends Something | |
| { | |
| public function configure() | |
| { | |
| $this->embedForm('entry', new EntryForm()); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment