示例#1
0
 /**
  * returns the current affiliate user
  * @return Model_User 
  */
 public static function current()
 {
     //we don't have so let's retrieve
     if (self::$_current === NULL) {
         self::$_current = self::get_affiliate();
     }
     return self::$_current;
 }