
| Current Path : /var/www/html/c12park/web/modules/contrib/webform/src/Plugin/WebformElement/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/c12park/web/modules/contrib/webform/src/Plugin/WebformElement/WebformAddress.php |
<?php
namespace Drupal\webform\Plugin\WebformElement;
use Drupal\webform\WebformSubmissionInterface;
/**
* Provides an 'address' element.
*
* @WebformElement(
* id = "webform_address",
* label = @Translation("Address"),
* description = @Translation("Provides a form element to collect address information (street, city, state, zip)."),
* category = @Translation("Composite elements"),
* multiline = TRUE,
* composite = TRUE,
* states_wrapper = TRUE,
* )
*/
class WebformAddress extends WebformCompositeBase {
/**
* {@inheritdoc}
*/
public function getPluginLabel() {
return $this->moduleHandler->moduleExists('address') ? $this->t('Basic address') : parent::getPluginLabel();
}
/**
* {@inheritdoc}
*/
protected function formatHtmlItemValue(array $element, WebformSubmissionInterface $webform_submission, array $options = []) {
return $this->formatTextItemValue($element, $webform_submission, $options);
}
/**
* {@inheritdoc}
*/
protected function formatTextItemValue(array $element, WebformSubmissionInterface $webform_submission, array $options = []) {
$value = $this->getValue($element, $webform_submission, $options);
$location = '';
if (!empty($value['city'])) {
$location .= $value['city'];
}
if (!empty($value['state_province'])) {
$location .= ($location) ? ', ' : '';
$location .= $value['state_province'];
}
if (!empty($value['postal_code'])) {
$location .= ($location) ? '. ' : '';
$location .= $value['postal_code'];
}
$lines = [];
if (!empty($value['address'])) {
$lines['address'] = $value['address'];
}
if (!empty($value['address_2'])) {
$lines['address_2'] = $value['address_2'];
}
if ($location) {
$lines['location'] = $location;
}
if (!empty($value['country'])) {
$lines['country'] = $value['country'];
}
return $lines;
}
}