You are here

public function ScheduledUpdate::setUpdateEntityIds in Scheduled Updates 8

Set the entities to update for an update entity.

This currently just sets the field value but does not save.

Parameters

array $update_entity_ids:

Overrides ScheduledUpdateInterface::setUpdateEntityIds

File

src/Entity/ScheduledUpdate.php, line 77
Contains \Drupal\scheduled_updates\Entity\ScheduledUpdate.

Class

ScheduledUpdate
Defines the Scheduled update entity.

Namespace

Drupal\scheduled_updates\Entity

Code

public function setUpdateEntityIds(array $update_entity_ids) {
  $this->entity_ids = $update_entity_ids;
}