You are here

public function BrightcoveVideo::getLongDescription in Brightcove Video Connect 8

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

Returns the long description of the video.

Return value

string The long description of the video.

Overrides BrightcoveVideoInterface::getLongDescription

1 call to BrightcoveVideo::getLongDescription()
BrightcoveVideo::save in src/Entity/BrightcoveVideo.php

File

src/Entity/BrightcoveVideo.php, line 357

Class

BrightcoveVideo
Defines the Brightcove Video entity.

Namespace

Drupal\brightcove\Entity

Code

public function getLongDescription() {
  return $this
    ->get('long_description')->value;
}