class Paragraphs

Same name in this branch
  1. 8.x-1.x paragraphs/src/Feeds/Target/Paragraphs.php \Drupal\paragraphs\Feeds\Target\Paragraphs
  2. 8.x-1.x paragraphs/src/Plugin/migrate/field/Paragraphs.php \Drupal\paragraphs\Plugin\migrate\field\Paragraphs

Feeds target plugin for Paragraphs fields.

Plugin annotation


@FeedsTarget(
  id = "paragraphs",
  field_types = {"entity_reference_revisions"},
  arguments = {"@entity_type.manager", "@current_user"}
)

Hierarchy

  • class \Drupal\paragraphs\Feeds\Target\Paragraphs extends \Drupal\feeds\Feeds\Target\Text implements \Drupal\feeds\Plugin\Type\Target\ConfigurableTargetInterface

Expanded class hierarchy of Paragraphs

40 string references to 'Paragraphs'
core.entity_form_display.node.paragraphed_content_demo.default.yml in paragraphs_collection/modules/paragraphs_collection_demo/config/install/core.entity_form_display.node.paragraphed_content_demo.default.yml
paragraphs_collection/modules/paragraphs_collection_demo/config/install/core.entity_form_display.node.paragraphed_content_demo.default.yml
core.entity_form_display.node.paragraphed_content_demo.default.yml in paragraphs/modules/paragraphs_demo/config/install/core.entity_form_display.node.paragraphed_content_demo.default.yml
paragraphs/modules/paragraphs_demo/config/install/core.entity_form_display.node.paragraphed_content_demo.default.yml
core.entity_form_display.paragraph.accordion.default.yml in paragraphs_collection/modules/paragraphs_collection_demo/config/install/core.entity_form_display.paragraph.accordion.default.yml
paragraphs_collection/modules/paragraphs_collection_demo/config/install/core.entity_form_display.paragraph.accordion.default.yml
core.entity_form_display.paragraph.container.default.yml in paragraphs_collection/config/install/core.entity_form_display.paragraph.container.default.yml
paragraphs_collection/config/install/core.entity_form_display.paragraph.container.default.yml
core.entity_form_display.paragraph.grid.default.yml in paragraphs_collection/config/install/core.entity_form_display.paragraph.grid.default.yml
paragraphs_collection/config/install/core.entity_form_display.paragraph.grid.default.yml

... See full list

File

paragraphs/src/Feeds/Target/Paragraphs.php, line 21

Namespace

Drupal\paragraphs\Feeds\Target
View source
class Paragraphs extends Text implements ConfigurableTargetInterface {

  /**
   * The paragraph storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $paragraphStorage;

  /**
   * The paragraphs type storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $paragraphsTypeStorage;

  /**
   * The field config storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $fieldConfigStorage;

  /**
   * Constructs the target plugin.
   */
  public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityTypeManagerInterface $entity_type_manager, AccountInterface $current_user) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $current_user);
    $this->paragraphStorage = $entity_type_manager
      ->getStorage('paragraph');
    $this->paragraphsTypeStorage = $entity_type_manager
      ->getStorage('paragraphs_type');
    $this->fieldConfigStorage = $entity_type_manager
      ->getStorage('field_config');
  }

  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return parent::defaultConfiguration() + [
      'paragraphs_type' => NULL,
      'paragraph_field' => NULL,
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $form['paragraphs_type'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Paragraphs type'),
      '#required' => TRUE,
      '#options' => array_map(function (EntityInterface $paragraphs_type) {
        return $paragraphs_type
          ->label();
      }, $this->paragraphsTypeStorage
        ->loadMultiple()),
      '#default_value' => $this->configuration['paragraphs_type'],
    ];

    // Load and filter field configs to create options.

    /** @var \Drupal\field\FieldConfigInterface[] $field_configs */
    $field_configs = $this->fieldConfigStorage
      ->loadByProperties([
      'entity_type' => 'paragraph',
      'bundle' => $this->configuration['paragraphs_type'],
    ]);
    $field_options = [];
    foreach ($field_configs as $field_config) {
      if (in_array($field_config
        ->getType(), [
        'text',
        'text_long',
        'text_with_summary',
      ])) {
        $field_options[$field_config
          ->getName()] = $field_config
          ->label();
      }
    }
    $form['paragraph_field'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Paragraph field'),
      '#description' => $this
        ->t('<strong>Note:</strong> Field options do not appear until a type has been chosen and saved.'),
      '#options' => $field_options,
    ];
    $form = parent::buildConfigurationForm($form, $form_state);
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function getSummary() {
    $summary = $this
      ->t('Not yet configured.');
    $paragraphs_type_id = $this->configuration['paragraphs_type'];
    $paragraph_field_name = $this->configuration['paragraph_field'];
    if ($paragraphs_type_id && ($paragraphs_type = $this->paragraphsTypeStorage
      ->load($paragraphs_type_id))) {
      if ($paragraph_field_name && ($paragraph_field = $this->fieldConfigStorage
        ->load('paragraph.' . $paragraphs_type_id . '.' . $paragraph_field_name))) {
        $summary = $this
          ->t('Using the %field field on a %type paragraph.', [
          '%field' => $paragraph_field
            ->label(),
          '%type' => $paragraphs_type
            ->label(),
        ]);
      }
    }
    return $summary . '<br>' . parent::getSummary();
  }

  /**
   * {@inheritdoc}
   */
  protected function prepareValue($delta, array &$values) {
    parent::prepareValue($delta, $values);
    $paragraph = $this->paragraphStorage
      ->create([
      'type' => $this->configuration['paragraphs_type'],
      $this->configuration['paragraph_field'] => $values,
    ]);
    $values = [
      'entity' => $paragraph,
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Paragraphs::$fieldConfigStorage protected property The field config storage.
Paragraphs::$paragraphStorage protected property The paragraph storage.
Paragraphs::$paragraphsTypeStorage protected property The paragraphs type storage.
Paragraphs::buildConfigurationForm public function
Paragraphs::defaultConfiguration public function
Paragraphs::getSummary public function
Paragraphs::prepareValue protected function
Paragraphs::__construct public function Constructs the target plugin.