public function ParagraphsBackgroundPlugin::buildConfigurationForm in Paragraphs Collection 8
Form constructor.
Plugin forms are embedded in other forms. In order to know where the plugin form is located in the parent form, #parents and #array_parents must be known, but these are not available during the initial build phase. In order to have these properties available when building the plugin form's elements, let this method return a form element that has a #process callback and build the rest of the form in the callback. By the time the callback is executed, the element's #parents and #array_parents properties will have been set by the form API. For more documentation on #parents and #array_parents, see \Drupal\Core\Render\Element\FormElement.
Parameters
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. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().
Return value
array The form structure.
Overrides ParagraphsBehaviorBase::buildConfigurationForm
File
- modules/
paragraphs_collection_demo/ src/ Plugin/ paragraphs/ Behavior/ ParagraphsBackgroundPlugin.php, line 28
Class
- ParagraphsBackgroundPlugin
- Provides a background image feature plugin.
Namespace
Drupal\paragraphs_collection_demo\Plugin\paragraphs\BehaviorCode
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$paragraphs_type = $form_state
->getFormObject()
->getEntity();
if ($paragraphs_type
->isNew()) {
return [];
}
$image_field_options = $this
->getFieldNameOptions($paragraphs_type, 'image');
// Show Image select form only if this entity has at least one image field.
if (count($image_field_options) > 0) {
$form['background_image_field'] = [
'#type' => 'select',
'#title' => $this
->t('Background field'),
'#description' => $this
->t('Image field to be used as background.'),
'#options' => $image_field_options,
'#empty_value' => '',
'#default_value' => count($image_field_options) == 1 ? key($image_field_options) : $this->configuration['background_image_field'],
];
}
else {
$form['message'] = [
'#type' => 'container',
'#markup' => $this
->t('No image field type available. Please add at least one in the <a href=":link">Manage fields</a> page.', [
':link' => Url::fromRoute("entity.{$paragraphs_type->getEntityType()->getBundleOf()}.field_ui_fields", [
$paragraphs_type
->getEntityTypeId() => $paragraphs_type
->id(),
])
->toString(),
]),
'#attributes' => [
'class' => [
'messages messages--error',
],
],
];
}
return $form;
}