public function ParagraphsTestTextToTextImage::submitConversion

File

paragraphs/tests/modules/paragraphs_test/src/Plugin/paragraphs/Conversion/ParagraphsTestTextToTextImage.php, line 23

Class

ParagraphsTestTextToTextImage
Provides a Paragraphs conversion plugin.

Namespace

Drupal\paragraphs_test\Plugin\paragraphs\Conversion

Code

public function submitConversion(array $settings, ParagraphInterface $original_paragraph, array $converted_paragraphs = NULL) {
  $text = $original_paragraph
    ->get('field_text_demo')->value;
  return [
    [
      'type' => 'text_image',
      'field_text_demo' => [
        'value' => $text,
      ],
    ],
  ];
}