You are here

public function BrightcovePlayer::isResponsive in Brightcove Video Connect 8.2

Same name and namespace in other branches
  1. 3.x src/Entity/BrightcovePlayer.php \Drupal\brightcove\Entity\BrightcovePlayer::isResponsive()

Returns whether if the player is responsive or not.

Return value

string TRUE if the player is responsive, FALSE if fixed.

Overrides BrightcovePlayerInterface::isResponsive

File

src/Entity/BrightcovePlayer.php, line 106

Class

BrightcovePlayer
Defines the Brightcove Player.

Namespace

Drupal\brightcove\Entity

Code

public function isResponsive() {
  return $this
    ->get('responsive')->value;
}