Error message

Warning: count(): Parameter must be an array or an object that implements Countable in _api_make_match_member_link() (line 1230 of /home/projects/api/www/sites/all/modules/api/api.formatting.inc).

public function InlineParagraphsWidget::formElement

Uses a similar approach to populate a new translation.

See also

\Drupal\content_translation\Controller\ContentTranslationController::prepareTranslation()

File

paragraphs/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php, line 224

Class

InlineParagraphsWidget
Plugin implementation of the 'entity_reference paragraphs' widget.

Namespace

Drupal\paragraphs\Plugin\Field\FieldWidget

Code

public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
  $field_name = $this->fieldDefinition
    ->getName();
  $parents = $element['#field_parents'];
  $info = [];

  /** @var \Drupal\paragraphs\ParagraphInterface $paragraphs_entity */
  $paragraphs_entity = NULL;
  $host = $items
    ->getEntity();
  $widget_state = static::getWidgetState($parents, $field_name, $form_state);
  $entity_type_manager = \Drupal::entityTypeManager();
  $target_type = $this
    ->getFieldSetting('target_type');
  $item_mode = isset($widget_state['paragraphs'][$delta]['mode']) ? $widget_state['paragraphs'][$delta]['mode'] : 'edit';
  $default_edit_mode = $this
    ->getSetting('edit_mode');
  $show_must_be_saved_warning = !empty($widget_state['paragraphs'][$delta]['show_warning']);
  if (isset($widget_state['paragraphs'][$delta]['entity'])) {
    $paragraphs_entity = $widget_state['paragraphs'][$delta]['entity'];
  }
  elseif (isset($items[$delta]->entity)) {
    $paragraphs_entity = $items[$delta]->entity;

    // We don't have a widget state yet, get from selector settings.
    if (!isset($widget_state['paragraphs'][$delta]['mode'])) {
      if ($default_edit_mode == 'open') {
        $item_mode = 'edit';
      }
      elseif ($default_edit_mode == 'closed') {
        $item_mode = 'closed';
      }
      elseif ($default_edit_mode == 'preview') {
        $item_mode = 'preview';
      }
    }
  }
  elseif (isset($widget_state['selected_bundle'])) {
    $entity_type = $entity_type_manager
      ->getDefinition($target_type);
    $bundle_key = $entity_type
      ->getKey('bundle');
    $paragraphs_entity = $entity_type_manager
      ->getStorage($target_type)
      ->create(array(
      $bundle_key => $widget_state['selected_bundle'],
    ));
    $paragraphs_entity
      ->setParentEntity($items
      ->getEntity(), $field_name);
    $item_mode = 'edit';
  }
  if ($item_mode == 'collapsed') {
    $item_mode = $default_edit_mode;
  }
  if ($item_mode == 'closed') {

    // Validate closed paragraphs and expand if needed.
    // @todo Consider recursion.
    $violations = $paragraphs_entity
      ->validate();
    $violations
      ->filterByFieldAccess();
    if (count($violations) > 0) {
      $item_mode = 'edit';
      $messages = [];
      foreach ($violations as $violation) {
        $messages[] = $violation
          ->getMessage();
      }
      $info['validation_error'] = array(
        '#type' => 'container',
        '#markup' => $this
          ->t('@messages', [
          '@messages' => strip_tags(implode('\\n', $messages)),
        ]),
        '#attributes' => [
          'class' => [
            'messages',
            'messages--warning',
          ],
        ],
      );
    }
  }
  if ($paragraphs_entity) {

    // Detect if we are translating.
    $this
      ->initIsTranslating($form_state, $host);
    $langcode = $this
      ->getCurrentLangcode($form_state, $items);
    if (!$this->isTranslating) {

      // Set the langcode if we are not translating.
      $langcode_key = $paragraphs_entity
        ->getEntityType()
        ->getKey('langcode');
      if ($paragraphs_entity
        ->get($langcode_key)->value != $langcode) {

        // If a translation in the given language already exists, switch to
        // that. If there is none yet, update the language.
        if ($paragraphs_entity
          ->hasTranslation($langcode)) {
          $paragraphs_entity = $paragraphs_entity
            ->getTranslation($langcode);
        }
        else {
          $paragraphs_entity
            ->set($langcode_key, $langcode);
        }
      }
    }
    else {

      // Add translation if missing for the target language.
      if (!$paragraphs_entity
        ->hasTranslation($langcode)) {

        // Get the selected translation of the paragraph entity.
        $entity_langcode = $paragraphs_entity
          ->language()
          ->getId();
        $source = $form_state
          ->get([
          'content_translation',
          'source',
        ]);
        $source_langcode = $source ? $source
          ->getId() : $entity_langcode;

        // Make sure the source language version is used if available. It is a
        // valid scenario to have no paragraphs items in the source version of
        // the host and fetching the translation without this check could lead
        // to an exception.
        if ($paragraphs_entity
          ->hasTranslation($source_langcode)) {
          $paragraphs_entity = $paragraphs_entity
            ->getTranslation($source_langcode);
        }

        // The paragraphs entity has no content translation source field if
        // no paragraph entity field is translatable, even if the host is.
        if ($paragraphs_entity
          ->hasField('content_translation_source')) {

          // Initialise the translation with source language values.
          $paragraphs_entity
            ->addTranslation($langcode, $paragraphs_entity
            ->toArray());
          $translation = $paragraphs_entity
            ->getTranslation($langcode);
          $manager = \Drupal::service('content_translation.manager');
          $manager
            ->getTranslationMetadata($translation)
            ->setSource($paragraphs_entity
            ->language()
            ->getId());
        }
      }

      // If any paragraphs type is translatable do not switch.
      if ($paragraphs_entity
        ->hasField('content_translation_source')) {

        // Switch the paragraph to the translation.
        $paragraphs_entity = $paragraphs_entity
          ->getTranslation($langcode);
      }
    }
    $element_parents = $parents;
    $element_parents[] = $field_name;
    $element_parents[] = $delta;
    $element_parents[] = 'subform';
    $id_prefix = implode('-', array_merge($parents, array(
      $field_name,
      $delta,
    )));
    $wrapper_id = Html::getUniqueId($id_prefix . '-item-wrapper');
    $element += array(
      '#type' => 'container',
      '#element_validate' => array(
        array(
          $this,
          'elementValidate',
        ),
      ),
      '#paragraph_type' => $paragraphs_entity
        ->bundle(),
      'subform' => array(
        '#type' => 'container',
        '#parents' => $element_parents,
      ),
    );
    $element['#prefix'] = '<div id="' . $wrapper_id . '">';
    $element['#suffix'] = '</div>';
    $item_bundles = \Drupal::service('entity_type.bundle.info')
      ->getBundleInfo($target_type);
    if (isset($item_bundles[$paragraphs_entity
      ->bundle()])) {
      $bundle_info = $item_bundles[$paragraphs_entity
        ->bundle()];
      $element['top'] = array(
        '#type' => 'container',
        '#weight' => -1000,
        '#attributes' => array(
          'class' => array(
            'paragraph-type-top',
          ),
        ),
      );
      $element['top']['paragraph_type_title'] = array(
        '#type' => 'container',
        '#weight' => 0,
        '#attributes' => array(
          'class' => array(
            'paragraph-type-title',
          ),
        ),
      );
      $element['top']['paragraph_type_title']['info'] = array(
        '#markup' => $bundle_info['label'],
      );
      $actions = array();
      $links = array();

      // Avoid checking delete access for new entities.
      $delete_access = $paragraphs_entity
        ->isNew() || $paragraphs_entity
        ->access('delete');

      // Hide the button when translating.
      $button_access = $delete_access && !$this->isTranslating;
      if ($item_mode != 'remove') {
        $links['remove_button'] = [
          '#type' => 'submit',
          '#value' => $this
            ->t('Remove'),
          '#name' => strtr($id_prefix, '-', '_') . '_remove',
          '#weight' => 501,
          '#submit' => [
            [
              get_class($this),
              'paragraphsItemSubmit',
            ],
          ],
          '#limit_validation_errors' => [
            array_merge($parents, [
              $field_name,
              'add_more',
            ]),
          ],
          '#delta' => $delta,
          '#ajax' => [
            'callback' => [
              get_class($this),
              'itemAjax',
            ],
            'wrapper' => $widget_state['ajax_wrapper_id'],
            'effect' => 'fade',
          ],
          '#access' => $button_access,
          '#prefix' => '<li class="remove dropbutton__item  dropbutton__item--extrasmall">',
          '#suffix' => '</li>',
          '#paragraphs_mode' => 'remove',
          '#attributes' => [
            'class' => [
              'button--small',
            ],
          ],
        ];
      }
      if ($item_mode == 'edit') {
        if (isset($items[$delta]->entity) && ($default_edit_mode == 'preview' || $default_edit_mode == 'closed')) {
          $links['collapse_button'] = array(
            '#type' => 'submit',
            '#value' => $this
              ->t('Collapse'),
            '#name' => strtr($id_prefix, '-', '_') . '_collapse',
            '#weight' => 499,
            '#submit' => array(
              array(
                get_class($this),
                'paragraphsItemSubmit',
              ),
            ),
            '#delta' => $delta,
            '#limit_validation_errors' => [
              array_merge($parents, [
                $field_name,
                'add_more',
              ]),
            ],
            '#ajax' => array(
              'callback' => array(
                get_class($this),
                'itemAjax',
              ),
              'wrapper' => $widget_state['ajax_wrapper_id'],
              'effect' => 'fade',
            ),
            '#access' => $paragraphs_entity
              ->access('update'),
            '#prefix' => '<li class="collapse dropbutton__item  dropbutton__item--extrasmall">',
            '#suffix' => '</li>',
            '#paragraphs_mode' => 'collapsed',
            '#paragraphs_show_warning' => TRUE,
          );
        }
        $info['edit_button_info'] = array(
          '#type' => 'container',
          '#markup' => $this
            ->t('You are not allowed to edit this @title.', array(
            '@title' => $this
              ->getSetting('title'),
          )),
          '#attributes' => [
            'class' => [
              'messages',
              'messages--warning',
            ],
          ],
          '#access' => !$paragraphs_entity
            ->access('update') && $delete_access,
        );
        $info['remove_button_info'] = array(
          '#type' => 'container',
          '#markup' => $this
            ->t('You are not allowed to remove this @title.', array(
            '@title' => $this
              ->getSetting('title'),
          )),
          '#attributes' => [
            'class' => [
              'messages',
              'messages--warning',
            ],
          ],
          '#access' => !$delete_access && $paragraphs_entity
            ->access('update'),
        );
        $info['edit_remove_button_info'] = array(
          '#type' => 'container',
          '#markup' => $this
            ->t('You are not allowed to edit or remove this @title.', array(
            '@title' => $this
              ->getSetting('title'),
          )),
          '#attributes' => [
            'class' => [
              'messages',
              'messages--warning',
            ],
          ],
          '#access' => !$paragraphs_entity
            ->access('update') && !$delete_access,
        );
      }
      elseif ($item_mode == 'preview' || $item_mode == 'closed') {
        $links['edit_button'] = array(
          '#type' => 'submit',
          '#value' => $this
            ->t('Edit'),
          '#name' => strtr($id_prefix, '-', '_') . '_edit',
          '#weight' => 500,
          '#submit' => array(
            array(
              get_class($this),
              'paragraphsItemSubmit',
            ),
          ),
          '#limit_validation_errors' => array(
            array_merge($parents, array(
              $field_name,
              'add_more',
            )),
          ),
          '#delta' => $delta,
          '#ajax' => array(
            'callback' => array(
              get_class($this),
              'itemAjax',
            ),
            'wrapper' => $widget_state['ajax_wrapper_id'],
            'effect' => 'fade',
          ),
          '#access' => $paragraphs_entity
            ->access('update'),
          '#prefix' => '<li class="edit dropbutton__item  dropbutton__item--extrasmall">',
          '#suffix' => '</li>',
          '#paragraphs_mode' => 'edit',
        );
        if ($show_must_be_saved_warning) {
          $info['must_be_saved_info'] = array(
            '#type' => 'container',
            '#markup' => $this
              ->t('You have unsaved changes on this @title item.', array(
              '@title' => $this
                ->getSetting('title'),
            )),
            '#attributes' => [
              'class' => [
                'messages',
                'messages--warning',
              ],
            ],
          );
        }
        $info['preview_info'] = array(
          '#type' => 'container',
          '#markup' => $this
            ->t('You are not allowed to view this @title.', array(
            '@title' => $this
              ->getSetting('title'),
          )),
          '#attributes' => [
            'class' => [
              'messages',
              'messages--warning',
            ],
          ],
          '#access' => !$paragraphs_entity
            ->access('view'),
        );
        $info['edit_button_info'] = array(
          '#type' => 'container',
          '#markup' => $this
            ->t('You are not allowed to edit this @title.', array(
            '@title' => $this
              ->getSetting('title'),
          )),
          '#attributes' => [
            'class' => [
              'messages',
              'messages--warning',
            ],
          ],
          '#access' => !$paragraphs_entity
            ->access('update') && $delete_access,
        );
        $info['remove_button_info'] = array(
          '#type' => 'container',
          '#markup' => $this
            ->t('You are not allowed to remove this @title.', array(
            '@title' => $this
              ->getSetting('title'),
          )),
          '#attributes' => [
            'class' => [
              'messages',
              'messages--warning',
            ],
          ],
          '#access' => !$delete_access && $paragraphs_entity
            ->access('update'),
        );
        $info['edit_remove_button_info'] = array(
          '#type' => 'container',
          '#markup' => $this
            ->t('You are not allowed to edit or remove this @title.', array(
            '@title' => $this
              ->getSetting('title'),
          )),
          '#attributes' => [
            'class' => [
              'messages',
              'messages--warning',
            ],
          ],
          '#access' => !$paragraphs_entity
            ->access('update') && !$delete_access,
        );
      }
      elseif ($item_mode == 'remove') {
        $element['top']['paragraph_type_title']['info'] = [
          '#markup' => $this
            ->t('Deleted @title: %type', [
            '@title' => $this
              ->getSetting('title'),
            '%type' => $bundle_info['label'],
          ]),
        ];
        $links['confirm_remove_button'] = [
          '#type' => 'submit',
          '#value' => $this
            ->t('Confirm removal'),
          '#name' => strtr($id_prefix, '-', '_') . '_confirm_remove',
          '#weight' => 503,
          '#submit' => [
            [
              get_class($this),
              'paragraphsItemSubmit',
            ],
          ],
          '#limit_validation_errors' => [
            array_merge($parents, [
              $field_name,
              'add_more',
            ]),
          ],
          '#delta' => $delta,
          '#ajax' => [
            'callback' => [
              get_class($this),
              'itemAjax',
            ],
            'wrapper' => $widget_state['ajax_wrapper_id'],
            'effect' => 'fade',
          ],
          '#prefix' => '<li class="confirm-remove dropbutton__item  dropbutton__item--extrasmall">',
          '#suffix' => '</li>',
          '#paragraphs_mode' => 'removed',
        ];
        $links['restore_button'] = [
          '#type' => 'submit',
          '#value' => $this
            ->t('Restore'),
          '#name' => strtr($id_prefix, '-', '_') . '_restore',
          '#weight' => 504,
          '#submit' => [
            [
              get_class($this),
              'paragraphsItemSubmit',
            ],
          ],
          '#limit_validation_errors' => [
            array_merge($parents, [
              $field_name,
              'add_more',
            ]),
          ],
          '#delta' => $delta,
          '#ajax' => [
            'callback' => [
              get_class($this),
              'itemAjax',
            ],
            'wrapper' => $widget_state['ajax_wrapper_id'],
            'effect' => 'fade',
          ],
          '#prefix' => '<li class="restore dropbutton__item  dropbutton__item--extrasmall">',
          '#suffix' => '</li>',
          '#paragraphs_mode' => 'edit',
        ];
      }
      if (!empty($links)) {
        $show_links = 0;
        foreach ($links as $link_item) {
          if (!isset($link_item['#access']) || $link_item['#access']) {
            $show_links++;
          }
        }
        if ($show_links > 0) {
          $element['top']['links'] = $links;
          if ($show_links > 1) {
            $element['top']['links']['#theme_wrappers'] = array(
              'dropbutton_wrapper',
              'paragraphs_dropbutton_wrapper',
            );
            $element['top']['links']['prefix'] = array(
              '#markup' => '<ul class="dropbutton dropbutton--multiple dropbutton--extrasmall">',
              '#weight' => -999,
            );
            $element['top']['links']['suffix'] = array(
              '#markup' => '</li>',
              '#weight' => 999,
            );
          }
          else {
            $element['top']['links']['#theme_wrappers'] = array(
              'paragraphs_dropbutton_wrapper',
            );
            foreach ($links as $key => $link_item) {
              unset($element['top']['links'][$key]['#prefix']);
              unset($element['top']['links'][$key]['#suffix']);
            }
          }
          $element['top']['links']['#weight'] = 2;
        }
      }
      if (!empty($info)) {
        $show_info = FALSE;
        foreach ($info as $info_item) {
          if (!isset($info_item['#access']) || $info_item['#access']) {
            $show_info = TRUE;
            break;
          }
        }
        if ($show_info) {
          $element['info'] = $info;
          $element['info']['#weight'] = 998;
        }
      }
      if (!empty($actions)) {
        $show_actions = FALSE;
        foreach ($actions as $action_item) {
          if (!isset($action_item['#access']) || $action_item['#access']) {
            $show_actions = TRUE;
            break;
          }
        }
        if ($show_actions) {
          $element['actions'] = $actions;
          $element['actions']['#type'] = 'actions';
          $element['actions']['#weight'] = 999;
        }
      }
    }
    $display = EntityFormDisplay::collectRenderDisplay($paragraphs_entity, $this
      ->getSetting('form_display_mode'));

    // @todo Remove as part of https://www.drupal.org/node/2640056
    if (\Drupal::moduleHandler()
      ->moduleExists('field_group')) {
      $context = [
        'entity_type' => $paragraphs_entity
          ->getEntityTypeId(),
        'bundle' => $paragraphs_entity
          ->bundle(),
        'entity' => $paragraphs_entity,
        'context' => 'form',
        'display_context' => 'form',
        'mode' => $display
          ->getMode(),
      ];
      field_group_attach_groups($element['subform'], $context);
      if (method_exists(FormatterHelper::class, 'formProcess')) {
        $element['subform']['#process'][] = [
          FormatterHelper::class,
          'formProcess',
        ];
      }
      elseif (function_exists('field_group_form_pre_render')) {
        $element['subform']['#pre_render'][] = 'field_group_form_pre_render';
      }
      elseif (function_exists('field_group_form_process')) {
        $element['subform']['#process'][] = 'field_group_form_process';
      }
    }
    if ($item_mode == 'edit') {
      $display
        ->buildForm($paragraphs_entity, $element['subform'], $form_state);
      $hide_untranslatable_fields = $paragraphs_entity
        ->isDefaultTranslationAffectedOnly();
      foreach (Element::children($element['subform']) as $field) {
        if ($paragraphs_entity
          ->hasField($field)) {
          $field_definition = $paragraphs_entity
            ->getFieldDefinition($field);
          $translatable = $paragraphs_entity->{$field}
            ->getFieldDefinition()
            ->isTranslatable();

          // Do a check if we have to add a class to the form element. We need
          // those classes (paragraphs-content and paragraphs-behavior) to show
          // and hide elements, depending of the active perspective.
          // We need them to filter out entity reference revisions fields that
          // reference paragraphs, cause otherwise we have problems with showing
          // and hiding the right fields in nested paragraphs.
          $is_paragraph_field = FALSE;
          if ($field_definition
            ->getType() == 'entity_reference_revisions') {

            // Check if we are referencing paragraphs.
            if ($field_definition
              ->getSetting('target_type') == 'paragraph') {
              $is_paragraph_field = TRUE;
            }
          }

          // Hide untranslatable fields when configured to do so except
          // paragraph fields.
          if (!$translatable && $this->isTranslating && !$is_paragraph_field) {
            if ($hide_untranslatable_fields) {
              $element['subform'][$field]['#access'] = FALSE;
            }
            else {
              $element['subform'][$field]['widget']['#after_build'][] = [
                static::class,
                'addTranslatabilityClue',
              ];
            }
          }
        }
      }
    }
    elseif ($item_mode == 'preview') {
      $view_builder = $entity_type_manager
        ->getViewBuilder($paragraphs_entity
        ->getEntityTypeId());
      $element['subform'] = array();
      $element['behavior_plugins'] = [];
      $element['preview'] = $view_builder
        ->view($paragraphs_entity, 'preview', $paragraphs_entity
        ->language()
        ->getId());
      $element['preview']['#access'] = $paragraphs_entity
        ->access('view');
    }
    elseif ($item_mode == 'closed') {
      $element['subform'] = array();
      $element['behavior_plugins'] = [];
      if ($paragraphs_entity) {
        $element['top']['paragraph_summary']['fields_info'] = [
          '#theme' => 'paragraphs_summary',
          '#summary' => $paragraphs_entity
            ->getSummaryItems(),
        ];
      }
    }
    else {
      $element['subform'] = array();
    }
    $element['subform']['#attributes']['class'][] = 'paragraphs-subform';
    $element['subform']['#access'] = $paragraphs_entity
      ->access('update');
    if ($item_mode == 'removed') {
      $element['#access'] = FALSE;
    }
    $widget_state['paragraphs'][$delta]['entity'] = $paragraphs_entity;
    $widget_state['paragraphs'][$delta]['display'] = $display;
    $widget_state['paragraphs'][$delta]['mode'] = $item_mode;
    static::setWidgetState($parents, $field_name, $form_state, $widget_state);
  }
  else {
    $element['#access'] = FALSE;
  }
  return $element;
}