Issue #2003262 by phenaproxima: Rename Views show_operator_form() to showOperatorForm().
parent
f6e4b9b95f
commit
29271d477e
|
@ -217,7 +217,7 @@ abstract class FilterPluginBase extends HandlerBase {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Add the subform from operator_form().
|
// Add the subform from operator_form().
|
||||||
$this->show_operator_form($form, $form_state);
|
$this->showOperatorForm($form, $form_state);
|
||||||
// Add the subform from value_form().
|
// Add the subform from value_form().
|
||||||
$this->show_value_form($form, $form_state);
|
$this->show_value_form($form, $form_state);
|
||||||
$form['clear_markup_end'] = array(
|
$form['clear_markup_end'] = array(
|
||||||
|
@ -265,7 +265,7 @@ abstract class FilterPluginBase extends HandlerBase {
|
||||||
/**
|
/**
|
||||||
* Shortcut to display the operator form.
|
* Shortcut to display the operator form.
|
||||||
*/
|
*/
|
||||||
function show_operator_form(&$form, &$form_state) {
|
public function showOperatorForm(&$form, &$form_state) {
|
||||||
$this->operator_form($form, $form_state);
|
$this->operator_form($form, $form_state);
|
||||||
$form['operator']['#prefix'] = '<div class="views-group-box views-left-30">';
|
$form['operator']['#prefix'] = '<div class="views-group-box views-left-30">';
|
||||||
$form['operator']['#suffix'] = '</div>';
|
$form['operator']['#suffix'] = '</div>';
|
||||||
|
|
Loading…
Reference in New Issue