|
Revision 56, 241 bytes
(checked in by nperriault, 7 months ago)
|
trunk still broken at this time, but work has progressed:
- updated sfGuardAuth local module to use 1.1 forms
- added FormTemplateListener? to listen for filter_parameters event, and handle passed sfForm object instances
- moved from cryptographp to recpatcha
- moved sfValidatorBlacklist to sfFormExtraPlugin
- lib/ folder layout
- removed jQueryHelper (unused)
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
class mainConfiguration extends sfApplicationConfiguration |
|---|
| 4 |
{ |
|---|
| 5 |
public function configure() |
|---|
| 6 |
{ |
|---|
| 7 |
require_once(dirname(__FILE__).'/../lib/FormTemplateListener.class.php'); |
|---|
| 8 |
FormTemplateListener::register($this->dispatcher); |
|---|
| 9 |
} |
|---|
| 10 |
} |
|---|
| 11 |
|
|---|