You are here

function fieldable_panels_panes_fieldable_panels_pane_content_type_edit_form_validate in Fieldable Panels Panes (FPP) 7

Validate submission of our content type edit form.

File

plugins/content_types/fieldable_panels_pane.inc, line 319
CTools content type to render a fielded panel pane.

Code

function fieldable_panels_panes_fieldable_panels_pane_content_type_edit_form_validate($form, &$form_state) {
  if (!empty($form_state['no update entity'])) {
    return;
  }
  if ($form_state['entity']) {
    fieldable_panels_panes_entity_edit_form_validate($form, $form_state);
  }
}