public function BrightcoveTextTrack::getCreatedTime in Brightcove Video Connect 8
Same name and namespace in other branches
- 8.2 src/Entity/BrightcoveTextTrack.php \Drupal\brightcove\Entity\BrightcoveTextTrack::getCreatedTime()
- 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\EntityCode
public function getCreatedTime() {
return $this
->get('created')->value;
}