public 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 959
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\views
Code
public function getBaseTables() { $base_tables = array( $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; }
Please login to continue.