You are here

public function BrightcoveTextTrack::getSources in Brightcove Video Connect 3.x

Same name and namespace in other branches
  1. 8.2 src/Entity/BrightcoveTextTrack.php \Drupal\brightcove\Entity\BrightcoveTextTrack::getSources()
  2. 8 src/Entity/BrightcoveTextTrack.php \Drupal\brightcove\Entity\BrightcoveTextTrack::getSources()

Returns a list of text track sources.

Return value

array List of text track sources.

Overrides BrightcoveTextTrackInterface::getSources

File

src/Entity/BrightcoveTextTrack.php, line 191

Class

BrightcoveTextTrack
Defines the Brightcove Text Track entity.

Namespace

Drupal\brightcove\Entity

Code

public function getSources() {
  return $this
    ->get('sources')
    ->getValue();
}