You are here

public function views_handler_field_alpha_pagination_group::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_field_alpha_pagination_group.inc, line 118

Class

views_handler_field_alpha_pagination_group
A handler to provide a field that generates alpha pagination values.

Code

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