You are here

function panels_edit_configure_access_test_form_validate in Panels 6.3

Same name and namespace in other branches
  1. 7.3 plugins/display_renderers/panels_renderer_editor.class.php \panels_edit_configure_access_test_form_validate()

Validate handler for visibility rule settings

File

plugins/display_renderers/panels_renderer_editor.class.php, line 1873
Class file to control the main Panels editor.

Code

function panels_edit_configure_access_test_form_validate(&$form, &$form_state) {
  if (!empty($form_state['clicked_button']['#remove'])) {
    return;
  }
  if ($function = ctools_plugin_get_function($form_state['plugin'], 'settings form validate')) {
    $function($form, $form_state);
  }
}