BulkCreationEntityFormTrait.php in Varbase Media 9.0.x
Same filename and directory in other branches
Namespace
Drupal\entity_browser_generic_embed\FormFile
modules/entity_browser_generic_embed/src/Form/BulkCreationEntityFormTrait.phpView source
<?php
namespace Drupal\entity_browser_generic_embed\Form;
use Drupal\Core\Entity\Exception\UndefinedLinkTemplateException;
use Drupal\Core\Form\FormStateInterface;
/**
* Implements a redirect chain in entity forms for bulk entity creation.
*
* Made by Lightning Core team.
*/
trait BulkCreationEntityFormTrait {
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
parent::save($form, $form_state);
$query = $this
->getRequest()->query;
if ($query
->has('bulk_create')) {
/** @var \Drupal\Core\Entity\EntityInterface $entity */
$entity = $this
->getEntity();
// If there are more entities to create, redirect to the edit form for the
// next one in line.
$queue = $query
->get('bulk_create', []);
if (is_array($queue)) {
$id = array_shift($queue);
$redirect = $this->entityTypeManager
->getStorage($entity
->getEntityTypeId())
->load($id)
->toUrl('edit-form', [
'query' => [
'bulk_create' => $queue ?: TRUE,
],
]);
$form_state
->setRedirectUrl($redirect);
}
else {
try {
$form_state
->setRedirectUrl($entity
->toUrl('collection'));
} catch (UndefinedLinkTemplateException $e) {
// The entity type does not declare a collection, so don't do
// anything.
}
}
}
}
}
Traits
Name | Description |
---|---|
BulkCreationEntityFormTrait | Implements a redirect chain in entity forms for bulk entity creation. |