Ver Fonte

Heartbeat Streams: added logic to inc file

logicp há 8 anos atrás
pai
commit
197b1452ae
1 ficheiros alterados com 16 adições e 0 exclusões
  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
+  }
+}
+