You are here

function views_handler_sort::options_validate in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 handlers/views_handler_sort.inc \views_handler_sort::options_validate()

Simple validate handler

Overrides views_handler::options_validate

File

handlers/views_handler_sort.inc, line 79

Class

views_handler_sort
Base sort handler that has no options and performs a simple sort

Code

function options_validate(&$form, &$form_state) {
  $this
    ->sort_validate($form, $form_state);
  if (!empty($this->options['exposed'])) {
    $this
      ->expose_validate($form, $form_state);
  }
}