You are here

function _heartbeat_stream_config_load_all in Heartbeat 7

Implementation of ctools load all function.

1 string reference to '_heartbeat_stream_config_load_all'
_heartbeat_update_7010 in ./heartbeat.install
Helper function to add the new schema for streams.

File

./heartbeat.streams.inc, line 106

Code

function _heartbeat_stream_config_load_all($reset) {
  $streams = ctools_export_load_object('heartbeat_streams', 'all');
  foreach (array_keys($streams) as $key) {
    _heartbeat_stream_config_unpack($streams[$key]);
  }
  return $streams;
}