You are here

public function BrightcoveVideo::setLongDescription in Brightcove Video Connect 8.2

Same name and namespace in other branches
  1. 8 src/Entity/BrightcoveVideo.php \Drupal\brightcove\Entity\BrightcoveVideo::setLongDescription()
  2. 3.x src/Entity/BrightcoveVideo.php \Drupal\brightcove\Entity\BrightcoveVideo::setLongDescription()

Sets the video's long description.

Parameters

string $long_description: The long description of the video.

Return value

\Drupal\brightcove\BrightcoveVideoInterface The called Brightcove Video.

Overrides BrightcoveVideoInterface::setLongDescription

File

src/Entity/BrightcoveVideo.php, line 369

Class

BrightcoveVideo
Defines the Brightcove Video entity.

Namespace

Drupal\brightcove\Entity

Code

public function setLongDescription($long_description) {
  $this
    ->set('long_description', $long_description);
  return $this;
}