You are here

public function BlockContent::setRevisionLog in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::setRevisionLog()

Sets the block revision log message.

Parameters

string $revision_log: The revision log message.

Return value

\Drupal\block_content\BlockContentInterface The class instance that this method is called on.

Overrides BlockContentInterface::setRevisionLog

File

core/modules/block_content/src/Entity/BlockContent.php, line 240
Contains \Drupal\block_content\Entity\BlockContent.

Class

BlockContent
Defines the custom block entity class.

Namespace

Drupal\block_content\Entity

Code

public function setRevisionLog($revision_log) {
  $this
    ->set('revision_log', $revision_log);
  return $this;
}