You are here

protected function WebformLink::formatTextItemValue in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/WebformLink.php \Drupal\webform\Plugin\WebformElement\WebformLink::formatTextItemValue()

Format composite element value into lines of text.

Parameters

array $element: An element.

\Drupal\webform\WebformSubmissionInterface $webform_submission: A webform submission.

array $options: An array of options.

Return value

array Composite element values converted into lines of text.

Overrides WebformCompositeBase::formatTextItemValue

File

src/Plugin/WebformElement/WebformLink.php, line 72

Class

WebformLink
Provides a 'link' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

protected function formatTextItemValue(array $element, WebformSubmissionInterface $webform_submission, array $options = []) {
  $value = $this
    ->getValue($element, $webform_submission, $options);
  return [
    'link' => new FormattableMarkup('@title (@url)', [
      '@title' => $value['title'],
      '@url' => $value['url'],
    ]),
  ];
}