Issue #2003460 by Dan Reinders, baldwinlouie: Rename Views method operator_validate() to operatorValidate().

8.0.x
Alex Pott 2013-06-11 12:33:54 +01:00
parent c8c6e46f6a
commit 5264ddd035
1 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ abstract class FilterPluginBase extends HandlerBase {
* 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 @@ abstract class FilterPluginBase extends HandlerBase {
/**
* 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.