You are here

public function BrightcoveTextTrack::getCreatedTime in Brightcove Video Connect 8

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

Gets the Brightcove Text Track creation timestamp.

Return value

int Creation timestamp of the Brightcove Text Track.

Overrides BrightcoveTextTrackInterface::getCreatedTime

File

src/Entity/BrightcoveTextTrack.php, line 221

Class

BrightcoveTextTrack
Defines the Brightcove Text Track entity.

Namespace

Drupal\brightcove\Entity

Code

public function getCreatedTime() {
  return $this
    ->get('created')->value;
}