tpl->addValue('postCountIncrement', array('tpl_postCount', 'postCountIncrement')); $core->tpl->addValue('postCountGet', array('tpl_postCount', 'postCountGet')); /** * postCount template helper */ class tpl_postCount { /** * template helper to increment post counter */ public static function postCountIncrement($attr) { return ''; } /** * template helper to get post counter */ public static function postCountGet($attr) { return ''; } }