0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_topfriends.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: wikiplugin_topfriends.php 33567 2011-03-21 19:01:07Z lphuberdeau $ function wikiplugin_topfriends_info() { return array( 'name' => tra('Top Friends'), 'documentation' => 'PluginTopFriends', 'description' => tra('List top-scoring users.'), 'prefs' => array( 'feature_friends', 'wikiplugin_topfriends' ), 'icon' => 'pics/icons/star.png', 'params' => array( 'limit' => array( 'required' => false, 'name' => tra('Limit'), 'description' => tra('Maximum result count.'), 'filter' => 'digits', 'default' => 5, ), 'public' => array( 'required' => false, 'name' => tra('Public'), 'description' => tra('Set whether public or not.'), 'default' => '', 'options' => array( array('text' => '', 'value' => ''), array('text' => tra('Yes'), 'value' => 'y'), array('text' => tra('No'), 'value' => 'n') ) ), ), ); } function wikiplugin_topfriends($data, $params) { global $smarty, $prefs, $tiki_p_list_users, $tikilib; /* Check we can be called */ if($prefs['feature_friends'] != 'y') { return ' '; } extract ($params, EXTR_SKIP); if(!(isset($limit) && $limit <> '')) { $limit = 5; } if((isset($public) && $public != 'y') && ($tiki_p_list_users != 'y')) { // Access denied return ' '; } $listusers = $tikilib->list_users(0 , $limit, 'score_desc', '', false); $smarty->assign_by_ref('listusers', $listusers["data"]); return $smarty->fetch('plugins/plugin-topfriends.tpl'); }