public function user_activity::variables2array in Heartbeat 6.2
public function to set variables into readable array
1 call to user_activity::variables2array()
- user_activity::set_data in ./
heartbeat.module - Set data into members
File
- ./
heartbeat.module, line 89 - 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
public function variables2array() {
$this->m_variables_array = heartbeat_decode_message_variables($this->m_variables_string);
return $this->m_variables_array;
}