public function Sql::getTableInfo in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/query/Sql.php \Drupal\views\Plugin\views\query\Sql::getTableInfo()
Get the information associated with a table.
If you need the alias of a table with a particular relationship, use ensureTable().
File
- core/
modules/ views/ src/ Plugin/ views/ query/ Sql.php, line 779
Class
- Sql
- Views query plugin for an SQL query.
Namespace
Drupal\views\Plugin\views\queryCode
public function getTableInfo($table) {
if (!empty($this->tableQueue[$table])) {
return $this->tableQueue[$table];
}
// In rare cases we might *only* have aliased versions of the table.
if (!empty($this->tables[$this->view->storage
->get('base_table')][$table])) {
$alias = $this->tables[$this->view->storage
->get('base_table')][$table]['alias'];
if (!empty($this->tableQueue[$alias])) {
return $this->tableQueue[$alias];
}
}
}