function panels_renderer_ipe::ajax_unlock_ipe in Panels 7.3
AJAX callback to unlock the IPE.
This is called whenever something server side determines that editing has stopped and cleans up no longer needed locks.
It has no visible return value as this is considered a background task and the client side has already given all indications that things are now in a 'normal' state.
File
- panels_ipe/
plugins/ display_renderers/ panels_renderer_ipe.class.php, line 305
Class
- panels_renderer_ipe
- Renderer class for all In-Place Editor (IPE) behavior.
Code
function ajax_unlock_ipe() {
panels_edit_cache_clear($this->cache);
$this->commands[] = array();
}