function path_breadcrumbs_object_cache_get in Path Breadcrumbs 7.2
Same name and namespace in other branches
- 7.3 path_breadcrumbs.module \path_breadcrumbs_object_cache_get()
Get path breadcrumb data from cache.
Parameters
$name: Machine name of path breadcrumb that should be loaded.
bool $skip_cache: Skip current cache or not.
Return value
object Return cached object.
15 calls to path_breadcrumbs_object_cache_get()
- path_breadcrumbs_ctools_access_get in path_breadcrumbs_ui/
path_breadcrumbs_ui.module - Callback for access control ajax form on behalf of context task handler (third step). Returns the cached access config and contexts used.
- path_breadcrumbs_ctools_access_set in path_breadcrumbs_ui/
path_breadcrumbs_ui.module - Callback for access control ajax form on behalf of context task handler (third step). Saves the changed access to the cache.
- path_breadcrumbs_ui_add_form_submit in path_breadcrumbs_ui/
path_breadcrumbs_ui.module - Submit callback for path_breadcrumbs_ui_add_form.
- path_breadcrumbs_ui_argument_context_form in path_breadcrumbs_ui/
path_breadcrumbs_ui.module - Provide form that allows to match arguments with contexts.
- path_breadcrumbs_ui_argument_context_form_submit in path_breadcrumbs_ui/
path_breadcrumbs_ui.module - Submit callback for contexts selection form.
File
- ./
path_breadcrumbs.module, line 563 - Provide core functions for path breadcrumbs modue.
Code
function path_breadcrumbs_object_cache_get($name, $skip_cache = FALSE) {
ctools_include('object-cache');
return ctools_object_cache_get('path_breadcrumbs', $name, $skip_cache);
}