|
Revision 75, 387 bytes
(checked in by nperriault, 3 months ago)
|
[1.1]:
- Companies and people modules migrated, with according form classes and templates, and functional test suite
- Enhanced SymfoniansTestBrowser?
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
class ApplicationDeveloperForm extends BaseApplicationDeveloperForm |
|---|
| 9 |
{ |
|---|
| 10 |
|
|---|
| 11 |
* Form configuration |
|---|
| 12 |
* |
|---|
| 13 |
*/ |
|---|
| 14 |
public function configure() |
|---|
| 15 |
{ |
|---|
| 16 |
unset($this['id']); |
|---|
| 17 |
|
|---|
| 18 |
$this->mergeForm(new BaseConnectionForm()); |
|---|
| 19 |
|
|---|
| 20 |
$this->widgetSchema->setNameFormat('connection[%s]'); |
|---|
| 21 |
} |
|---|
| 22 |
} |
|---|
| 23 |
|
|---|