Browse Source

Heartbeat Streams: added logic to inc file

logicp 8 years ago
parent
commit
197b1452ae
1 changed files with 16 additions and 0 deletions
  1. 16 0
      heartbeat.streams.inc

+ 16 - 0
heartbeat.streams.inc

@@ -79,3 +79,19 @@ function heartbeat_stream_views_build(HeartbeatStream &$heartbeatStream, $view_m
 }
 
 
+/**
+ * Load all the stream configuration objects
+ * @param bool $reset
+ *  Indicates whether the stream data needs to be rebuilt
+ */
+
+function heartbeat_stream_config_load_all($reset = FALSE) {
+  $streams = &drupal_static('heartbeat_streams');
+
+  if (!$reset && $object = cache_get('heartbeat_streams')) {
+    $streams = $object->data;
+  } else {
+    //TODO fetch streams with alternative to ctools export
+  }
+}
+