0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
[
Home
]
File: tiki-forum_rankings.php
<?php // $Id: /cvsroot/tikiwiki/tiki/tiki-forum_rankings.php,v 1.15.2.2 2007-12-15 17:59:40 nkoth Exp $ // Copyright (c) 2002-2007, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // Initialization $section = 'forums'; require_once ('tiki-setup.php'); include_once ('lib/rankings/ranklib.php'); $smarty->assign('headtitle',tra('Rankings')); if ($prefs['feature_forums'] != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_forums"); $smarty->display("error.tpl"); die; } if ($prefs['feature_forum_rankings'] != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_forum_rankings"); $smarty->display("error.tpl"); die; } if ($tiki_p_forum_read != 'y') { $smarty->assign('errortype', 401); $smarty->assign('msg', tra("Permission denied you cannot view this section")); $smarty->display("error.tpl"); die; } $allrankings = array( array( 'name' => tra('Last forum topics'), 'value' => 'forums_ranking_last_topics' ), array( 'name' => tra('Last replied forum topics'), 'value' => 'forums_ranking_last_replied_topics' ), array( 'name' => tra('Most read topics'), 'value' => 'forums_ranking_most_read_topics' ), array( 'name' => tra('Top topics'), 'value' => 'forums_ranking_top_topics' ), array( 'name' => tra('Forum posts'), 'value' => 'forums_ranking_most_commented_forum' ), array( 'name' => tra('Most visited forums'), 'value' => 'forums_ranking_most_visited_forums' ) ); $smarty->assign('allrankings', $allrankings); if (!isset($_REQUEST["which"])) { $which = 'forums_ranking_last_topics'; } else { $which = $_REQUEST["which"]; } $smarty->assign('which', $which); // Get the page from the request var or default it to HomePage if (!isset($_REQUEST["limit"])) { $limit = 10; } else { $limit = $_REQUEST["limit"]; } $smarty->assign_by_ref('limit', $limit); // Rankings: // Top Pages // Last pages // Top Authors $rankings = array(); $rk = $ranklib->$which($limit); $rank["data"] = $rk["data"]; $rank["title"] = $rk["title"]; $rank["y"] = $rk["y"]; $rank["type"] = $rk["type"]; $rankings[] = $rank; $smarty->assign_by_ref('rankings', $rankings); $smarty->assign('rpage', 'tiki-forum_rankings.php'); include_once ('tiki-section_options.php'); ask_ticket('forum-rankings'); // Display the template $smarty->assign('mid', 'tiki-ranking.tpl'); $smarty->display("tiki.tpl"); ?>