- Issue created by @apmsooner
- Merge request !71Add condition to prevent error if unset $field[โformatter_settingsโ]. โ (Merged) created by apmsooner
-
apmsooner โ
committed 52c11cbb on 3.0.x
Issue #3487566 by apmsooner: Warning: Undefined array key "...
-
apmsooner โ
committed 52c11cbb on 3.0.x
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
about 1 month ago 1:18pm 28 February 2025 - ๐ง๐ชBelgium swentel
Getting an error which is related:
TypeError: Drupal\custom_field\Plugin\Field\FieldFormatter\BaseFormatter::createOptionsForInstance(): Argument #3 ($formatter_settings) must be of type array, null given, called in /home/drupal/web/modules/contrib/custom_field/src/Plugin/Field/FieldFormatter/BaseFormatter.php on line 463 in Drupal\custom_field\Plugin\Field\FieldFormatter\BaseFormatter->createOptionsForInstance() (line 101 of modules/contrib/custom_field/src/Plugin/Field/FieldFormatter/BaseFormatter.php).
diff --git a//src/Plugin/Field/FieldFormatter/BaseFormatter.php b//src/Plugin/Field/FieldFormatter/BaseFormatter.php index 4cd0936e5..0e351ac0f 100755 --- a//src/Plugin/Field/FieldFormatter/BaseFormatter.php +++ b//src/Plugin/Field/FieldFormatter/BaseFormatter.php @@ -460,7 +460,7 @@ protected function getFormattedValues(FieldItemInterface $item, string $langcode $format_type = $formatter_settings['format_type']; } - $options = $this->createOptionsForInstance($custom_item, $format_type, $formatter_settings['formatter_settings']); + $options = $this->createOptionsForInstance($custom_item, $format_type, $formatter_settings['formatter_settings'] ?? []); $plugin = $this->customFieldFormatterManager->getInstance($options); $value = $plugin->formatValue($item, $value); if ($value === '' || $value === NULL) {
- ๐บ๐ธUnited States apmsooner
@swentel, are you using the latest version 3.1.x? The variable here already falls back to empty array so the error shouldn't occur: https://git.drupalcode.org/project/custom_field/-/blob/3.1.x/src/Plugin/...
- ๐บ๐ธUnited States apmsooner
Hmm... maybe its failing here: https://git.drupalcode.org/project/custom_field/-/blob/3.1.x/src/Plugin/.... If you can open a new ticket with some steps to reproduce, it should be an easy fix.
- ๐ง๐ชBelgium swentel
yes, running 3.1.3
Using the debugger, it happens on the formatter settings for a file, using the file_default formatter.
Looking at the code, it looks like this line is the problem: https://git.drupalcode.org/project/custom_field/-/blob/3.1.x/src/Plugin/...
It's totally possible that $settings[$name] does not contain the formatter_settings key, which happens in this case for a file.