You are here

public function ViewExecutable::getBaseTables in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::getBaseTables()

Creates a list of base tables to be used by the view.

This is used primarily for the UI. The display must be already initialized.

Return value

array An array of base tables to be used by the view.

File

core/modules/views/src/ViewExecutable.php, line 969

Class

ViewExecutable
Represents a view as a whole.

Namespace

Drupal\views

Code

public function getBaseTables() {
  $base_tables = [
    $this->storage
      ->get('base_table') => TRUE,
    '#global' => TRUE,
  ];
  foreach ($this->display_handler
    ->getHandlers('relationship') as $handler) {
    $base_tables[$handler->definition['base']] = TRUE;
  }
  return $base_tables;
}