Преглед изворни кода

Heartbeat Streams: added logic to inc file

logicp пре 8 година
родитељ
комит
197b1452ae
1 измењених фајлова са 16 додато и 0 уклоњено
  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
+  }
+}
+