class WebformEntityReferenceEntityFormatter in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Plugin/Field/FieldFormatter/WebformEntityReferenceEntityFormatter.php \Drupal\webform\Plugin\Field\FieldFormatter\WebformEntityReferenceEntityFormatter
Plugin implementation of the 'Webform rendered entity' formatter.
Plugin annotation
@FieldFormatter(
id = "webform_entity_reference_entity_view",
label = @Translation("Webform"),
description = @Translation("Display the referenced webform with default submission data."),
field_types = {
"webform"
}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\Core\Field\PluginSettingsBase implements DependentPluginInterface, PluginSettingsInterface
- class \Drupal\Core\Field\FormatterBase implements FormatterInterface, ContainerFactoryPluginInterface
- class \Drupal\Core\Field\Plugin\Field\FieldFormatter\EntityReferenceFormatterBase
- class \Drupal\webform\Plugin\Field\FieldFormatter\WebformEntityReferenceFormatterBase implements ContainerFactoryPluginInterface
- class \Drupal\webform\Plugin\Field\FieldFormatter\WebformEntityReferenceEntityFormatter
- class \Drupal\webform\Plugin\Field\FieldFormatter\WebformEntityReferenceFormatterBase implements ContainerFactoryPluginInterface
- class \Drupal\Core\Field\Plugin\Field\FieldFormatter\EntityReferenceFormatterBase
- class \Drupal\Core\Field\FormatterBase implements FormatterInterface, ContainerFactoryPluginInterface
- class \Drupal\Core\Field\PluginSettingsBase implements DependentPluginInterface, PluginSettingsInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of WebformEntityReferenceEntityFormatter
File
- src/
Plugin/ Field/ FieldFormatter/ WebformEntityReferenceEntityFormatter.php, line 25
Namespace
Drupal\webform\Plugin\Field\FieldFormatterView source
class WebformEntityReferenceEntityFormatter extends WebformEntityReferenceFormatterBase {
/**
* The route match.
*
* @var \Drupal\Core\Routing\RouteMatchInterface
*/
protected $routeMatch;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The webform message manager.
*
* @var \Drupal\webform\WebformMessageManagerInterface
*/
protected $messageManager;
/**
* Webform request handler.
*
* @var \Drupal\webform\WebformRequestInterface
*/
protected $requestHandler;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
$instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
$instance->routeMatch = $container
->get('current_route_match');
$instance->entityTypeManager = $container
->get('entity_type.manager');
$instance->messageManager = $container
->get('webform.message_manager');
$instance->requestHandler = $container
->get('webform.request');
return $instance;
}
/**
* {@inheritdoc}
*/
public static function defaultSettings() {
return [
'source_entity' => TRUE,
] + parent::defaultSettings();
}
/**
* {@inheritdoc}
*/
public function settingsSummary() {
$summary = parent::settingsSummary();
$summary[] = $this
->t('Set submission source entity: @source_entity', [
'@source_entity' => $this
->getSetting('source_entity') ? $this
->t('Yes') : $this
->t('No'),
]);
return $summary;
}
/**
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state) {
if ($this->fieldDefinition
->getTargetEntityTypeId() === 'paragraph') {
$title = $this
->t("Use this paragraph field's main entity as the webform submission's source entity.");
$description = $this
->t("If unchecked, the current page's entity will be used as the webform submission's source entity.");
}
else {
$entity_type_definition = $this->entityTypeManager
->getDefinition($this->fieldDefinition
->getTargetEntityTypeId());
$title = $this
->t("Use this field's %entity_type entity as the webform submission's source entity.", [
'%entity_type' => $entity_type_definition
->getLabel(),
]);
$description = $this
->t("If unchecked, the current page's entity will be used as the webform submission's source entity. For example, if this webform was displayed on a node's page, the current node would be used as the webform submission's source entity.", [
'%entity_type' => $entity_type_definition
->getLabel(),
]);
}
$form = parent::settingsForm($form, $form_state);
$form['source_entity'] = [
'#title' => $title,
'#description' => $description,
'#type' => 'checkbox',
'#return_type' => TRUE,
'#default_value' => $this
->getSetting('source_entity'),
];
return $form;
}
/**
* {@inheritdoc}
*/
public function viewElements(FieldItemListInterface $items, $langcode) {
// Get items entity, which is the entity that the webform
// is directly attached to. For Paragraphs this would be the field's
// paragraph entity.
$items_entity = $items
->getEntity();
// Get the items main entity. For Paragraphs this would be the parent entity
// of the the paragraph field.
$items_main_entity = WebformSourceEntityManager::getMainSourceEntity($items_entity);
$request_source_entity = $this->requestHandler
->getCurrentSourceEntity();
// Determine if webform is previewed within a Paragraph on
// entity edit forms (via *.edit_form or .content_translation_add routes).
$route_name = $this->routeMatch
->getRouteName();
$is_entity_edit_form = preg_match('/\\.edit_form$/', $route_name) || preg_match('/\\.content_translation_add$/', $route_name) || in_array($route_name, [
'entity.block_content.canonical',
]);
// Same goes for entity add forms.
$is_entity_add_form = preg_match('/\\.add$/', $route_name);
$is_paragraph = $items_entity && $items_entity
->getEntityTypeId() === 'paragraph';
$is_paragraph_current_source_entity = $items_main_entity && $request_source_entity && $items_main_entity
->getEntityTypeId() === $request_source_entity
->getEntityTypeId() && $items_main_entity
->id() === $request_source_entity
->id();
$is_paragraph_entity_edit_form = $is_entity_edit_form && $is_paragraph && $is_paragraph_current_source_entity;
$is_paragraph_entity_add_form = $is_entity_add_form && $is_paragraph;
$elements = [];
foreach ($this
->getEntitiesToView($items, $langcode) as $delta => $entity) {
if ($is_paragraph_entity_edit_form || $is_paragraph_entity_add_form) {
// Webform can not be nested within node edit form because the nested
// <form> tags will cause unexpected validation issues.
$elements[$delta] = [
'#type' => 'webform_message',
'#message_message' => $this
->t('%label webform can not be previewed when editing content.', [
'%label' => $entity
->label(),
]),
'#message_type' => 'info',
];
}
else {
$elements[$delta] = [
'#type' => 'webform',
'#webform' => $entity,
'#default_data' => !empty($items[$delta]->default_data) ? Yaml::decode($items[$delta]->default_data) : [],
'#entity' => $this
->getSetting('source_entity') ? $items_entity : NULL,
];
}
$this
->setCacheContext($elements[$delta], $entity, $items[$delta]);
}
return $elements;
}
/**
* {@inheritdoc}
*/
protected function checkAccess(EntityInterface $entity) {
// Always allow access so that the Webform element can determine if the
// Webform is accessible or an access denied message should be displayed.
// @see \Drupal\webform\Element\Webform
return AccessResult::allowed();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
EntityReferenceFormatterBase:: |
protected | function | Returns whether the entity referenced by an item needs to be loaded. | 1 |
EntityReferenceFormatterBase:: |
public | function |
Loads the entities referenced in that field across all the entities being
viewed. Overrides FormatterBase:: |
|
EntityReferenceFormatterBase:: |
public | function |
Overrides FormatterBase:: |
|
FormatterBase:: |
protected | property | The field definition. | |
FormatterBase:: |
protected | property | The label display setting. | |
FormatterBase:: |
protected | property |
The formatter settings. Overrides PluginSettingsBase:: |
|
FormatterBase:: |
protected | property | The view mode. | |
FormatterBase:: |
protected | function | Returns the value of a field setting. | |
FormatterBase:: |
protected | function | Returns the array of field settings. | |
FormatterBase:: |
public static | function |
Returns if the formatter can be used for the provided field. Overrides FormatterInterface:: |
14 |
FormatterBase:: |
public | function |
Constructs a FormatterBase object. Overrides PluginBase:: |
12 |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginSettingsBase:: |
protected | property | Whether default settings have been merged into the current $settings. | |
PluginSettingsBase:: |
protected | property | The plugin settings injected by third party modules. | |
PluginSettingsBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
6 |
PluginSettingsBase:: |
public | function |
Returns the value of a setting, or its default value if absent. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Returns the array of settings, including defaults for missing settings. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Gets the list of third parties that store information. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Gets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Gets all third-party settings of a given module. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
protected | function | Merges default settings values into $settings. | |
PluginSettingsBase:: |
public | function |
Informs the plugin that some configuration it depends on will be deleted. Overrides PluginSettingsInterface:: |
3 |
PluginSettingsBase:: |
public | function |
Sets the value of a setting for the plugin. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Sets the settings for the plugin. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Sets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Unsets a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
WebformEntityReferenceEntityFormatter:: |
protected | property | The entity type manager. | |
WebformEntityReferenceEntityFormatter:: |
protected | property | The webform message manager. | |
WebformEntityReferenceEntityFormatter:: |
protected | property | Webform request handler. | |
WebformEntityReferenceEntityFormatter:: |
protected | property | The route match. | |
WebformEntityReferenceEntityFormatter:: |
protected | function |
Checks access to the given entity. Overrides EntityReferenceFormatterBase:: |
|
WebformEntityReferenceEntityFormatter:: |
public static | function |
Creates an instance of the plugin. Overrides WebformEntityReferenceFormatterBase:: |
|
WebformEntityReferenceEntityFormatter:: |
public static | function |
Defines the default settings for this plugin. Overrides PluginSettingsBase:: |
|
WebformEntityReferenceEntityFormatter:: |
public | function |
Returns a form to configure settings for the formatter. Overrides FormatterBase:: |
|
WebformEntityReferenceEntityFormatter:: |
public | function |
Returns a short summary for the current formatter settings. Overrides FormatterBase:: |
|
WebformEntityReferenceEntityFormatter:: |
public | function |
Builds a renderable array for a field value. Overrides FormatterInterface:: |
|
WebformEntityReferenceFormatterBase:: |
protected | property | The config factory. | 1 |
WebformEntityReferenceFormatterBase:: |
protected | property | The renderer. | |
WebformEntityReferenceFormatterBase:: |
protected | property | The time service. | |
WebformEntityReferenceFormatterBase:: |
protected | function |
Returns the referenced entities for display. Overrides EntityReferenceFormatterBase:: |
|
WebformEntityReferenceFormatterBase:: |
protected | function | Set cache context. |