WebformLink.php in Webform 8.5
File
src/Element/WebformLink.php
View source
<?php
namespace Drupal\webform\Element;
class WebformLink extends WebformCompositeBase {
public function getInfo() {
return parent::getInfo() + [
'#theme' => 'webform_composite_link',
];
}
public static function getCompositeElements(array $element) {
$elements = [];
$elements['title'] = [
'#type' => 'textfield',
'#title' => t('Link Title'),
'#maxlength' => 255,
];
$elements['url'] = [
'#type' => 'url',
'#title' => t('Link URL'),
];
return $elements;
}
}