Url.php in Webform 6.x
File
src/Plugin/WebformElement/Url.php
View source
<?php
namespace Drupal\webform\Plugin\WebformElement;
use Drupal\webform\WebformSubmissionInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class Url extends TextBase {
protected $pathValidator;
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
$instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
$instance->pathValidator = $container
->get('path.validator');
return $instance;
}
protected function defineDefaultProperties() {
return [
'input_hide' => FALSE,
] + parent::defineDefaultProperties() + $this
->defineDefaultMultipleProperties();
}
protected function formatHtmlItem(array $element, WebformSubmissionInterface $webform_submission, array $options = []) {
$value = $this
->getValue($element, $webform_submission, $options);
if (empty($value)) {
return '';
}
$format = $this
->getItemFormat($element);
switch ($format) {
case 'link':
return [
'#type' => 'link',
'#title' => $value,
'#url' => $this->pathValidator
->getUrlIfValid($value),
];
default:
return parent::formatHtmlItem($element, $webform_submission, $options);
}
}
public function getItemDefaultFormat() {
return 'link';
}
public function getItemFormats() {
return parent::getItemFormats() + [
'link' => $this
->t('Link'),
];
}
}
Classes
Name |
Description |
Url |
Provides a 'url' element. |