leaderbin/modules/leaderboards.php
Josh Sherman c1817a24be Dropped Redis model, rebuilt without it
The model was getting a bit more complicated than I would have liked. Went back to using straight redis commands and moved some of the user model logic into the custommodule.
2013-12-17 00:46:47 -05:00

14 lines
190 B
PHP

<?php
class leaderboards extends UserModule
{
public function __default()
{
// Grabs the user's leaderboards
$leaders = '';
return array('leaderboards' => $leaderboards);
}
}
?>