Adding a product in commerce with no entity steps defined

Created on 4 February 2025, about 2 months ago

When I'm adding a product to commerce, which has no field groups and no entity steps, im hitting these errors

  • Warning: Undefined array key "form_display" in Drupal\entity_form_steps\Form\EntityFormSteps::getSteps() (line 30 of /var/www/sites/test.site/web/modules/contrib/entity_form_steps/src/Form/EntityFormSteps.php)
  • Error: Call to a member function getThirdPartySettings() on null in Drupal\entity_form_steps\Form\EntityFormSteps::getSteps() (line 32 of /var/www/sites/test.site/web/modules/contrib/entity_form_steps/src/Form/EntityFormSteps.php).

So In the types in commerce I have no field_groups defined, and don't need entity_form_steps. I am using it in other types, and they are working perfectly.

A hacky get around to at least allow me to enter some products, Ive added :-

line 31: entity_form_steps/src/Form/EntityFormSteps.php

if ($formDisplay == null) { return array(); }

This seems to work, except for the warning in the logs, but what I'd like is a more elegant solution ?

Thanks for a great module.

🐛 Bug report
Status

Active

Version

1.1

Component

Code

Created by

🇦🇺Australia digitalcatalyst

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @digitalcatalyst
  • Merge request !3trap null warning return empty array → (Open) created by Unnamed author
  • First commit to issue fork.
  • 🇧🇾Belarus aylis

    digitalcatalyst, thank you for creating this issue, I'm faced similar problem with commerce add_to_cart form.

    We have a link to this form added to custom modal form called on variation page, which alters original add_to_cart form and, besides other additions, adds login-like form inside. So when user submits that custom modal, he need to be redirected automatically to variation page back with variation added to cart.

    This process gets broken as entity_form_steps module checks add_to_cart in getSteps method. Following error appear in logs:
    Error: Call to a member function getThirdPartySettings() on null in Drupal\entity_form_steps\Form\EntityFormSteps::getSteps() (regel 32 van /app/web/modules/contrib/entity_form_steps/src/Form/EntityFormSteps.php).
    Looks like that's because no from_display property set within that form, I do not have time to dig deeper into it.

    My proposition is simply check if form_display variable is set before using it. Looks like that won't break any logic. I've committed proposition to separate MR, not sure if error handling need to be used here, as null check will suffice.

Production build 0.71.5 2024