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