public function BrightcoveVideo::getLongDescription in Brightcove Video Connect 8.2
Same name and namespace in other branches
- 8 src/Entity/BrightcoveVideo.php \Drupal\brightcove\Entity\BrightcoveVideo::getLongDescription()
- 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 362
Class
- BrightcoveVideo
- Defines the Brightcove Video entity.
Namespace
Drupal\brightcove\EntityCode
public function getLongDescription() {
return $this
->get('long_description')->value;
}