Same name and namespace in other branches
  1. 8.9.x core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::setInfo()
  2. 9 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::setInfo()

Sets the block description.

Parameters

string $info: The block description.

Return value

$this The class instance that this method is called on.

Overrides BlockContentInterface::setInfo

File

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

Class

BlockContent
Defines the content block entity class.

Namespace

Drupal\block_content\Entity

Code

public function setInfo($info) {
  $this
    ->set('info', $info);
  return $this;
}