Tuesday 10 March 2009 7:53:55 am
It seems that you also need to add :
[InfoSettings]
TypeList[feedback_form]=feedback_form
If you don't... the information collector module doesn't consider feedback_form class as a information collector and will ignore directives like RedirectURLList[feedback_form], DisplayList[feedback_form], and so on... Actually, it seems that it can be usefull if you change the name of the class but doesn't want to change all directives, for instance you can have :
[DisplaySettings]
DisplayList[feedback]=redirect
RedirectURLList[feedback]=/thanks
[CollectionSettings]
CollectAnonymousDataList[feedback]=enabled
CollectionUserDataList[feedback]=unique
[EmailSettings]
SendEmailList[feedback]=enabled
[InfoSettings]
TypeList[feedback_form]=feedback
If you want to change feedback_form to feedback_message, you just have change the last line :
...
TypeList[feedback_message]=feedback
...
|