moderation_dashboard-8.x-1.0-beta2/src/Plugin/Condition/HasModeratedContentType.php
src/Plugin/Condition/HasModeratedContentType.php
<?php
namespace Drupal\moderation_dashboard\Plugin\Condition;
use Drupal\content_moderation\ModerationInformationInterface;
use Drupal\Core\Condition\Attribute\Condition;
use Drupal\Core\Condition\ConditionPluginBase;
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a 'Has Moderated Content Type' condition.
*/
#[Condition(
id: "has_moderated_content_type",
label: new TranslatableMarkup("Has Moderated Content Type"),
)]
class HasModeratedContentType extends ConditionPluginBase implements ContainerFactoryPluginInterface {
/**
* HasModeratedContentType constructor.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\content_moderation\ModerationInformationInterface $moderationInformation
* The moderation information service.
* @param \Drupal\Core\Entity\EntityTypeBundleInfoInterface $bundleInfo
* The bundle information service.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager.
*/
public function __construct(
array $configuration,
$plugin_id,
$plugin_definition,
protected ModerationInformationInterface $moderationInformation,
protected EntityTypeBundleInfoInterface $bundleInfo,
protected EntityTypeManagerInterface $entityTypeManager,
) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition): static {
return new static(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('content_moderation.moderation_information'),
$container->get('entity_type.bundle.info'),
$container->get('entity_type.manager')
);
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration(): array {
return [
'enable' => FALSE,
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state): array {
$form = parent::buildConfigurationForm($form, $form_state);
$form['enable'] = [
'#title' => $this->t('Enable'),
'#type' => 'checkbox',
'#default_value' => $this->configuration['enable'],
'#description' => $this->t('Leaving this unchecked will bypass this condition.'),
'#weight' => 0,
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state): void {
parent::submitConfigurationForm($form, $form_state);
$this->configuration['enable'] = $form_state->getValue('enable', FALSE);
}
/**
* {@inheritdoc}
*/
public function evaluate(): bool {
if (!$this->configuration['enable']) {
return TRUE;
}
$entity_type = $this->entityTypeManager->getDefinition('node');
foreach ($this->bundleInfo->getBundleInfo('node') as $bundle => $info) {
if ($this->moderationInformation->shouldModerateEntitiesOfBundle($entity_type, $bundle)) {
return TRUE;
}
}
return FALSE;
}
/**
* {@inheritdoc}
*/
public function summary() {
if ($this->isNegated()) {
return $this->t("Site doesn't have moderated content type(s).");
}
return $this->t('Site has moderated content type(s).');
}
}
