Update core 8.3.0

This commit is contained in:
Rob Davies 2017-04-13 15:53:35 +01:00
parent da7a7918f8
commit cd7a898e66
6144 changed files with 132297 additions and 87747 deletions

View file

@ -37,7 +37,7 @@ class ViewsDataHelper {
/**
* Fetches a list of all fields available for a given base type.
*
* @param (array|string) $base
* @param array|string $base
* A list or a single base_table, for example node.
* @param string $type
* The handler type, for example field or filter.
@ -64,9 +64,9 @@ class ViewsDataHelper {
// each field have a cheap kind of inheritance.
foreach ($data as $table => $table_data) {
$bases = array();
$strings = array();
$skip_bases = array();
$bases = [];
$strings = [];
$skip_bases = [];
foreach ($table_data as $field => $info) {
// Collect table data from this table
if ($field == 'table') {
@ -78,7 +78,7 @@ class ViewsDataHelper {
$bases[] = $table;
continue;
}
foreach (array('field', 'sort', 'filter', 'argument', 'relationship', 'area') as $key) {
foreach (['field', 'sort', 'filter', 'argument', 'relationship', 'area'] as $key) {
if (!empty($info[$key])) {
if ($grouping && !empty($info[$key]['no group by'])) {
continue;
@ -96,7 +96,7 @@ class ViewsDataHelper {
$skip_bases[$field][$key][$base_name] = TRUE;
}
}
foreach (array('title', 'group', 'help', 'base', 'aliases') as $string) {
foreach (['title', 'group', 'help', 'base', 'aliases'] as $string) {
// First, try the lowest possible level
if (!empty($info[$key][$string])) {
$strings[$field][$key][$string] = $info[$key][$string];
@ -120,7 +120,7 @@ class ViewsDataHelper {
}
else {
if ($string != 'base') {
$strings[$field][$key][$string] = SafeMarkup::format("Error: missing @component", array('@component' => $string));
$strings[$field][$key][$string] = SafeMarkup::format("Error: missing @component", ['@component' => $string]);
}
}
}
@ -143,21 +143,21 @@ class ViewsDataHelper {
// all and add them together. Duplicate keys will be lost and that's
// Just Fine.
if (is_array($base)) {
$strings = array();
$strings = [];
foreach ($base as $base_table) {
if (isset($this->fields[$base_table][$type])) {
$strings += $this->fields[$base_table][$type];
}
}
uasort($strings, array('self', 'fetchedFieldSort'));
uasort($strings, ['self', 'fetchedFieldSort']);
return $strings;
}
if (isset($this->fields[$base][$type])) {
uasort($this->fields[$base][$type], array($this, 'fetchedFieldSort'));
uasort($this->fields[$base][$type], [$this, 'fetchedFieldSort']);
return $this->fields[$base][$type];
}
return array();
return [];
}
/**