0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
standard
/
htdocs
/
[
Home
]
File: tiki-wiki_rankings.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-wiki_rankings.php,v 1.10.2.2 2005/01/08 15:01:03 sylvieg Exp $ // Copyright (c) 2002-2005, 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 require_once ('tiki-setup.php'); include_once ('lib/rankings/ranklib.php'); if ($feature_wiki != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_wiki"); $smarty->display("error.tpl"); die; } if ($feature_wiki_rankings != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_wiki_rankings"); $smarty->display("error.tpl"); die; } if ($tiki_p_view != 'y') { $smarty->assign('msg', tra("Permission denied you cannot view this section")); $smarty->display("error.tpl"); die; } // Get the page from the request var or default it to HomePage if (!isset($_REQUEST["limit"])) { $limit = 10; } else { $limit = $_REQUEST["limit"]; } $allrankings = array( array( 'name' => tra('Top pages'), 'value' => 'wiki_ranking_top_pages' ), array( 'name' => tra('Last pages'), 'value' => 'wiki_ranking_last_pages' ), array( 'name' => tra('Most relevant pages'), 'value' => 'wiki_ranking_top_pagerank' ), array( 'name' => tra('Top authors'), 'value' => 'wiki_ranking_top_authors' ) ); $smarty->assign('allrankings', $allrankings); if (!isset($_REQUEST["which"])) { $which = 'wiki_ranking_top_pages'; } else { $which = $_REQUEST["which"]; } $smarty->assign('which', $which); $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-wiki_rankings.php'); // Display the template $smarty->assign('mid', 'tiki-ranking.tpl'); $smarty->display("tiki.tpl"); ?>