tra('Top-Rated Topics'), 'description' => tra('Displays the specified number of the forum topics with the best ratings.'), 'prefs' => ['feature_forums'], 'params' => [], 'common_params' => ['nonums', 'rows'] ]; } /** * @param $mod_reference * @param $module_params */ function module_forums_best_voted_topics($mod_reference, $module_params) { $smarty = TikiLib::lib('smarty'); global $ranklib; include_once('lib/rankings/ranklib.php'); $ranking = $ranklib->forums_ranking_top_topics($mod_reference["rows"]); $smarty->assign('modForumsTopTopics', $ranking["data"]); }