Same name and namespace in other branches
  1. 8.9.x core/modules/file/tests/file_test/src/Form/FileTestForm.php \Drupal\file_test\Form\FileTestForm::submitForm()
  2. 9 core/modules/file/tests/file_test/src/Form/FileTestForm.php \Drupal\file_test\Form\FileTestForm::submitForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormInterface::submitForm

File

core/modules/file/tests/file_test/src/Form/FileTestForm.php, line 83

Class

FileTestForm
File test form class.

Namespace

Drupal\file_test\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {

  // Process the upload and perform validation. Note: we're using the
  // form value for the $replace parameter.
  if (!$form_state
    ->isValueEmpty('file_subdir')) {
    $destination = 'temporary://' . $form_state
      ->getValue('file_subdir');
    \Drupal::service('file_system')
      ->prepareDirectory($destination, FileSystemInterface::CREATE_DIRECTORY);
  }
  else {
    $destination = FALSE;
  }

  // Setup validators.
  $validators = [];
  if ($form_state
    ->getValue('is_image_file')) {
    $validators['FileIsImage'] = [];
  }
  $allow = $form_state
    ->getValue('allow_all_extensions');
  if ($allow === 'empty_array') {
    $validators['FileExtension'] = [];
  }
  elseif ($allow === 'empty_string') {
    $validators['FileExtension'] = [
      'extensions' => '',
    ];
  }
  elseif (!$form_state
    ->isValueEmpty('extensions')) {
    $validators['FileExtension'] = [
      'extensions' => $form_state
        ->getValue('extensions'),
    ];
  }

  // The test for \Drupal::service('file_system')->moveUploadedFile()
  // triggering a warning is unavoidable. We're interested in what happens
  // afterwards in file_save_upload().
  if (\Drupal::state()
    ->get('file_test.disable_error_collection')) {
    define('SIMPLETEST_COLLECT_ERRORS', FALSE);
  }
  $file = file_save_upload('file_test_upload', $validators, $destination, 0, $form_state
    ->getValue('file_test_replace'));
  if ($file) {
    $form_state
      ->setValue('file_test_upload', $file);
    \Drupal::messenger()
      ->addStatus(t('File @filepath was uploaded.', [
      '@filepath' => $file
        ->getFileUri(),
    ]));
    \Drupal::messenger()
      ->addStatus(t('File name is @filename.', [
      '@filename' => $file
        ->getFilename(),
    ]));
    \Drupal::messenger()
      ->addStatus(t('File MIME type is @mimetype.', [
      '@mimetype' => $file
        ->getMimeType(),
    ]));
    \Drupal::messenger()
      ->addStatus(t('You WIN!'));
  }
  elseif ($file === FALSE) {
    \Drupal::messenger()
      ->addError(t('Epic upload FAIL!'));
  }
}