I am following documentation http://docs.kohanaphp.com/general/helpers . But these steps are not working in kohana 3.1 . I can't find any documentation about helper in kohana 3.1 . how I can create my own helper class in kohana ?
|
There's no such thing as a helper in Kohana 3/3.1 You create a class and use it as you normally would in a PHP application. The only requirements are that classes go into the
would be placed into
Then it's a simple case of using the class as your normally would. |
|||||||||||
|
|
The accepted answer isn't really true! Helpers do exist in Kohana 3.1. http://kohanaframework.org/3.1/guide/kohana/helpers Helpers are different from libraries in that they use static methods, the class does not have to be initiated for them to be used. i.e. to call the URL helper class and run the base method you would simply do:
To extend the URL helper you would create a class in
And then again simply call it like so:
|
||||
|
|