From: Katana <ka...@ka...> - 2004-03-25 20:59:48
|
> Can you give me a time when i can expect an update? I need the fixed option, > and I'm not that well into the formsess code. Just get the CVS build that's available as a tarball on the website. It works and has lots of bugfixes. > In the distributed examples you create a form and save the values, but normaly > you would do somthing with those values and want the fetch them from the > formsess object, but no example shows me how to do that. I would expect an > function getFormValues() which gives me an hash array. Indeed, there is no such API at the moment. I intend to add such a feature, but I want to think about it correctly before I start implementing. As far as I'm concerned, I just access the form data using _POST and _GET arrays. It works perfectly of course :) > What about the current CVS state? Is it stable/usable? See above. I never commit non working code to the FORMSESS_V2_0_0 branch (the one you can download a tarball of on the site) > Another function I'm missing is a $fs->validated(), whicht tells me if a form > is submitted and validated without an error. $fs->hasErrors() tells you if errors were registered during the validation process. Katana |