function entityconnect_cache_get in Entity connect 7
Same name and namespace in other branches
- 7.2 entityconnect.module \entityconnect_cache_get()
Wraps cache get.
6 calls to entityconnect_cache_get()
- entityconnect_add in includes/
entityconnect.menu.inc - Page callback: Load cached form info.
- entityconnect_child_form_cancel in includes/
entityconnect.form.inc - Sets the redirect to a admin/entityconnect/redirect page.
- entityconnect_child_form_submit in includes/
entityconnect.form.inc - Sets submit button on child create form.
- entityconnect_edit in includes/
entityconnect.menu.inc - Page callback: Redirect to edit form.
- entityconnect_form_alter in ./
entityconnect.module - Implements hook_form_alter().
File
- ./
entityconnect.module, line 147 - Handles the main hooks used by entityconnect.
Code
function entityconnect_cache_get($cid) {
return cache_get($cid, ENTITYCONNECT_CACHE_TABLE);
}