public function Schema::fieldNames in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::fieldNames()
- 10 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::fieldNames()
Return an array of field names from an array of key/index column specifiers.
This is usually an identity function but if a key/index uses a column prefix specification, this function extracts just the name.
Parameters
$fields: An array of key/index column specifiers.
Return value
An array of field names.
File
- core/
lib/ Drupal/ Core/ Database/ Schema.php, line 634
Class
- Schema
- Provides a base implementation for Database Schema.
Namespace
Drupal\Core\DatabaseCode
public function fieldNames($fields) {
$return = [];
foreach ($fields as $field) {
if (is_array($field)) {
$return[] = $field[0];
}
else {
$return[] = $field;
}
}
return $return;
}