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 ?
I am following documentation http://docs.kohanaphp.com/general/helpers . But these steps are not working in kohana
Share
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
classesdirectory and underscores in the class name are equal to directory separators. For examplewould be placed into
Then it’s a simple case of using the class as your normally would.