&$display, 'finish' => $finish, 'destination' => $destination, 'allowed_layouts' => $allowed_layouts, 're_render' => FALSE, 'no_redirect' => TRUE, ); $change_form_state = $form_state; $change_form = FALSE; // Examine $_POST to see which form they're currently using. if (empty($_POST) || empty($_POST['form_id']) || $_POST['form_id'] != 'panels_change_layout') { $output = drupal_build_form('panels_choose_layout', $form_state); if (!empty($form_state['executed'])) { // upon submission go to next form. $change_form_state['layout'] = $_SESSION['layout'][$display->did] = $form_state['layout']; $change_form = TRUE; } } else { $change_form_state['layout'] = $_SESSION['layout'][$display->did]; $change_form = TRUE; } if ($change_form) { $output = drupal_build_form('panels_change_layout', $change_form_state); if (!empty($change_form_state['executed'])) { if (isset($change_form_state['back'])) { unset($_POST); return _panels_edit_layout($display, $finish, $destination, $allowed_layouts); } if (!empty($change_form_state['clicked_button']['#save-display'])) { drupal_set_message(t('Panel layout has been updated.')); panels_save_display($display); } if ($destination) { return panels_goto($destination); } return $change_form_state['display']; } } return $output; } /** * Form definition for the display layout editor. * * @ingroup forms */ function panels_choose_layout($form, &$form_state) { $display = &$form_state['display']; ctools_include('common', 'panels'); ctools_include('cleanstring'); $layouts = panels_common_get_allowed_layouts($form_state['allowed_layouts']); $categories = array(); $current = ''; foreach ($layouts as $id => $layout) { $category = ctools_cleanstring($layout['category']); // Default category to first in case layout doesn't exist or there isn't one. if (empty($current)) { $current = $category; } $categories[$category] = $layout['category']; $options[$category][$id] = panels_print_layout_icon($id, $layout, check_plain($layout['title'])); // Set current category to what is chosen. if ($id == $display->layout) { $current = $category; } } ctools_add_js('layout', 'panels'); $form['categories'] = array( '#title' => t('Category'), '#type' => 'select', '#options' => $categories, '#default_value' => $current, ); $form['layout'] = array( '#prefix' => '
', '#suffix' => '
', ); // We set up the dependencies manually because these aren't really form // items. It's possible there's a simpler way to do this, but I could not // think of one at the time. $dependencies = array(); foreach ($options as $category => $radios) { $dependencies['panels-layout-category-' . $category] = array( 'values' => array('edit-categories' => array($category)), 'num' => 1, 'type' => 'hide', ); $form['layout'][$category] = array( '#prefix' => '
' . $categories[$category] . '
', '#suffix' => '
', ); foreach ($radios as $key => $choice) { // Generate the parents as the autogenerator does, so we will have a // unique id for each radio button. $form['layout'][$category][$key] = array( '#type' => 'radio', '#title' => $choice, '#parents' => array('layout'), '#id' => drupal_clean_css_identifier('edit-layout-' . $key), '#return_value' => check_plain($key), '#default_value' => in_array($display->layout, array_keys($layouts)) ? $display->layout : NULL, ); } } ctools_add_js('dependent'); $js['CTools']['dependent'] = $dependencies; drupal_add_js($js, 'setting'); if (empty($form_state['no buttons'])) { $form['submit'] = array( '#type' => 'submit', '#value' => t('Next'), ); } return $form; } /** * Handle form submission of the display layout editor. */ function panels_choose_layout_submit($form, &$form_state) { $form_state['layout'] = $form_state['values']['layout']; } /** * Form definition for the display layout converter. * * This form is only triggered if the user attempts to change the layout * for a display that has already had content assigned to it. It allows * the user to select where the panes located in to-be-deleted panels should * be relocated to. * * @ingroup forms * * @param array $form * A structured FAPI $form array. * @param &$form_state * The Drupal $form_state */ function panels_change_layout($form, &$form_state) { $display = &$form_state['display']; $new_layout = panels_get_layout($form_state['layout']); $new_layout_panels = panels_get_regions($new_layout, $display); $options = $new_layout_panels; $keys = array_keys($options); $default = current($options); $old_layout = panels_get_layout($display->layout); $form['container'] = array( '#prefix' => '
', '#suffix' => '
', ); $form['container']['old_layout'] = array( '#markup' => panels_print_layout_icon($display->layout, $old_layout, check_plain($old_layout['title'])), ); $form['container']['right_arrow'] = array( '#markup' => theme('image', array('path' => drupal_get_path('module', 'panels') . '/images/go-right.png')), ); $form['container']['new_layout'] = array( '#markup' => panels_print_layout_icon($form_state['layout'], $new_layout, check_plain($new_layout['title'])), ); $form['old'] = array( '#tree' => true, '#prefix' => '
', '#suffix' => '
', ); $old_layout_panels = panels_get_regions($old_layout, $display); if (empty($display->panels)) { $form['old'] = array( '#prefix' => '
', '#markup' => t('There is no content in the panel display. If there were content, you would be given an opportunity to select where in the new layout the old content would be placed. Select "Save" or "Continue" to proceed. This change will not be processed if you do not continue.'), '#suffix' => '
', ); } foreach ($display->panels as $id => $content) { $form['old'][$id] = array( '#type' => 'select', '#title' => t('Move content in @layout to', array('@layout' => $old_layout_panels[$id])), '#options' => $options, '#default_value' => array_key_exists($id, $options) ? $id : $default, ); } if (empty($form_state['no buttons'])) { $form['back'] = array( '#type' => 'submit', '#value' => t('Back'), '#submit' => array('panels_choose_layout_back'), ); $form['submit'] = array( '#type' => 'submit', '#value' => $form_state['finish'], '#submit' => array('panels_change_layout_submit'), '#save-display' => TRUE, ); } return $form; } /** * Handle submission of the change layout form. * * This submit handler will move panes around and save the display. */ function panels_change_layout_submit($form, &$form_state) { $display = &$form_state['display']; if (!empty($form_state['values']['old'])) { foreach ($form_state['values']['old'] as $id => $new_id) { if (isset($display->panels[$id])) { if (!isset($content[$new_id])) { $content[$new_id] = array(); } $content[$new_id] = array_merge($content[$new_id], $display->panels[$id]); } foreach ($content[$new_id] as $pid) { $display->content[$pid]->panel = $new_id; } } $display->panels = $content; } $display->layout = $form_state['layout']; } /** * Handle submission of the change layout form. * * This submit handler sets a flag on the form state, which is then used * by the calling wrapper to restart the process. */ function panels_choose_layout_back($form, &$form_state) { $form_state['back'] = TRUE; }