public function BrightcovePlaylist::getType in Brightcove Video Connect 8.2
Same name and namespace in other branches
- 8 src/Entity/BrightcovePlaylist.php \Drupal\brightcove\Entity\BrightcovePlaylist::getType()
- 3.x src/Entity/BrightcovePlaylist.php \Drupal\brightcove\Entity\BrightcovePlaylist::getType()
Returns the playlist type.
Return value
string The type of the playlist.
Overrides BrightcovePlaylistInterface::getType
1 call to BrightcovePlaylist::getType()
- BrightcovePlaylist::save in src/
Entity/ BrightcovePlaylist.php
File
- src/
Entity/ BrightcovePlaylist.php, line 165
Class
- BrightcovePlaylist
- Defines the Brightcove Playlist.
Namespace
Drupal\brightcove\EntityCode
public function getType() {
return $this
->get('type')->value;
}