YamlFormName.php in YAML Form 8
File
src/Element/YamlFormName.php
View source
<?php
namespace Drupal\yamlform\Element;
class YamlFormName extends YamlFormCompositeBase {
public static function getCompositeElements() {
$elements = [];
$elements['title'] = [
'#type' => 'yamlform_select_other',
'#title' => t('Title'),
'#options' => 'titles',
];
$elements['first'] = [
'#type' => 'textfield',
'#title' => t('First'),
];
$elements['middle'] = [
'#type' => 'textfield',
'#title' => t('Middle'),
];
$elements['last'] = [
'#type' => 'textfield',
'#title' => t('Last'),
];
$elements['suffix'] = [
'#type' => 'textfield',
'#title' => t('Suffix'),
];
$elements['degree'] = [
'#type' => 'textfield',
'#title' => t('Degree'),
];
return $elements;
}
}