public function ViewsData::fetchBaseTables in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/ViewsData.php \Drupal\views\ViewsData::fetchBaseTables()
Fetches a list of all base tables available.
Return value
array An array of base table data keyed by table name. Each item contains the following keys:
- title: The title label for the base table.
- help: The help text for the base table.
- weight: The weight of the base table.
File
- core/
modules/ views/ src/ ViewsData.php, line 291 - Contains \Drupal\views\ViewsData.
Class
- ViewsData
- Class to manage and lazy load cached views data.
Namespace
Drupal\viewsCode
public function fetchBaseTables() {
$tables = array();
foreach ($this
->get() as $table => $info) {
if (!empty($info['table']['base'])) {
$tables[$table] = array(
'title' => $info['table']['base']['title'],
'help' => !empty($info['table']['base']['help']) ? $info['table']['base']['help'] : '',
'weight' => !empty($info['table']['base']['weight']) ? $info['table']['base']['weight'] : 0,
);
}
}
// Sorts by the 'weight' and then by 'title' element.
uasort($tables, function ($a, $b) {
if ($a['weight'] != $b['weight']) {
return $a['weight'] < $b['weight'] ? -1 : 1;
}
if ($a['title'] != $b['title']) {
return $a['title'] < $b['title'] ? -1 : 1;
}
return 0;
});
return $tables;
}