Extending DooPHP Framework2009-09-12 21:13:22
Extending DooPHP Framework
If you would like to extend the framework, you can write your own class that extends the framework classes.
For instance, you might want to extend the DooValidator. You can write your own validator class in protected/class
Doo::loadHelper('DooValidator');
classs MyValidator extends DooValidator{
//..??your extended code..
}
And then you can use your extended class in controller:
Doo::loadClass('MyValidator');
Read more tips & tricks at the forum
Published under: Tips & Tricks
About
Categories
Archives
- December 2009 (1)
- October 2009 (3)
- September 2009 (4)
- August 2009 (5)
- July 2009 (13)

good work 