paragraphs_collection-8.x-1.x-dev/modules/paragraphs_collection_demo/src/Plugin/paragraphs/Behavior/ParagraphsBackgroundPlugin.php
modules/paragraphs_collection_demo/src/Plugin/paragraphs/Behavior/ParagraphsBackgroundPlugin.php
<?php
namespace Drupal\paragraphs_collection_demo\Plugin\paragraphs\Behavior;
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Render\Element;
use Drupal\Core\Url;
use Drupal\paragraphs\Entity\Paragraph;
use Drupal\paragraphs\ParagraphsBehaviorBase;
/**
* Provides a background image feature plugin.
*
* @ParagraphsBehavior(
* id = "background",
* label = @Translation("Background"),
* description = @Translation("Image to be used as background for the paragraph."),
* weight = 3
* )
*/
class ParagraphsBackgroundPlugin extends ParagraphsBehaviorBase implements ContainerFactoryPluginInterface {
/**
* {@inheritdoc}
*/
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;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
if (!$form_state->getValue('background_image_field')) {
$form_state->setErrorByName('message', $this->t('The Background plugin cannot be enabled without an image field.'));
}
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this->configuration['background_image_field'] = $form_state->getValue('background_image_field');
}
/**
* {@inheritdoc}
*/
public function view(array &$build, Paragraph $paragraphs_entity, EntityViewDisplayInterface $display, $view_mode) {
$build['#attributes']['class'][] = 'paragraphs-behavior-background';
$build['#attached']['library'][] = 'paragraphs_collection_demo/background';
foreach (Element::children($build) as $field) {
if ($field == $this->configuration['background_image_field']) {
// Put the selected field into the background.
$build[$field]['#attributes']['class'][] = 'paragraphs-behavior-background--image';
}
else {
// Identify all other elements to put them on top of the background.
$build[$field]['#attributes']['class'][] = 'paragraphs-behavior-background--element';
}
}
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'background_image_field' => '',
];
}
}
