A callback is one of PHP's pseudo-types. It will let you pass a
- function
- method of an instantiated object
- static method/class method
to a PHP function/method that's expecting a callback, and the PHP function/method will know what to do with it.
From the manual
A PHP function is passed by its name as a string. Any built-in or user-defined function can be used, except language constructs such as: array(), echo(), empty(), eval(), exit(), isset(), list(), print() or unset().
A method of an instantiated object is passed as an array containing an object at index 0 and the method name at index 1.
Static class methods can also be passed without instantiating an object of that class by passing the class name instead of an object at index 0.
So, to use a static method in place of a callback string, you'd use
array('className','methodName');
If Kohana is using standard PHP callbacks, this should give you what you want.