function panels_cache_set in Panels 5.2
Same name and namespace in other branches
- 6.3 panels.module \panels_cache_set()
- 6.2 panels.module \panels_cache_set()
- 7.3 panels.module \panels_cache_set()
Save the edited display into the cache.
7 calls to panels_cache_set()
- panels_ajax_add_config in includes/
display_edit.inc - Entry point for AJAX: Add pane configuration.
- panels_ajax_cache_settings in includes/
display_edit.inc - Handle the cache settings form
- panels_ajax_configure in includes/
display_edit.inc - Entry point for AJAX: Edit pane configuration.
- panels_ajax_toggle_shown in includes/
display_edit.inc - Entry point for AJAX: toggle pane show/hide status.
- panels_content_config_form in includes/
display_edit.inc - Master FAPI definition for all pane add/edit configuration forms.
File
- ./
panels.module, line 303 - panels.module Core API for Panels. Provides display editing and rendering capabilities.
Code
function panels_cache_set($did, $cache) {
return panels_common_cache_set('panels', $did, $cache);
}