You are here

function views_handler_area_alpha_pagination::validate in Views Alpha Pagination 7.2

Validates the handler against the complete View.

This is called when the complete View is being validated. For validating the handler options form use options_validate().

Return value

array Empty array if the handler is valid; an array of error strings if it is not.

Overrides views_handler::validate

See also

views_handler::options_validate()

File

src/views_handler_area_alpha_pagination.inc, line 534

Class

views_handler_area_alpha_pagination
Views area handler to display alphabetic pagination.

Code

function validate() {
  return $this->alphaPagination
    ->validate();
}