View source
<?php
namespace Drupal\content_moderation\Plugin\Action;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Action\Plugin\Action\UnpublishAction;
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\content_moderation\ModerationInformationInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ModerationOptOutUnpublish extends UnpublishAction {
protected $moderationInfo;
protected $bundleInfo;
protected $messenger;
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, ModerationInformationInterface $moderation_info, EntityTypeBundleInfoInterface $bundle_info, MessengerInterface $messenger) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager);
$this->moderationInfo = $moderation_info;
$this->bundleInfo = $bundle_info;
$this->messenger = $messenger;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('content_moderation.moderation_information'), $container
->get('entity_type.bundle.info'), $container
->get('messenger'));
}
public function access($entity, AccountInterface $account = NULL, $return_as_object = FALSE) {
if ($entity && $this->moderationInfo
->isModeratedEntity($entity)) {
$bundle_info = $this->bundleInfo
->getBundleInfo($entity
->getEntityTypeId());
$bundle_label = $bundle_info[$entity
->bundle()]['label'];
$this->messenger
->addWarning($this
->t("@bundle @label were skipped as they are under moderation and may not be directly unpublished.", [
'@bundle' => $bundle_label,
'@label' => $entity
->getEntityType()
->getPluralLabel(),
]));
$result = AccessResult::forbidden('Cannot directly unpublish moderated entities.');
return $return_as_object ? $result : $result
->isAllowed();
}
return parent::access($entity, $account, $return_as_object);
}
}