You are here

function hook_panels_edit_cache_break_lock in Panels 7.3

Allow modules to provide a mechanism to break locks.

Parameters

string $argument: The second half of the cache key. Full key module:TASK_NAME:HANDLER_NAME passed part: TASK_NAME:HANDLER_NAME

object $cache: The cached display.

File

./panels.api.php, line 131
Hooks provided by Panels.

Code

function hook_panels_edit_cache_break_lock($argument, $cache) {
  $cache->locked = FALSE;
}