trait FileTestFormTrait
This trait provides common code common for Forms.
Hierarchy
- trait \Drupal\file_test\Form\FileTestFormTrait
File
-
core/
modules/ file/ tests/ file_test/ src/ Form/ FileTestFormTrait.php, line 14
Namespace
Drupal\file_test\FormView source
trait FileTestFormTrait {
/**
* Adds common form elements to the form.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*
* @return array
* The form structure.
*/
public function baseForm(array $form, FormStateInterface $form_state) : array {
$form['file_test_replace'] = [
'#type' => 'select',
'#title' => t('Replace existing image'),
'#options' => [
FileExists::Rename->name => new TranslatableMarkup('Appends number until name is unique'),
FileExists::Replace->name => new TranslatableMarkup('Replace the existing file'),
FileExists::Error->name => new TranslatableMarkup('Fail with an error'),
],
'#default_value' => FileExists::Rename->name,
];
$form['file_subdir'] = [
'#type' => 'textfield',
'#title' => t('Subdirectory for test file'),
'#default_value' => '',
];
$form['extensions'] = [
'#type' => 'textfield',
'#title' => t('Allowed extensions.'),
'#default_value' => '',
];
$form['allow_all_extensions'] = [
'#title' => t('Allow all extensions?'),
'#type' => 'radios',
'#options' => [
'false' => 'No',
'empty_array' => 'Empty array',
'empty_string' => 'Empty string',
],
'#default_value' => 'false',
];
$form['is_image_file'] = [
'#type' => 'checkbox',
'#title' => t('Is this an image file?'),
'#default_value' => TRUE,
];
$form['submit'] = [
'#type' => 'submit',
'#value' => t('Submit'),
];
return $form;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
FileTestFormTrait::baseForm | public | function | Adds common form elements to the form. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.