/**
  * Retrieve an existing record - static method: getUserPopularity()
  *
  *
  * Generated with the DalClassGenerator created by: 
  * Zoran Hron <*****@*****.**> 
  *
  * @param user_id
  * @param fetchmode = DB_FETCHMODE_OBJECT
  * @result object: UserPopularity
  **/
 public static function getUserPopularity($user_id, $fetchmode = DB_FETCHMODE_OBJECT)
 {
     // object self instance
     $instance = new self();
     // call dynamic method
     return $instance->get_UserPopularity($user_id, $fetchmode);
 }