You are here

function panels_renderer_editor::command_update_region_links in Panels 7.3

Same name and namespace in other branches
  1. 6.3 plugins/display_renderers/panels_renderer_editor.class.php \panels_renderer_editor::command_update_region_links()

Create a command to update the links on a region after a change was made.

2 calls to panels_renderer_editor::command_update_region_links()
panels_renderer_editor::ajax_style_settings in plugins/display_renderers/panels_renderer_editor.class.php
AJAX entry point to configure the style for a display, region or pane.
panels_renderer_editor::ajax_style_type in plugins/display_renderers/panels_renderer_editor.class.php
AJAX entry point to select the style for a display, region or pane.

File

plugins/display_renderers/panels_renderer_editor.class.php, line 1529
Class file to control the main Panels editor.

Class

panels_renderer_editor
@file Class file to control the main Panels editor.

Code

function command_update_region_links($id) {
  $this->commands[] = ajax_command_replace('.panels-region-links-' . $id, $this
    ->get_region_links($id));
}