You are here

public function ParseCdfEntityEvent::setMutable in Acquia Content Hub 8.2

Sets whether the entity is mutable or not.

Parameters

bool $mutable: Set to TRUE if mutable; FALSE otherwise.

File

src/Event/ParseCdfEntityEvent.php, line 94

Class

ParseCdfEntityEvent
The event fired during importing a CDF into a local entity.

Namespace

Drupal\acquia_contenthub\Event

Code

public function setMutable($mutable = TRUE) {
  $this->mutable = $mutable;
}