function GroupwiseMax::condition_namespace

Helper function to namespace query pieces.

Turns 'foo.bar' into 'foo_NAMESPACE.bar'.

2 calls to GroupwiseMax::condition_namespace()

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php, line 333
Definition of Drupal\views\Plugin\views\relationship\GroupwiseMax.

Class

GroupwiseMax
Relationship handler that allows a groupwise maximum of the linked in table. For a definition, see: http://dev.mysql.com/doc/refman/5.0/en/example-maximum-column-group-row.... In lay terms, instead of joining to get all matching records in the…

Namespace

Drupal\views\Plugin\views\relationship

Code

function condition_namespace($string) {
  return str_replace('.', $this->subquery_namespace . '.', $string);
}