BlockContent::setInfo

public BlockContent::setInfo($info)

Sets the block description.

Parameters

string $info: The block description.

Return value

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

Overrides BlockContentInterface::setInfo

File

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

Class

BlockContent
Defines the custom block entity class.

Namespace

Drupal\block_content\Entity

Code

public function setInfo($info) {
  $this->set('info', $info);
  return $this;
}
doc_Drupal
2016-10-29 08:46:45
Comments
Leave a Comment

Please login to continue.