02-09-2012, 06:12 PM
Hello, after making this little change at this great plugin : http://forums.mybb-plugins.com/Thread-TU...ints-index
I have an other idea but I don t know how to start it.
I would like to add, at the home page, the total amount of point generated by users.
I ve easily implemented it at the newpoints.php page using this function on the plugin newpoints.php
and then adding this to the menu :
But now, how can i call this variable, or the function from the portal template ?
thank you
I have an other idea but I don t know how to start it.
I would like to add, at the home page, the total amount of point generated by users.
I ve easily implemented it at the newpoints.php page using this function on the plugin newpoints.php
PHP Code:
function get_total()
{
global $db;
$total = 0;
$query = $db->write_query("
SELECT newpoints FROM ".TABLE_PREFIX."users WHERE newpoints>0
");
while($points = $db->fetch_array($query))
{
$total = $total + $points['newpoints'];
}
return $total;
}
and then adding this to the menu :
PHP Code:
$menu[0] = '<a href="#">Total: '. newpoints_format_points(get_total()) . '</a>';
But now, how can i call this variable, or the function from the portal template ?
thank you
