Retrieve join data from the larger join data cache.
$table: The table to get the join information for.
$base_table: The path we're following to get this join.
Drupal\views\Plugin\views\join\JoinPluginBase A Join object or child object, if one exists.
function get_join_data($table, $base_table) {
// Check to see if we're linking to a known alias. If so, get the real
// table's data instead.
if (!empty($this->table_queue[$table])) {
$table = $this->table_queue[$table]['table'];
}
return HandlerBase::getTableJoin($table, $base_table);
}