gracias a todos ya logre hacerlo de esta manera
Código PHP:
Ver originalfunction get_online_users(){
return Mysql::getInstance() ->from('users')
->where(array('aid=' => $_SESSION['uid'], 'UNIX_TIMESTAMP(keep_alive)>' => 'UNIX_TIMESTAMP(now())-'.Config::get('watchdog_timeout')*2
))
->get()
->counter();
}