function _heartbeat_stream_config_load in Heartbeat 7
Implements Ctools load function.
1 string reference to '_heartbeat_stream_config_load'
- _heartbeat_update_7010 in ./
heartbeat.install - Helper function to add the new schema for streams.
File
- ./
heartbeat.streams.inc, line 136
Code
function _heartbeat_stream_config_load($name) {
$result = ctools_export_load_object('heartbeat_streams', 'names', array(
$name,
));
if (isset($result[$name])) {
return $result[$name];
}
}