tra('Most Commented Forums'), 'description' => tra('Display the specified number of the forums with the most comments.'), 'prefs' => ['feature_forums'], 'params' => [], 'common_params' => ['nonums', 'rows'] ]; } /** * @param $mod_reference * @param $module_params */ function module_forums_most_commented_forums($mod_reference, $module_params) { $smarty = TikiLib::lib('smarty'); global $ranklib; include_once('lib/rankings/ranklib.php'); $ranking = $ranklib->forums_ranking_most_commented_forum($mod_reference["rows"]); $smarty->assign('modForumsMostCommentedForums', $ranking["data"]); }