You are here

function panels_page_edit_layout in Panels 5.2

Same name and namespace in other branches
  1. 6.2 panels_page/panels_page.admin.inc \panels_page_edit_layout()

Pass through to the panels layout editor.

1 string reference to 'panels_page_edit_layout'
panels_page_admin_menu_items in panels_page/panels_page.module
Helper function to add a menu item for a panel.

File

panels_page/panels_page.admin.inc, line 694
panels_page.admin.inc

Code

function panels_page_edit_layout($panel_page, $did = NULL) {
  if (!is_object($panel_page)) {
    $panel_page = panels_page_load($panel_page);
  }
  panels_page_fetch_display($panel_page, $did);
  $display = $panel_page->display;

  // The following form will return the $display upon successful submit, if
  // we didn't send the $dest. Which we don't, here. That way we can update
  // our panel_page if necessary and do our own goto.
  $output = panels_edit_layout($panel_page->display, t('Save'));
  if (is_object($output)) {
    $panel_page->display = $output;
    panels_page_save_display($panel_page);
    $dest = "admin/panels/panel-page/{$panel_page->name}/edit/layout";
    if ($did) {
      $dest .= "/{$did}";
    }
    drupal_goto($dest);
  }
  drupal_set_title(check_plain(panels_page_get_title($panel_page)));
  return $output;
}