protected function WebformLink::formatHtmlItemValue in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformElement/WebformLink.php \Drupal\webform\Plugin\WebformElement\WebformLink::formatHtmlItemValue()
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 html.
Overrides WebformCompositeBase::formatHtmlItemValue
File
- src/
Plugin/ WebformElement/ WebformLink.php, line 40
Class
- WebformLink
- Provides a 'link' element.
Namespace
Drupal\webform\Plugin\WebformElementCode
protected function formatHtmlItemValue(array $element, WebformSubmissionInterface $webform_submission, array $options = []) {
$value = $this
->getValue($element, $webform_submission, $options);
return [
'link' => [
'#type' => 'link',
'#title' => $value['title'],
'#url' => \Drupal::pathValidator()
->getUrlIfValid($value['url']),
],
];
}