You are here

function og_panels_edit_layout_settings in Organic groups 6

Same name and namespace in other branches
  1. 5.8 og_panels.module \og_panels_edit_layout_settings()
  2. 5 og_panels.module \og_panels_edit_layout_settings()
  3. 5.3 og_panels.module \og_panels_edit_layout_settings()
  4. 5.7 og_panels.module \og_panels_edit_layout_settings()

Pass through to the panels layout settings editor.

Parameters

int $did: the $did of the og_panel to be edited.

object $group_node: the node object to which the og_panel is attached.

1 string reference to 'og_panels_edit_layout_settings'
og_panels_menu in modules/og_panels/og_panels.module

File

modules/og_panels/og_panels.module, line 505

Code

function og_panels_edit_layout_settings($did, $group_node) {
  og_panels_set_breadcrumb('panel_edit', $group_node);
  $display = og_panels_load_display($did);
  return panels_edit_layout_settings($display, t('Save'), "node/{$group_node->nid}/og_panels");
}