This repository was archived by the owner on Jan 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathEntityBrowserController.php
61 lines (55 loc) · 2.2 KB
/
EntityBrowserController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* @file
* Contains \Drupal\entity_browser\Controllers\EntityBrowserController.
*/
namespace Drupal\entity_browser\Controllers;
use Drupal\Core\Ajax\AjaxResponse;
use Drupal\Core\Ajax\CloseModalDialogCommand;
use Drupal\Core\Ajax\OpenModalDialogCommand;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Form\FormState;
use Drupal\Core\Entity\EntityInterface;
/**
* Returns responses for entity browser routes.
*/
class EntityBrowserController extends ControllerBase {
/**
* Return an Ajax dialog command for editing a referenced entity.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* An entity being edited.
*
* @return \Drupal\Core\Ajax\AjaxResponse
* An Ajax response with a command for opening or closing the dialog
* containing the edit form.
*/
public function entityBrowserEdit(EntityInterface $entity) {
// Load the right translation for referenced entity if it's exists
// or create new translation if it does not exists.
if ($entity->isTranslatable()) {
$language = $this->languageManager()->getCurrentLanguage()->getId();
$entity = $entity->hasTranslation($language) ? $entity->getTranslation($language) : $entity->addTranslation($language, $entity->toArray());
}
// Build the entity edit form.
$form_object = $this->entityManager()->getFormObject($entity->getEntityTypeId(), 'edit');
$form_object->setEntity($entity);
$form_state = (new FormState())
->setFormObject($form_object)
->disableRedirect();
// Building the form also submits.
$form = $this->formBuilder()->buildForm($form_object, $form_state);
// Return a response, depending on whether it's successfully submitted.
if (!$form_state->isExecuted()) {
// Return the form as a modal dialog.
$form['#attached']['library'][] = 'core/drupal.dialog.ajax';
$title = $this->t('Edit entity @entity', ['@entity' => $entity->label()]);
$response = AjaxResponse::create()->addCommand(new OpenModalDialogCommand($title, $form, ['width' => 800]));
return $response;
}
else {
// Return command for closing the modal.
return AjaxResponse::create()->addCommand(new CloseModalDialogCommand());
}
}
}