As there isn't any documentation and the text strings are quite unhelpful: What is the meaning of the calculation options found in admin/user/user_activity? Is it a factor weighting the appropriate item in the calculation? Is it a minimum number of actions a user has to make before it flows into the calculation (e.g. [4] page impressions are worth as much as [1] created node)?

Comments

sanduhrs’s picture

By now, these settings just modify the multiplicator:

  $percentage->logins  = ($usr->logins/$max->logins) * 100 * $weight['logins'];
  $percentage->pis  = ($usr->pis/$max->pis) * 100 * $weight['pis'];
  $percentage->nodes  = ($usr->nodes/$max->nodes) * 100 * $weight['nodes'];
  $percentage->comments  = ($usr->comments/$max->comments) * 100 * $weight['comments'];
Garnerin’s picture

Status: Active » Closed (fixed)

Thank you, sanduhrs. That's what I wanted to know.