Skip to content
Snippets Groups Projects
Commit 5264ddd0 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2003460 by Dan Reinders, baldwinlouie: Rename Views method...

Issue #2003460 by Dan Reinders, baldwinlouie: Rename Views method operator_validate() to operatorValidate().
parent c8c6e46f
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -234,7 +234,7 @@ public function buildOptionsForm(&$form, &$form_state) {
* Simple validate handler
*/
public function validateOptionsForm(&$form, &$form_state) {
$this->operator_validate($form, $form_state);
$this->operatorValidate($form, $form_state);
$this->valueValidate($form, $form_state);
if (!empty($this->options['exposed']) && !$this->isAGroup()) {
$this->validateExposeForm($form, $form_state);
......@@ -300,7 +300,7 @@ public function operatorOptions() { return array(); }
/**
* Validate the operator form.
*/
function operator_validate($form, &$form_state) { }
protected function operatorValidate($form, &$form_state) { }
/**
* Perform any necessary changes to the form values prior to storage.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment