View source
<?php
namespace Drupal\thunder_article\Form;
use Drupal\content_moderation\ModerationInformationInterface;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\Url;
use Drupal\node\Access\NodeRevisionAccessCheck;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\RequestStack;
use Drupal\Core\Theme\ThemeManagerInterface;
class ThunderNodeForm implements ContainerInjectionInterface {
use StringTranslationTrait;
protected $currentUser;
protected $messenger;
protected $request;
protected $nodeRevisionAccess;
protected $moderationInfo;
protected $entityTypeManager;
protected $themeManager;
public function __construct(AccountInterface $current_user, MessengerInterface $messenger, RequestStack $requestStack, NodeRevisionAccessCheck $node_revision_access, EntityTypeManagerInterface $entity_type_manager, ThemeManagerInterface $theme_manager, ModerationInformationInterface $moderationInfo = NULL) {
$this->currentUser = $current_user;
$this->messenger = $messenger;
$this->request = $requestStack
->getCurrentRequest();
$this->nodeRevisionAccess = $node_revision_access;
$this->entityTypeManager = $entity_type_manager;
$this->themeManager = $theme_manager;
$this->moderationInfo = $moderationInfo;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('current_user'), $container
->get('messenger'), $container
->get('request_stack'), $container
->get('access_check.node.revision'), $container
->get('entity_type.manager'), $container
->get('theme.manager'), $container
->has('content_moderation.moderation_information') ? $container
->get('content_moderation.moderation_information') : NULL);
}
public function formAlter(array &$form, FormStateInterface $form_state) {
$form_object = $form_state
->getFormObject();
$entity = $form_object
->getEntity();
$storage = $this->entityTypeManager
->getStorage($entity
->getEntityTypeId());
$latest_revision_id = $storage
->getLatestTranslationAffectedRevisionId($entity
->id(), $entity
->language()
->getId());
if ($latest_revision_id !== NULL && $this->moderationInfo && $this->moderationInfo
->hasPendingRevision($entity)) {
$this->messenger
->addWarning($this
->t('This %entity_type has unpublished changes from user %user.', [
'%entity_type' => $entity
->get('type')->entity
->label(),
'%user' => $entity
->getRevisionUser()
->label(),
]));
}
$form['actions'] = array_merge($form['actions'], $this
->actions($entity));
return $form;
}
protected function actions($entity) {
$storage = $this->entityTypeManager
->getStorage($entity
->getEntityTypeId());
$latest_revision_id = $storage
->getLatestTranslationAffectedRevisionId($entity
->id(), $entity
->language()
->getId());
if ($latest_revision_id == NULL || !$this->moderationInfo || !$this->moderationInfo
->isModeratedEntity($entity)) {
return [];
}
$element = [];
if (in_array($this->themeManager
->getActiveTheme()
->getName(), [
'seven',
'thunder_admin',
])) {
$state = $this->moderationInfo
->getWorkflowForEntity($entity)
->getTypePlugin()
->getState($entity->moderation_state->value);
$element['status'] = [
'#type' => 'item',
'#markup' => $entity
->isNew() || !$this->moderationInfo
->isDefaultRevisionPublished($entity) ? $this
->t('of unpublished @entity_type', [
'@entity_type' => strtolower($entity->type->entity
->label()),
]) : $this
->t('of published @entity_type', [
'@entity_type' => strtolower($entity->type->entity
->label()),
]),
'#weight' => 200,
'#wrapper_attributes' => [
'class' => [
'status',
],
],
'#access' => !$state
->isDefaultRevisionState(),
];
$element['moderation_state_current'] = [
'#type' => 'item',
'#markup' => $state
->label(),
'#weight' => 210,
'#wrapper_attributes' => [
'class' => [
'status',
$state
->id(),
],
],
];
}
if ($this->moderationInfo
->hasPendingRevision($entity)) {
$route_info = Url::fromRoute('node.revision_revert_default_confirm', [
'node' => $entity
->id(),
'node_revision' => $entity
->getRevisionId(),
]);
if ($this->request->query
->has('destination')) {
$query = $route_info
->getOption('query');
$query['destination'] = $this->request->query
->get('destination');
$route_info
->setOption('query', $query);
}
$element['revert_to_default'] = [
'#type' => 'link',
'#title' => $this
->t('Revert to default revision'),
'#access' => $this->nodeRevisionAccess
->checkAccess($entity, $this->currentUser, 'update'),
'#weight' => 101,
'#attributes' => [
'class' => [
'button',
'button--danger',
],
],
];
$element['revert_to_default']['#url'] = $route_info;
}
return $element;
}
}