Do I need to extend Template_Helper_Core to override the helper functions, or can I just create the listener and do something like:
EDIT: resolved - yes I could do this
PHP:
class MyAddon_Functions
{
public static function helperSomething($params)
{
// do something
}
}
EDIT: resolved - yes I could do this