YamlFormContact.php in YAML Form 8
File
src/Element/YamlFormContact.php
View source
<?php
namespace Drupal\yamlform\Element;
class YamlFormContact extends YamlFormAddress {
public static function getCompositeElements() {
$elements = [];
$elements['name'] = [
'#type' => 'textfield',
'#title' => t('Name'),
];
$elements['company'] = [
'#type' => 'textfield',
'#title' => t('Company'),
];
$elements['email'] = [
'#type' => 'email',
'#title' => t('Email'),
];
$elements['phone'] = [
'#type' => 'tel',
'#title' => t('Phone'),
];
$elements += parent::getCompositeElements();
return $elements;
}
}