public function DropzoneJsEbWidget::validate in DropzoneJS 8.2        
                          
                  
                        Same name and namespace in other branches
- 8 modules/eb_widget/src/Plugin/EntityBrowser/Widget/DropzoneJsEbWidget.php \Drupal\dropzonejs_eb_widget\Plugin\EntityBrowser\Widget\DropzoneJsEbWidget::validate()
1 method overrides DropzoneJsEbWidget::validate()
  - InlineEntityFormMediaWidget::validate in modules/eb_widget/src/Plugin/EntityBrowser/Widget/InlineEntityFormMediaWidget.php
File
 
   - modules/eb_widget/src/Plugin/EntityBrowser/Widget/DropzoneJsEbWidget.php, line 276
Class
  
  - DropzoneJsEbWidget 
- Provides an Entity Browser widget that uploads new files.
Namespace
  Drupal\dropzonejs_eb_widget\Plugin\EntityBrowser\Widget
Code
public function validate(array &$form, FormStateInterface $form_state) {
  $trigger = $form_state
    ->getTriggeringElement();
  
  if ($trigger['#type'] == 'submit' && $trigger['#name'] == 'op' || $trigger['#name'] === 'auto_select_handler') {
    $upload_location = $this
      ->getUploadLocation();
    if (!$this->fileSystem
      ->prepareDirectory($upload_location, FileSystemInterface::CREATE_DIRECTORY | FileSystemInterface::MODIFY_PERMISSIONS)) {
      $form_state
        ->setError($form['widget']['upload'], $this
        ->t('Files could not be uploaded because the destination directory %destination is not configured correctly.', [
        '%destination' => $this
          ->getConfiguration()['settings']['upload_location'],
      ]));
    }
    $files = $this
      ->getFiles($form, $form_state);
    if (in_array(FALSE, $files)) {
      
      $form_state
        ->setError($form['widget']['upload'], $this
        ->t('Some files that you are trying to upload did not pass validation. Requirements are: max file %size, allowed extensions are %extensions', [
        '%size' => $this
          ->getConfiguration()['settings']['max_filesize'],
        '%extensions' => $this
          ->getConfiguration()['settings']['extensions'],
      ]));
    }
    if (empty($files)) {
      $form_state
        ->setError($form['widget']['upload'], $this
        ->t('At least one valid file should be uploaded.'));
    }
    
    if (empty($form_state
      ->getErrors())) {
      parent::validate($form, $form_state);
    }
  }
}