public function ParagraphsConversionInterface::buildConversionForm

Builds a conversion form to add extra settings to the conversion.

This method is responsible for building the conversion form for each Paragraph so the user can set special attributes and properties.

Parameters

\Drupal\paragraphs\ParagraphInterface $paragraph: The paragraph.

array $form: An associative array containing the initial structure of the plugin form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The fields build array that the plugin creates.

1 method overrides ParagraphsConversionInterface::buildConversionForm()
ParagraphsConversionBase::buildConversionForm in paragraphs/src/ParagraphsConversionBase.php
Builds a conversion form to add extra settings to the conversion.

File

paragraphs/src/ParagraphsConversionInterface.php, line 34

Class

ParagraphsConversionInterface
Provides an interface defining a paragraph behavior.

Namespace

Drupal\paragraphs

Code

public function buildConversionForm(ParagraphInterface $paragraph, array &$form, FormStateInterface $form_state);