You are here

public function CommentSelection::createNewEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Plugin/EntityReferenceSelection/CommentSelection.php \Drupal\comment\Plugin\EntityReferenceSelection\CommentSelection::createNewEntity()

Creates a new entity object that can be used as a valid reference.

Parameters

string $entity_type_id: The entity type ID.

string $bundle: The bundle name.

string $label: The entity label.

int $uid: The entity owner ID, if the entity type supports it.

Return value

\Drupal\Core\Entity\EntityInterface An unsaved entity object.

Overrides DefaultSelection::createNewEntity

File

core/modules/comment/src/Plugin/EntityReferenceSelection/CommentSelection.php, line 40

Class

CommentSelection
Provides specific access control for the comment entity type.

Namespace

Drupal\comment\Plugin\EntityReferenceSelection

Code

public function createNewEntity($entity_type_id, $bundle, $label, $uid) {
  $comment = parent::createNewEntity($entity_type_id, $bundle, $label, $uid);

  // In order to create a referenceable comment, it needs to published.

  /** @var \Drupal\comment\CommentInterface $comment */
  $comment
    ->setPublished();
  return $comment;
}