Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. HandlerBase.php

function HandlerBase::getJoin

Overrides ViewsHandlerInterface::getJoin

1 call to HandlerBase::getJoin()
ManyToOne::summaryQuery in core/modules/views/src/Plugin/views/argument/ManyToOne.php
Build the info for the summary query.

File

core/modules/views/src/Plugin/views/HandlerBase.php, line 682

Class

HandlerBase
Base class for Views handler plugins.

Namespace

Drupal\views\Plugin\views

Code

public function getJoin() {
    // Get the join from this table that links back to the base table.
    // Determine the primary table to seek
    if (empty($this->query->relationships[$this->relationship])) {
        $base_table = $this->view->storage
            ->get('base_table');
    }
    else {
        $base_table = $this->query->relationships[$this->relationship]['base'];
    }
    $join = $this->getTableJoin($this->table, $base_table);
    if ($join) {
        return clone $join;
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal