PHP 7.4 Notice: Trying to access array offset on value of type null in field_widget_instance() when use in custom form

Created on 19 April 2022, almost 3 years ago
Updated 13 March 2025, 24 days ago

Problem/Motivation

When use link field widget in custom form β†’ , start seeing following notice on PHP 7.4

Notice: Trying to access array offset on value of type null in field_widget_instance() (line 625 of /app/web/modules/field/field.form.inc)

Steps to reproduce

With PHP 7.4, use link widget on a custom form, see https://www.drupal.org/project/link/issues/2718563 β†’ .

Proposed resolution

Instead of calling field_widget_instance() directly in link_field_process(), called field_form_get_state()and check for instance.

 function link_field_process($element, $form_state, $complete_form) {
-  $instance = field_widget_instance($element, $form_state);
+  $field_state = field_form_get_state($element['#field_parents'], $element['#field_name'], $element['#language'], $form_state);
+  $instance = !empty($field_state['instance']) ? $field_state['instance'] : array();
function field_widget_instance($element, $form_state) {
  $field_state = field_form_get_state($element['#field_parents'], $element['#field_name'], $element['#language'], $form_state);
  return $field_state['instance'];
}
πŸ› Bug report
Status

Fixed

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States xlin1003

Live updates comments and jobs are added and updated live.
  • PHP 7.4

    The issue particularly affects sites running on PHP version 7.4.0 or later.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024