protected function ParagraphsTestBaseTrait::addParagraphsField in Paragraphs 8
Adds a Paragraphs field to a given entity type.
Parameters
string $bundle: bundle to be used.
string $paragraphs_field_name: Paragraphs field name to be used.
string $entity_type: Entity type where to add the field.
string $widget_type: (optional) Declares if we use stable or legacy widget. Defaults to 'paragraphs' for stable widget. Use 'entity_reference_paragraphs' for legacy widget.
15 calls to ParagraphsTestBaseTrait::addParagraphsField()
- ParagraphsAccessTest::setUp in tests/
src/ Functional/ WidgetStable/ ParagraphsAccessTest.php - ParagraphsAddWidgetTest::testAddWidgetButton in tests/
src/ FunctionalJavascript/ ParagraphsAddWidgetTest.php - Tests the add widget button with modal form.
- ParagraphsBehaviorsTest::testCollapsedSummary in tests/
src/ Functional/ WidgetStable/ ParagraphsBehaviorsTest.php - Tests the behavior plugins summary for paragraphs closed mode.
- ParagraphsContactTest::testContactForm in tests/
src/ Functional/ WidgetStable/ ParagraphsContactTest.php - Tests adding paragraphs in contact forms.
- ParagraphsContentModerationTranslationsTest::setUp in tests/
src/ Functional/ WidgetStable/ ParagraphsContentModerationTranslationsTest.php
File
- tests/
src/ FunctionalJavascript/ ParagraphsTestBaseTrait.php, line 65
Class
- ParagraphsTestBaseTrait
- Test trait for Paragraphs JS tests.
Namespace
Drupal\Tests\paragraphs\FunctionalJavascriptCode
protected function addParagraphsField($bundle, $paragraphs_field_name, $entity_type, $widget_type = 'paragraphs') {
$field_storage = FieldStorageConfig::loadByName($entity_type, $paragraphs_field_name);
if (!$field_storage) {
// Add a paragraphs field.
$field_storage = FieldStorageConfig::create([
'field_name' => $paragraphs_field_name,
'entity_type' => $entity_type,
'type' => 'entity_reference_revisions',
'cardinality' => '-1',
'settings' => [
'target_type' => 'paragraph',
],
]);
$field_storage
->save();
}
$field = FieldConfig::create([
'field_storage' => $field_storage,
'bundle' => $bundle,
'settings' => [
'handler' => 'default:paragraph',
'handler_settings' => [
'target_bundles' => NULL,
],
],
]);
$field
->save();
$form_display = \Drupal::service('entity_display.repository')
->getFormDisplay($entity_type, $bundle);
$form_display = $form_display
->setComponent($paragraphs_field_name, [
'type' => $widget_type,
]);
$form_display
->save();
$view_display = \Drupal::service('entity_display.repository')
->getViewDisplay($entity_type, $bundle);
$view_display
->setComponent($paragraphs_field_name, [
'type' => 'entity_reference_revisions_entity_view',
]);
$view_display
->save();
}