You are here

private function user_activity::_save in Heartbeat 6.2

Save activity log

Parameters

array $raw_args:

1 call to user_activity::_save()
user_activity::save in ./heartbeat.module
Public function to save activity to database

File

./heartbeat.module, line 138
To fully understand this, you have to be familiar with the rules module. Lots of documentation can be found on http://drupal.org/node/298480 for an introduction and tutorial, but http://drupal.org/node/298486 is a lot of handy info for developers.

Class

user_activity
Class to handle user activity data

Code

private function _save($raw_args = array()) {

  // Rebuild arguments with tokens
  $args = $this
    ->rebuild_arguments($raw_args);
  $this
    ->log_message($args);
}