root/trunk/lib/form/ApplicationDeveloperForm.class.php

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  * ApplicationDeveloper form.
4  *
5  * @package    form
6  * @subpackage application_developer
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
Note: See TracBrowser for help on using the browser.