You are here

function panels_layouts_ui::edit_form_validate in Panels 7.3

Validate callback for the edit form.

Overrides ctools_export_ui::edit_form_validate

File

plugins/export_ui/panels_layouts_ui.class.php, line 135
Contains the administrative UI for reusable layouts.

Class

panels_layouts_ui
@file Contains the administrative UI for reusable layouts.

Code

function edit_form_validate(&$form, &$form_state) {
  parent::edit_form_validate($form, $form_state);

  // While we short circuited the main validate hook, we need to keep this one.
  panels_edit_display_settings_form_validate($form, $form_state);
}