0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-cms_rankings.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // 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. // $Id: tiki-cms_rankings.php 33195 2011-03-02 17:43:40Z changi67 $ $section = 'cms'; require_once ('tiki-setup.php'); include_once ('lib/rankings/ranklib.php'); $smarty->assign('headtitle',tra('Rankings')); $access->check_feature(array('feature_articles', 'feature_cms_rankings')); $access->check_permission('tiki_p_read_article'); $allrankings = array( array( 'name' => tra('Top Articles'), 'value' => 'cms_ranking_top_articles' ), array( 'name' => tra('Top authors'), 'value' => 'cms_ranking_top_authors' ) ); $smarty->assign('allrankings', $allrankings); if (!isset($_REQUEST["which"])) { $which = 'cms_ranking_top_articles'; } 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-cms_rankings.php'); include_once ('tiki-section_options.php'); ask_ticket('cms_rankings'); // Display the template $smarty->assign('mid', 'tiki-ranking.tpl'); $smarty->display("tiki.tpl");