In which folder to place the classes that I extend in the Kohana 3.1 framework?

Those empty files you see are aliases created for the class. An example would be the Cookie class, declared as so: class Cookie extends Kohana_Cookie {} It's just another way for you to refer to the real class, in this case Kohana_Cookie without having to type all that out So when you use something like Cookie::salt($name, $value) you're really just using Kohana_Cookie::salt($name, $value) If you want to extend a class, you can drop the files into your application/classes folder and go from there.

Those empty files you see are aliases created for the class. An example would be the Cookie class, declared as so: class Cookie extends Kohana_Cookie {} It's just another way for you to refer to the real class, in this case Kohana_Cookie, without having to type all that out. So when you use something like Cookie::salt($name, $value) you're really just using Kohana_Cookie::salt($name, $value).

If you want to extend a class, you can drop the files into your application/classes folder and go from there.

– Paras Apr 10 at 7:22 Absolutely no problem if you choose to edit the alias classes. No changes would be required in bootstrap.It's probably cleaner if you extend the classes where you can keep on top of them. @par – random Apr 10 at 13:52.

Check out the docs at kohanaframework.org/3.1/guide especially: kohanaframework.org/3.1/guide/kohana/files you can extend classes in the folder: application/classes/.. or modules//classes/..

Thanks. I went through the documentation. Now I'm beginning to get a hang of it.

– Paras Apr 10 at 7:19.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions