Updated from some -dev modules to alpha, beta or full releases
[yaffs-website] / web / modules / contrib / media_entity_document / src / Plugin / EntityBrowser / Widget / Upload.php
diff --git a/web/modules/contrib/media_entity_document/src/Plugin/EntityBrowser/Widget/Upload.php b/web/modules/contrib/media_entity_document/src/Plugin/EntityBrowser/Widget/Upload.php
deleted file mode 100644 (file)
index b377b6d..0000000
+++ /dev/null
@@ -1,130 +0,0 @@
-<?php
-
-namespace Drupal\media_entity_document\Plugin\EntityBrowser\Widget;
-
-use Drupal\Core\Form\FormStateInterface;
-use Drupal\entity_browser\Plugin\EntityBrowser\Widget\Upload as FileUpload;
-use Drupal\Core\Url;
-
-/**
- * Uses upload to create media entity documents.
- *
- * @EntityBrowserWidget(
- *   id = "media_entity_document_upload",
- *   label = @Translation("Upload documents"),
- *   description = @Translation("Upload widget that creates media entity documents.")
- * )
- */
-class Upload extends FileUpload {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function defaultConfiguration() {
-    return [
-      'extensions' => 'txt, pdf',
-      'media bundle' => NULL,
-    ] + parent::defaultConfiguration();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getForm(array &$original_form, FormStateInterface $form_state, array $aditional_widget_parameters) {
-    /** @var \Drupal\media_entity\MediaBundleInterface $bundle */
-    if (!$this->configuration['media bundle'] || !($bundle = $this->entityManager->getStorage('media_bundle')->load($this->configuration['media bundle']))) {
-      return ['#markup' => $this->t('The media bundle is not configured correctly.')];
-    }
-
-    if ($bundle->getType()->getPluginId() != 'document') {
-      return ['#markup' => $this->t('The configured bundle is not using document plugin.')];
-    }
-
-    $form = parent::getForm($original_form, $form_state, $aditional_widget_parameters);
-    $form['upload']['upload_validators']['file_validate_extensions'] = [$this->configuration['extensions']];
-
-    return $form;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function submit(array &$element, array &$form, FormStateInterface $form_state) {
-    $documents = [];
-
-    /** @var \Drupal\media_entity\MediaBundleInterface $bundle */
-    $bundle = $this->entityManager
-      ->getStorage('media_bundle')
-      ->load($this->configuration['media bundle']);
-    $files = $this->extractFiles($form_state);
-
-    foreach ($files as $file) {
-      /** @var \Drupal\media_entity\MediaInterface $document */
-      $document = $this->entityManager->getStorage('media')->create([
-        'bundle' => $bundle->id(),
-        $bundle->getTypeConfiguration()['source_field'] => $file,
-      ]);
-
-      $filename = $file->filename->value;
-      if ($filename) {
-        $document->set('name', $filename);
-      }
-
-      $document->save();
-      $documents[] = $document;
-    }
-
-    $this->selectEntities($documents, $form_state);
-    $this->clearFormValues($element, $form_state);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
-    $bundle_options = [];
-    $form = parent::buildConfigurationForm($form, $form_state);
-
-    $form['extensions'] = [
-      '#type' => 'textfield',
-      '#title' => $this->t('Allowed extensions'),
-      '#default_value' => $this->configuration['extensions'],
-      '#required' => TRUE,
-    ];
-
-    $bundles = $this->entityManager
-      ->getStorage('media_bundle')
-      ->loadByProperties(['type' => 'document']);
-
-    foreach ($bundles as $bundle) {
-      $bundle_options[$bundle->id()] = $bundle->label();
-    }
-
-    switch (count($bundle_options)) {
-      case 0:
-        $url = Url::fromRoute('media.bundle_add')->toString();
-        $form['media bundle'] = [
-          '#markup' => $this->t("You don't have media bundle of the Document type. You should <a href='!link'>create one</a>", ['!link' => $url]),
-        ];
-        break;
-
-      case 1:
-        $form['media bundle'] = [
-          '#value' => key($bundle_options),
-          '#type' => 'value',
-        ];
-        break;
-
-      default:
-        $form['media bundle'] = [
-          '#type' => 'select',
-          '#title' => $this->t('Media bundle'),
-          '#default_value' => $this->configuration['media bundle'],
-          '#options' => $bundle_options,
-        ];
-    }
-
-    return $form;
-  }
-
-}