function og_panels_edit_layout_settings in Organic groups 5
Same name and namespace in other branches
- 5.8 og_panels.module \og_panels_edit_layout_settings()
- 5.3 og_panels.module \og_panels_edit_layout_settings()
- 5.7 og_panels.module \og_panels_edit_layout_settings()
- 6 modules/og_panels/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'
File
- ./
og_panels.module, line 507
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");
}