Releases for sf 1.4
| Version |
License |
API |
Released |
|
0.0.2alpha
|
MIT license |
0.0.2alpha
|
20/04/2012 |
Releases for sf 1.3
| Version |
License |
API |
Released |
|
0.0.2alpha
|
MIT license |
0.0.2alpha
|
20/04/2012 |
Changelog for release 0.0.2 - 20/04/2012
Other releases
Release 0.0.2 - 20/04/2012
sfDoctrineCreateInPlacePlugin
Installation
Install plugin:
symfony plugin:install sfDoctrineCreateInPlacePlugin -s alpha
Usage
First, enable the sfDoctrineCreateInPlace module in the settings.yml:
all:
.settings:
...
enabled_modules: [ default, sfDoctrineCreateInPlace ]
Then, change your form:
$this->widgetSchema['author_id'] = new sfWidgetFormDoctrineChoiceCreateInPlace(array(
'height' => 300,
'model' => $this->getRelatedModelName('Author'),
'add_empty' => false
));