You are here

function nodeconnect_cache_set in Node Connect 7

Wraps cache set so we can set the expire easily.

2 calls to nodeconnect_cache_set()
nodeconnect_add_edit_button_submit in ./nodeconnect.form.inc
Called when a new node is to be added.
nodeconnect_child_form_submit in ./nodeconnect.form.inc
Submiting of are child create form.

File

./nodeconnect.form.inc, line 181
handles all form alters and submit functions for nodeconnect

Code

function nodeconnect_cache_set($cid, $data) {
  return cache_set($cid, $data, 'cache', CACHE_PERMANENT);
}