You are here

function panels_edit_cache_settings_form_validate in Panels 6.2

Same name and namespace in other branches
  1. 5.2 includes/display_edit.inc \panels_edit_cache_settings_form_validate()
  2. 6.3 plugins/display_renderers/panels_renderer_editor.class.php \panels_edit_cache_settings_form_validate()
  3. 7.3 plugins/display_renderers/panels_renderer_editor.class.php \panels_edit_cache_settings_form_validate()

Validate cache settings.

Related topics

File

includes/display-edit.inc, line 936

Code

function panels_edit_cache_settings_form_validate($form, &$form_state) {
  if ($function = panels_plugin_get_function('cache', $form_state['conf']['method'], 'settings form validate')) {
    $function($form, $form_state['values']['settings']);
  }
}