You are here

protected function ModerationStateFieldItemList::updateModeratedEntity in Config Entity Revisions 8.2

Updates the default revision flag and the publishing status of the entity.

Parameters

string $moderation_state_id: The ID of the new moderation state.

2 calls to ModerationStateFieldItemList::updateModeratedEntity()
ModerationStateFieldItemList::onChange in src/ModerationStateFieldItemList.php
React to changes to a child property or item.
ModerationStateFieldItemList::setValue in src/ModerationStateFieldItemList.php
Sets the data value.

File

src/ModerationStateFieldItemList.php, line 167

Class

ModerationStateFieldItemList
A computed field that provides a content entity's moderation state.

Namespace

Drupal\content_moderation\Plugin\Field

Code

protected function updateModeratedEntity($moderation_state_id) {
  $entity = $this
    ->getEntity();

  /** @var \Drupal\content_moderation\ModerationInformationInterface $content_moderation_info */
  $content_moderation_info = \Drupal::service('content_moderation.moderation_information');
  $workflow = $content_moderation_info
    ->getWorkflowForEntity($entity);

  // Change the entity's default revision flag and the publishing status only
  // if the new workflow state is a valid one.
  if ($workflow && $workflow
    ->getTypePlugin()
    ->hasState($moderation_state_id)) {

    /** @var \Drupal\content_moderation\ContentModerationState $current_state */
    $current_state = $workflow
      ->getTypePlugin()
      ->getState($moderation_state_id);

    // This entity is default if it is new, the default revision state, or the
    // default revision is not published.
    $update_default_revision = $entity
      ->isNew() || $current_state
      ->isDefaultRevisionState() || !$content_moderation_info
      ->isDefaultRevisionPublished($entity);
    $entity
      ->isDefaultRevision($update_default_revision);

    // Update publishing status if it can be updated and if it needs updating.
    $published_state = $current_state
      ->isPublishedState();
    if ($entity instanceof EntityPublishedInterface && $entity
      ->isPublished() !== $published_state) {
      $published_state ? $entity
        ->setPublished() : $entity
        ->setUnpublished();
    }
  }
}