You are here

function hook_panels_display_save in Panels 7.3

Fired after a display is saved.

Parameters

panels_display $display: The display to save.

1 function implements hook_panels_display_save()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

i18n_panels_panels_display_save in i18n_panels/i18n_panels.module
Implements hook_panels_display_save().
1 invocation of hook_panels_display_save()
panels_save_display in ./panels.module
Save a display object.

File

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

Code

function hook_panels_display_save($display) {
  i18n_string_object_update('display_configuration', $display);
}