class WebformEntityReferenceLinkFormatter in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Plugin/Field/FieldFormatter/WebformEntityReferenceLinkFormatter.php \Drupal\webform\Plugin\Field\FieldFormatter\WebformEntityReferenceLinkFormatter
Plugin implementation of the 'Link to webform' formatter.
Plugin annotation
@FieldFormatter(
id = "webform_entity_reference_link",
label = @Translation("Link to form"),
description = @Translation("Display link to the referenced webform."),
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\WebformEntityReferenceLinkFormatter
- 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 WebformEntityReferenceLinkFormatter
File
- src/
Plugin/ Field/ FieldFormatter/ WebformEntityReferenceLinkFormatter.php, line 25
Namespace
Drupal\webform\Plugin\Field\FieldFormatterView source
class WebformEntityReferenceLinkFormatter extends WebformEntityReferenceFormatterBase {
/**
* The config factory.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/**
* The webform message manager.
*
* @var \Drupal\webform\WebformMessageManagerInterface
*/
protected $messageManager;
/**
* The webform token manager.
*
* @var \Drupal\webform\WebformTokenManagerInterface
*/
protected $tokenManager;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
$instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
$instance->messageManager = $container
->get('webform.message_manager');
$instance->tokenManager = $container
->get('webform.token_manager');
return $instance;
}
/**
* {@inheritdoc}
*/
public static function defaultSettings() {
return [
'label' => 'Go to [webform:title] webform',
'dialog' => '',
'attributes' => [],
] + parent::defaultSettings();
}
/**
* {@inheritdoc}
*/
public function settingsSummary() {
$summary = parent::settingsSummary();
$summary[] = $this
->t('Label: @label', [
'@label' => $this
->getSetting('label'),
]);
$dialog_option_name = $this
->getSetting('dialog');
if ($dialog_option = $this->configFactory
->get('webform.settings')
->get('settings.dialog_options.' . $dialog_option_name)) {
$summary[] = $this
->t('Dialog: @dialog', [
'@dialog' => isset($dialog_option['title']) ? $dialog_option['title'] : $dialog_option_name,
]);
}
return $summary;
}
/**
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state) {
$form = parent::settingsForm($form, $form_state);
if ($this->fieldDefinition
->getTargetEntityTypeId() === 'paragraph') {
$form['message'] = [
'#type' => 'webform_message',
'#message_type' => 'warning',
'#message_message' => $this
->t("This paragraph field's main entity will be used as the webform submission's source entity."),
'#message_close' => TRUE,
'#message_storage' => WebformMessage::STORAGE_SESSION,
];
}
$form['label'] = [
'#title' => $this
->t('Label'),
'#type' => 'textfield',
'#default_value' => $this
->getSetting('label'),
'#required' => TRUE,
];
$dialog_options = $this->configFactory
->get('webform.settings')
->get('settings.dialog_options');
if ($dialog_options) {
$options = [];
foreach ($dialog_options as $dialog_option_name => $dialog_option) {
$options[$dialog_option_name] = isset($dialog_option['title']) ? $dialog_option['title'] : $dialog_option_name;
}
$form['dialog'] = [
'#title' => $this
->t('Dialog'),
'#type' => 'select',
'#empty_option' => $this
->t('- Select dialog -'),
'#default_value' => $this
->getSetting('dialog'),
'#options' => $options,
];
$form['attributes'] = [
'#type' => 'webform_element_attributes',
'#title' => $this
->t('Link'),
'#default_value' => $this
->getSetting('attributes'),
];
}
return $form;
}
/**
* {@inheritdoc}
*/
public function viewElements(FieldItemListInterface $items, $langcode) {
$source_entity = $items
->getEntity();
$this->messageManager
->setSourceEntity($source_entity);
$elements = [];
/** @var \Drupal\webform\WebformInterface[] $entities */
$entities = $this
->getEntitiesToView($items, $langcode);
foreach ($entities as $delta => $entity) {
// Do not display the webform if the current user can't create submissions.
if ($entity
->id() && !$entity
->access('submission_create')) {
continue;
}
if ($entity
->isOpen()) {
$link_label = $this
->getSetting('label');
if (strpos($link_label, '[webform_submission') !== FALSE) {
$link_entity = WebformSubmission::create([
'webform_id' => $entity
->id(),
'entity_type' => $source_entity
->getEntityTypeId(),
'entity_id' => $source_entity
->id(),
]);
// Invoke override settings to all webform handlers to adjust any
// form settings.
$link_entity
->getWebform()
->invokeHandlers('overrideSettings', $link_entity);
}
else {
$link_entity = $entity;
}
$link_options = QueryStringWebformSourceEntity::getRouteOptionsQuery($source_entity);
$link = [
'#type' => 'link',
'#title' => [
'#markup' => $this->tokenManager
->replace($link_label, $link_entity),
],
'#url' => $entity
->toUrl('canonical', $link_options),
'#attributes' => $this
->getSetting('attributes') ?: [],
];
if ($dialog = $this
->getSetting('dialog')) {
$link['#attributes']['class'][] = 'webform-dialog';
$link['#attributes']['class'][] = 'webform-dialog-' . $dialog;
// Attach webform dialog library and options if they are not
// on every page.
if (!\Drupal::config('webform.settings')
->get('settings.dialog')) {
$link['#attached']['library'][] = 'webform/webform.dialog';
$link['#attached']['drupalSettings']['webform']['dialog']['options'] = \Drupal::config('webform.settings')
->get('settings.dialog_options');
}
}
$elements[$delta] = $link;
}
else {
$this->messageManager
->setWebform($entity);
$message_type = $entity
->isOpening() ? WebformMessageManagerInterface::FORM_OPEN_MESSAGE : WebformMessageManagerInterface::FORM_CLOSE_MESSAGE;
$elements[$delta] = $this->messageManager
->build($message_type);
}
$this
->setCacheContext($elements[$delta], $entity, $items[$delta]);
}
return $elements;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
EntityReferenceFormatterBase:: |
protected | function | Checks access to the given entity. | 3 |
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. | |
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. | |
WebformEntityReferenceLinkFormatter:: |
protected | property |
The config factory. Overrides WebformEntityReferenceFormatterBase:: |
|
WebformEntityReferenceLinkFormatter:: |
protected | property | The webform message manager. | |
WebformEntityReferenceLinkFormatter:: |
protected | property | The webform token manager. | |
WebformEntityReferenceLinkFormatter:: |
public static | function |
Creates an instance of the plugin. Overrides WebformEntityReferenceFormatterBase:: |
|
WebformEntityReferenceLinkFormatter:: |
public static | function |
Defines the default settings for this plugin. Overrides PluginSettingsBase:: |
|
WebformEntityReferenceLinkFormatter:: |
public | function |
Returns a form to configure settings for the formatter. Overrides FormatterBase:: |
|
WebformEntityReferenceLinkFormatter:: |
public | function |
Returns a short summary for the current formatter settings. Overrides FormatterBase:: |
|
WebformEntityReferenceLinkFormatter:: |
public | function |
Builds a renderable array for a field value. Overrides FormatterInterface:: |