Issue #2002494 by theladebug, tvlooy: Rename Views method exposed_filter_applied() to exposedFilterApplied().

8.0.x
Alex Pott 2013-05-29 23:31:17 +01:00
parent 687af78488
commit 9ca92e1235
1 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ class InputRequired extends ExposedFormPluginBase {
parent::submitOptionsForm($form, $form_state);
}
function exposed_filter_applied() {
protected function exposedFilterApplied() {
static $cache = NULL;
if (!isset($cache)) {
$view = $this->view;
@ -72,7 +72,7 @@ class InputRequired extends ExposedFormPluginBase {
}
function pre_render($values) {
if (!$this->exposed_filter_applied()) {
if (!$this->exposedFilterApplied()) {
$options = array(
'id' => 'area',
'table' => 'views',
@ -93,7 +93,7 @@ class InputRequired extends ExposedFormPluginBase {
}
public function query() {
if (!$this->exposed_filter_applied()) {
if (!$this->exposedFilterApplied()) {
// We return with no query; this will force the empty text.
$this->view->built = TRUE;
$this->view->executed = TRUE;