diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php b/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php index d0fb508..444a597 100644 --- a/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php +++ b/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php @@ -20,9 +20,9 @@ class Fid extends Numeric { /** - * Override the behavior of title_query(). Get the filenames. + * Override the behavior of titleQuery(). Get the filenames. */ - function title_query() { + function titleQuery() { $titles = db_select('file_managed', 'f') ->fields('f', array('filename')) ->condition('fid', $this->value) diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/argument/Nid.php b/core/modules/node/lib/Drupal/node/Plugin/views/argument/Nid.php index 4519778..7eed58d 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/argument/Nid.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/argument/Nid.php @@ -20,7 +20,7 @@ class Nid extends Numeric { /** * Override the behavior of title(). Get the title of the node. */ - function title_query() { + function titleQuery() { $titles = array(); $nodes = node_load_multiple($this->value); diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/argument/Vid.php b/core/modules/node/lib/Drupal/node/Plugin/views/argument/Vid.php index 4e36279..ff37088 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/argument/Vid.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/argument/Vid.php @@ -22,7 +22,7 @@ class Vid extends Numeric { /** * Override the behavior of title(). Get the title of the revision. */ - function title_query() { + function titleQuery() { $titles = array(); $results = db_select('node_revision', 'nr') diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTid.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTid.php index f51a5ce..81140b9 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTid.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTid.php @@ -43,7 +43,7 @@ function set_breadcrumb(&$breadcrumb) { return views_taxonomy_set_breadcrumb($breadcrumb, $this); } - function title_query() { + function titleQuery() { $titles = array(); $result = db_select('taxonomy_term_data', 'td') ->fields('td', array('name')) diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument/RolesRid.php b/core/modules/user/lib/Drupal/user/Plugin/views/argument/RolesRid.php index bbef57e..eade574 100644 --- a/core/modules/user/lib/Drupal/user/Plugin/views/argument/RolesRid.php +++ b/core/modules/user/lib/Drupal/user/Plugin/views/argument/RolesRid.php @@ -19,7 +19,7 @@ */ class RolesRid extends ManyToOne { - function title_query() { + function titleQuery() { return array(entity_load('user_role', $this->value)->label()); } diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument/Uid.php b/core/modules/user/lib/Drupal/user/Plugin/views/argument/Uid.php index 82c5b75..6d2334b 100644 --- a/core/modules/user/lib/Drupal/user/Plugin/views/argument/Uid.php +++ b/core/modules/user/lib/Drupal/user/Plugin/views/argument/Uid.php @@ -25,7 +25,7 @@ class Uid extends Numeric { * @return array * A list of usernames. */ - function title_query() { + function titleQuery() { if (!$this->argument) { return array(config('user.settings')->get('anonymous')); } diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php index 803d31a..485d4a4 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php @@ -158,7 +158,7 @@ function title() { return !empty($this->definition['invalid input']) ? $this->definition['invalid input'] : t('Invalid input'); } - return implode($this->operator == 'or' ? ' + ' : ', ', $this->title_query()); + return implode($this->operator == 'or' ? ' + ' : ', ', $this->titleQuery()); } function summary_query() { @@ -196,7 +196,7 @@ function summary_argument($data) { /** * Override for specific title lookups. */ - function title_query() { + function titleQuery() { return $this->value; } diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php index 3038694..1e6ed05 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php @@ -82,7 +82,7 @@ function title() { return !empty($this->definition['invalid input']) ? $this->definition['invalid input'] : t('Invalid input'); } - return implode($this->operator == 'or' ? ' + ' : ', ', $this->title_query()); + return implode($this->operator == 'or' ? ' + ' : ', ', $this->titleQuery()); } /** @@ -90,7 +90,7 @@ function title() { * @return array * Returns all titles, if it's just one title it's an array with one entry. */ - function title_query() { + function titleQuery() { return $this->value; } diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php index 139bdd2..32b6f0b 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php @@ -275,13 +275,13 @@ function title() { return !empty($this->definition['invalid input']) ? $this->definition['invalid input'] : t('Invalid input'); } - return implode($this->operator == 'or' ? ' + ' : ', ', $this->title_query()); + return implode($this->operator == 'or' ? ' + ' : ', ', $this->titleQuery()); } /** * Override for specific title lookups. */ - function title_query() { + function titleQuery() { return drupal_map_assoc($this->value, 'check_plain'); }