How to return multiple fields to buildPaneSummary()

Created on 15 April 2023, almost 2 years ago
Updated 17 April 2023, almost 2 years ago

I'm using the code from https://docs.drupalcommerce.org/commerce2/developer-guide/checkout/creat... to develop my custom checkout information.

I have a custom pane with multiple fields, how do I return ALL of these fields to the buildPaneSummary() function, along with labels?

  public function buildPaneSummary() {
    if ($field_a = $this->order->getData('field_a')) {
      return [
        '#plain_text' => $this->t('Field A: '),
        '#plain_text' => $this->order->getData('field_a'),
      ];
    }
    if ($field_b = $this->order->getData('field_b')) {
      return [
        '#plain_text' => $this->t('Field B: '),
        '#plain_text' => $field_b,
      ];
    }
    return [];
  }

The code above returns ONLY the content of field_b.

Thanks,
Glenn

💬 Support request
Status

Closed: won't fix

Version

2.35

Component

Checkout

Created by

🇳🇿New Zealand glennnz

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

Comments & Activities

  • Issue created by @glennnz
  • 🇳🇿New Zealand glennnz

    I got it to work with:

      public function buildPaneSummary() {
        if ($field_a = $this->order->getData('field_a')) {
          $return['field_a'] = [
            '#prefix' => ('<p>'),
            '#plain_text' => $this->order->getData('field_a'),
            '#suffix' => ('</p>'),
          ];
        }
        if ($field_b = $this->order->getData('field_b')) {
          $return['field_b'] = [
            '#plain_text' => $field_b,
            '#suffix' => ('</p>'),
          ];
        }
        return [$return];
      }
    

    But I'm quietly confident that there's a smarter way to do it.....

  • Status changed to Closed: won't fix almost 2 years ago
  • 🇮🇱Israel jsacksick

    With the abundance of support available in Drupal Answers, the Drupal focused Stack Exchange site, we are no longer answering support requests in the issue queue.

    Support requests opened here will be closed (won't fix), so please search for existing answers or post new questions at:

    https://drupal.stackexchange.com (using the drupal-commerce tag)

Production build 0.71.5 2024