<?php
|
|
|
|
// (c) Copyright 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$
|
|
|
|
//this script may only be included - so its better to die if called directly.
|
|
if (strpos($_SERVER['SCRIPT_NAME'], basename(__FILE__)) !== false) {
|
|
header('location: index.php');
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
function module_users_own_rank_info()
|
|
{
|
|
return [
|
|
'name' => tra('My Score'),
|
|
'description' => tra('Display the logged user\'s rank and score.'),
|
|
'prefs' => [ 'feature_score' ],
|
|
'params' => []
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param $mod_reference
|
|
* @param $module_params
|
|
*/
|
|
function module_users_own_rank($mod_reference, $module_params)
|
|
{
|
|
global $user;
|
|
$scorelib = TikiLib::lib('score');
|
|
$smarty = TikiLib::lib('smarty');
|
|
|
|
$position = $scorelib->user_position($user);
|
|
$smarty->assign('position', $position);
|
|
$score = $scorelib->get_user_score($user);
|
|
$smarty->assign('score', $score);
|
|
$count = $scorelib->count_users(0);
|
|
$smarty->assign('count', $count);
|
|
$smarty->assign('user', $user);
|
|
}
|